FFmpeg: Difference between revisions
From Game Making Tools Wiki
m (updating infobox) |
(FFmpeg Explorer) |
||
(One intermediate revision by the same user not shown) | |||
Line 6: | Line 6: | ||
| exports_to = | | exports_to = | ||
}} | }} | ||
'''FFmpeg''' is an [[:Category:Open-Source|open-source]], [[:Category:CLI|command-line]] tool for working with video. Common usage case is converting between video formats with a command like: | '''FFmpeg''' is an [[:Category:Open-Source|open-source]], [[:Category:CLI|command-line]] tool for working with video and audio. Common usage case is converting between video formats with a command like: | ||
<pre>ffmpeg -i input.mp4 output.avi</pre> | <pre>ffmpeg -i input.mp4 output.avi</pre> | ||
But it | But it is also useful for video editing; for example cutting and glueing together different videos. | ||
There are also GUI front-ends | There are also GUI front-ends available, if you prefer! | ||
* [https://ffmpeg.lav.io/ FFmpeg Explorer] - Browser-based GUI with a node-based interface for changing parameters. | |||
==Example Commands== | ==Example Commands== | ||
See: [[Guide:FFmpeg]] | |||
==See Also== | ==See Also== | ||
* [https://ffmpeg.org/ ffmpeg.org] | * [https://ffmpeg.org/ ffmpeg.org] | ||
* [[Wikipedia:FFmpeg]] | * [[Wikipedia:FFmpeg]] | ||
* [[Guide:FFmpeg]] | |||
[[Category:Open-Source]][[Category:CLI]] | [[Category:Open-Source]][[Category:CLI]] | ||
[[Category:Video Editor]][[Category:Graphics]] | [[Category:Video Editor]][[Category:Graphics]][[Category:Audio]] | ||
[[Category:Linux]][[Category:Mac OS]][[Category:Windows]] | [[Category:Linux]][[Category:Mac OS]][[Category:Windows]] |
Latest revision as of 10:50, 27 August 2023
Release date: | |
---|---|
Made by: | Open-source |
Runs on: | Linux Mac OS Windows |
Exports to: |
FFmpeg is an open-source, command-line tool for working with video and audio. Common usage case is converting between video formats with a command like:
ffmpeg -i input.mp4 output.avi
But it is also useful for video editing; for example cutting and glueing together different videos.
There are also GUI front-ends available, if you prefer!
- FFmpeg Explorer - Browser-based GUI with a node-based interface for changing parameters.
Example Commands
See: Guide:FFmpeg