Posts Tagged With: format

Add Audio to a Video File Using ffmpeg

Tagged with: , , , , , ,

FFMPEG command to mix an audio file with a video file to create a final video.


ffmpeg -vcodec flv -qscale 9.5 -r 25 -ar 22050 -ab 32k -s 320x240 -i 1.mp3 -i Meta.ogv final.flv
2 Comments »

Format a partition to Ext3

Tagged with: , , , , ,

Format a partition to Ext3


mkfs.ext3 -b 4096 /dev/sda10
No Comments »

Date Command

Tagged with: , , , , ,

Create the MySQL format date(YYYY-MM-DD) using the date command


date +%Y-%m-%d
No Comments »

Command for Converting Video Format Using Mencoder

Tagged with: , , , ,

Convent video using mencoder in linux…


mencoder input.mpg -o output.avi -oac mp3lame -lameopts abr:br=56 -srate 22050  -ovc lavc

http://www.mplayerhq.hu/DOCS/HTML/en/mencoder.html
http://gentoo-wiki.com/HOWTO_Mencoder_Introduction_Guide

No Comments »