User Tools

Site Tools


ffmpeg:conversions:convert_flv_to_mpg

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

ffmpeg:conversions:convert_flv_to_mpg [2023/06/13 10:46] – created peterffmpeg:conversions:convert_flv_to_mpg [2023/06/13 10:55] (current) peter
Line 1: Line 1:
 ====== ffmpeg - Conversions - Convert FLV to MPG ====== ====== ffmpeg - Conversions - Convert FLV to MPG ======
 +
 +To convert an FLV file to an MPEG file.
 +
 +----
 +
 +===== Software Encoding =====
 +
 +<code bash>
 +ffmpeg -i input.flv output.mpg
 +</code>
 +
 +<WRAP info>
 +where:
 +
 +  * **-i** stands for input.
 +  * **output.mpg** is the output file in mpg.
 +</WRAP>
 +
 +
 +----
 +
 +For more advanced setting, you can use the command below
 +
 +<code bash>
 +ffmpeg -i input.flv -ab 56 -ar 22050 -b 500 -s 320x240 output.mpg
 +</code>
 +
 +<WRAP info>
 +where:
 +
 +  * **-ab** is audio bitrate with default of 64kbps.
 +  * **-ar** is audio sample-rate with default of 44100Hz.
 +  * **-b** is video bitrate with delault of 2000kbps.
 +  * **-s** is size with default of 160x128px.
 +
 +</WRAP>
  
ffmpeg/conversions/convert_flv_to_mpg.1686653192.txt.gz · Last modified: 2023/06/13 10:46 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki