|
|
just to clear things out:
this is for 3.1!!!!!!!!!!!!!!!!!!!
on 3.0 or 3.0.x use the VideoToggle because there hve to be modifications to the camera.
if you want to add another app from which you want to move the videos you can edit the video_on and _off files.
Here is the part of code you need:
Just delete one app if you want or copy the code between #Copy and fi; and edit the folder and name.
then you save it and do the same for video_off because these files are exactly the same. (I know bad coding)
#COPY FROM EDIT_NAME TO 100APPLE
target="/var/mobile/Media/EDIT_THIS"
cd $target
current=$(pwd)
if [[ "$current" = "$target" ]]; then
find -name "*.mov" -o -name "*.mp4" | while read I; do mv "$I" /var/mobile/Media/DCIM/100APPLE/; done
fi;
movies are renamed automatcally.
furthermore you can copy movies into email and mms by holding down your finger on the movie and select "copy"
|
Last edited by christoph1984; 09-18-2009 at 01:56 AM..
|