H.263 is a next of kin to MPEG4. The real difference for files in this format which is usable for cell phones in audio format. 3GPP use AMR mono, MPEG4 use MP3 audio in stereo. In addition 3GPP has a limit in bit rate. So, if your phone allow to play MPEG4 video - don't use 3GPP. The way to convert video files in MPEG4 format is easy. Do like this:
# ffmpeg -i myvideo.mpg -ss 00:00:00 -t 00:00:30 \
-vcodec mpeg4 -acodec aac -s qcif -r 15 myvideo.mp4
-vcodec mpeg4 -acodec aac -s qcif -r 15 myvideo.mp4
- -i input file
- -ss seek time
- -t finish time
- -vcodec video codec
- -acodec audio codec
- -s size of picture
- -r frame rate (don't use too high)
No comments:
Post a Comment