Convert Video to play on Nokia Phone with Ffmpeg

You can get the latest full (Chinese) version of the following document from OSWikiHK.
Install ffmpeg
Add following line in /etc/apt/sources.list :
deb ftp://ftp.hk.debian.org/unofficial/debian-multimedia/ sid main
Update the data of repositories and install ffmpeg:
apt-get update apt-get install ffmpeg
Convert to 3GP format
ffmpeg -i U2d–Jes5AU.flv -y -b 400 -s cif -r 25 -acodec amr_wb -ab 50 -ac 1 -ar 16000 U2d–Jes5AU.3gp
- i: Video file to be converted
- s: The resolution of the output video, the syntax is “widthxheight“. cif means 320×240
- b: The video bitrate of the output video. (in bit/sec)
- r: The frame per second (fps) of the output video.
- acodec: The audio codec of the output video
- ab: The audio bitrate of the output video. (in bit/sec)
- ac: The number of audio channel of the output video. 1 means mono
- ar: The frequency of the output video. (in Hz)


![[del.icio.us]](http://blog.xychen.org/wp-content/themes/fluidityrs/images/shareit/delicious.png)
![[Technorati]](http://blog.xychen.org/wp-content/themes/fluidityrs/images/shareit/technorati.png)
![[Google Bookmark]](http://blog.xychen.org/wp-content/themes/fluidityrs/images/shareit/google.png)
![[Yahoo MyWeb]](http://blog.xychen.org/wp-content/themes/fluidityrs/images/shareit/yahoo.png)
![[Furl]](http://blog.xychen.org/wp-content/themes/fluidityrs/images/shareit/furl.gif)
Comments(3)








