tldr/pages.de/common/ffmpeg.md

33 lines
1.4 KiB
Markdown
Raw Normal View History

2020-07-02 15:46:54 +01:00
# ffmpeg
> Programm zum konvertieren von Videos.
> Weitere Informationen: <https://ffmpeg.org>.
2020-07-02 15:46:54 +01:00
2021-03-25 16:42:04 +00:00
- Extrahiere den Ton eines Videos und speichere ihn als MP3:
2020-07-02 15:46:54 +01:00
`ffmpeg -i {{pfad/zu/video.mp4}} -vn {{pfad/zu/audio}}.mp3`
2020-07-02 15:46:54 +01:00
- Kombiniere nummerierte Bilder (`frame_1.jpg`, `frame_2.jpg`, etc) in ein Video oder Gif:
2020-07-02 15:46:54 +01:00
`ffmpeg -i {{pfad/zu/frame_%d.jpg}} -f image2 {{video.mpg|video.gif}}`
2020-07-02 15:46:54 +01:00
- Extrahiere einen einzelnen Frame von einem Video bei mm:ss and speichere als 128x128 Bild:
`ffmpeg -ss {{mm:ss}} -i {{pfad/zu/video.mp4}} -frames 1 -s {{128x128}} -f image2 {{pfad/zu/bild.png}}`
2020-07-02 15:46:54 +01:00
2021-03-25 16:42:04 +00:00
- Trimme ein Video von mm:ss bis mm2:ss2 (Ohne -to bis zum Ende des Videos):
2020-07-02 15:46:54 +01:00
`ffmpeg -ss {{mm:ss}} -to {{mm2:ss2}} -i {{pfad/zu/video/video.mp4}} -codec copy {{pfad/zu/output.mp4}}`
2020-07-02 15:46:54 +01:00
2021-03-25 16:42:04 +00:00
- Konvertiere ein AVI Video zu MP4. AAC Audio @ 128kbit, h264 Video @ CRF 23:
2020-07-02 15:46:54 +01:00
`ffmpeg -i {{pfad/zu/input_video}}.avi -codec:a aac -b:a 128k -codec:v libx264 -crf 23 {{pfad/zu/output_video}}.mp4`
2020-07-02 15:46:54 +01:00
2021-03-25 16:42:04 +00:00
- Remuxe ein MKV Video zu MP4 ohne Audio oder Video streams neu zu codieren:
2020-07-02 15:46:54 +01:00
2021-03-25 16:42:04 +00:00
`ffmpeg -i {{pfad/zu/input_video}}.mkv -codec copy {{pfad/zu/output_video}}.mp4`
2020-07-02 15:46:54 +01:00
- Konvertiere ein MP4 video zu VP9. Für beste Qualität, nutze einen CRF Wert von 15 bis 35 und -b:v MUSS 0 sein:
2020-07-02 15:46:54 +01:00
`ffmpeg -i {{pfad/zu/input_video}}.mp4 -codec:v libvpx-vp9 -crf {{30}} -b:v 0 -codec:a libopus -vbr on -threads {{thread_anzahl}} {{pfad/zu/output_video}}.webm`