Tag: ffmpeg

Use ffmpeg to create a screencast

You can use this command to create a screencast using ffmpeg. ffmpeg -f x11grab -s 800×600 -i :0.0 /tmp/screencast.mpg

Convent Video to 3gp(mobile) format

This command uses ffmpeg to convert a regular video into 3gp format thats used in mobile phones ffmpeg -i input_video.mp4…

Add Audio to a Video File Using ffmpeg

FFMPEG command to mix an audio file with a video file to create a final video. ffmpeg -vcodec flv -qscale…

Linux Command to Convert a Video to PSP’s MP4 Format

Linux command to convert a video file to PSP format using ffmpeg. After converting, copy the OutputFile to the video…

Convert FLV file to MPEG

Convert FLV file to MPEG using ffmpeg ffmpeg -i myFile.flv -ab 56 -ar 22050 -b 500 -s 320×240 myFile.mpg