Difference between revisions of "FFmpeg"

From HeadBackup
Jump to navigationJump to search
 
Line 4: Line 4:
 
<pre>
 
<pre>
 
ffmpeg -i input.mp4 -acodec copy -r 30 -vcodec copy -f flv output.flv
 
ffmpeg -i input.mp4 -acodec copy -r 30 -vcodec copy -f flv output.flv
 +
</pre>
 +
=== encode to .mp4 with h264 ===
 +
This seems to work the resulting file plays in Quicktime, but doesn't play in jwplayer so probably still needs more tweaking.
 +
<pre>
 +
ffmpeg.exe -i input.avi -ab 256kb -vcodec libx264 -b 1000kb -deinterlace output.mp4
 
</pre>
 
</pre>

Revision as of 08:07, 13 April 2010

Command line notes

stream copy from mp4 to flv

Copy from mp4 container to flv container at 30 frames per second.

ffmpeg -i input.mp4 -acodec copy -r 30 -vcodec copy -f flv output.flv

encode to .mp4 with h264

This seems to work the resulting file plays in Quicktime, but doesn't play in jwplayer so probably still needs more tweaking.

ffmpeg.exe -i input.avi -ab 256kb -vcodec libx264 -b 1000kb -deinterlace output.mp4