You need ffmpeg to convert videos.
1. Videos to Mp3:
ffmpeg -i video.flv -vn -acodec copy file.mp3
Note that some videos feature the newer aac codec, so the above won't work. Use
ffmpeg -i video.flv -acodec mp3lame -ab 128k file.mp3
2. Video to iPhone:
ffmpeg -i vcodec copy -acodec copy file.mp4
3. Video to Mobile:
ffmpeg -i video.flv -vcodec h263 -acodec copy -b 200k -s qcif file.3gp
There are what I use, and might not work for an older phone.
No comments:
Post a Comment