Size: 538
Comment:
|
← Revision 13 as of 2013-09-27 21:49:08 ⇥
Size: 963
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 2: | Line 2: |
The program {{{ffmpeg}}} has been depricated, use {{{avconv}}} instead. |
|
Line 5: | Line 7: |
$ mplayer -vo null -ao null -identify -frames 0 | $ mplayer -vo null -ao null -identify -frames 0 filename.avi }}} {{{ $ ffmpeg -i filename.avi }}} {{{ $ tcprobe -i filename.avi }}} == Find ffmpeg codecs == {{{ $ ffmpeg -codecs }}} Older version of ffmpeg, use -formats. This also works in newer version, but gives confusing results. {{{ $ ffmpeg -formats |
Line 12: | Line 31: |
$ ffmpeg -i filename.ext -ab 56 -ar 22050 -b 500 -s 320x240 filename.ext | $ ffmpeg -i filename.ext -ab <audio bitrate> -b <video bitrate> -s <change to what you want ex.320x240> filename.ext |
Line 15: | Line 34: |
The two {{{.ext}}} extensions should obviously be different. Also, the new size {{{-s}}} could be whatever you want.<BR> <BR> |
The two {{{.ext}}} extensions should obviously be different. Also, the new size {{{-s}}} could be whatever you want.<<BR>> <<BR>> |
Line 20: | Line 39: |
ffmpeg -i InputFile.mpg -ab 128 -b 1200 -vcodec mpeg4 OutputFile.avi | $ ffmpeg -i InputFile.avi -ab <audio bitrate> -b <video bitrate> -vcodec mpeg4 OutputFile.mp4 |
Video Format Conversion
The program ffmpeg has been depricated, use avconv instead.
Find video information
$ mplayer -vo null -ao null -identify -frames 0 filename.avi
$ ffmpeg -i filename.avi
$ tcprobe -i filename.avi
Find ffmpeg codecs
$ ffmpeg -codecs
Older version of ffmpeg, use -formats. This also works in newer version, but gives confusing results.
$ ffmpeg -formats
Convert file types
This is real simple and only needs one line.
$ ffmpeg -i filename.ext -ab <audio bitrate> -b <video bitrate> -s <change to what you want ex.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.avi -ab <audio bitrate> -b <video bitrate> -vcodec mpeg4 OutputFile.mp4