FFmpeg: Difference between revisions

Jump to navigation Jump to search
33 bytes added ,  4 June 2022
More verbose
imported>Sjwhitak
(Created page with "[https://ffmpeg.org/ FFmpeg] is a really complicated, all-in-one software that deals with videos and encoders. The software is typically not packaged with anything because some encoders are non-free and package managers don't typically use a version with the non-free encoders. So, you'll need to download it yourself https://ffmpeg.org/download.html unless you really care about the notion that there's non-free software on your computer. FFmpeg is mainly the backend to...")
 
imported>Sjwhitak
(More verbose)
 
== Encoders ==
The following is a verbose manner of defining encoders:
{{UserCmd|ffmpeg -vcodec copy -acodec copy -scodec copy -map 0:v:0 -map 0:a:0 -map 0:s:0 out.mp4}}
The video codec (<code>-vcodec</code>) and the subtitle codec (<code>-scodec</code>) are used to transform the video stream (<code>0:v:0</code>) and the subtitle stream (<code>0:s:0</code>) into the output file (<code>out.mp4</code>). The term <code>copy</code> for each codec simply uses whatever codec is used in the original file, <code>movie.mk4</code>.
 
Anonymous user

Navigation menu