Differences between revisions 1 and 4 (spanning 3 versions)
Revision 1 as of 2010-08-15 03:47:58
Size: 283
Editor: CarlNobile
Comment:
Revision 4 as of 2012-08-19 02:58:40
Size: 542
Editor: CarlNobile
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
== Find video information ==
{{{
$ mplayer -vo null -ao null -identify -frames 0
}}}

== Convert file types ==
Line 9: Line 15:
The two {{{.ext}}} extensions should obviously be different. Also, the new size {{{-s}}} could be whatever you want. The two {{{.ext}}} extensions should obviously be different. Also, the new size {{{-s}}} could be whatever you want.<<BR>>
<<BR>>
To keep the size the same but just convert.

{{{
ffmpeg -i InputFile.mpg -ab 128 -b 1200 -vcodec mpeg4 OutputFile.mp4
}}}

Video Format Conversion

Find video information

$ mplayer -vo null -ao null -identify -frames 0 

Convert file types

This is real simple and only needs one line.

$ ffmpeg -i filename.ext -ab 56 -ar 22050 -b 500 -s 320x240 filename.ext

The two .ext extensions should obviously be different. Also, the new size -s could be whatever you want.

To keep the size the same but just convert.

ffmpeg -i InputFile.mpg -ab 128 -b 1200 -vcodec mpeg4 OutputFile.mp4

VideoFormatConversion (last edited 2013-09-27 21:49:08 by CarlNobile)