- Install Mobile Media Converter here : http://www.miksoft.net/mobileMediaConverterDown.htm
- Choose preset and drag all 3gp movie to MMC window
- Go to folder and open terminal
- In this case, I convert all 3gp movie to avi, then I create script to do this:
transcode -J stabilize --mplayer_probe -i $1 -y xvidtranscode -J transform --mplayer_probe -i $1 -y xvid -o tmp.avi# I must replace sound with the original, since sound from output was bad, if you got good sound then you don't have do the rest
ffmpeg -i $1 -acodec copy -vn tmp.mp3ffmpeg -i tmp.avi -vcodec copy -an tmp-nosound.aviffmpeg -i tmp-nosound.avi -i tmp.mp3 -vcodec copy -acodec copy out-$1rm tmp.avirm tmp.mp3rm tmp-nosound.aviI save it into file "stabillize", then I call the script by:
ls V*.avi |xargs ./stabillize
reff:
http://isenmann.wordpress.com/2011/03/22/deshaking-videos-with-linuxhttp://public.hronopik.de/vid.stab/features.php
No comments:
Post a Comment