Tag: video

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

Get Audio from a video file

Get Audio from a video file mplayer -dumpaudio -quiet VIDEO_FILE

Find files of a specific mime-type

Use this command to find files of a given mime-type. In this example, we are looking for video files… find…

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…

Script to Convert FLV to AVI

This will convert a flv file to a avi file. I got this off linux.com. It uses mencoder – so…

Play MPlayer in full Screen

Play the video in full screen using mplayer. mplayer -zoom -x 1024 -y 768 -fs -framedrop FILE

Rip DVD using Mencoder

Rip a DVD to an AVI file using mencoder mencoder dvd://1 -dvd-device /mnt/Image/ -ovc xvid -xvidencopts pass=1 -alang en -oac…

Converting a Video File

Converting a Video file mencoder -ovc xvid -oac mp3lame -xvidencopts bitrate=878 -o destination.avi source.avi Original Article