Einfache FFmpeg-Bearbeitung
Spickzettel und Befehlsgenerator für grundlegende FFmpeg-Bearbeitung: Formate konvertieren (MP4/MKV/AVI), Videogröße ändern und nach Zeit schneiden.
Remux MP4 to MKV
Change container without re-encoding (fastest).
ffmpeg -i input.mp4 -c copy output.mkv
Note:Uses
-c copy to copy video and audio streams directly. Fast because it avoids re-encoding.Remux MP4 to MOV
Change container to QuickTime format.
ffmpeg -i input.mp4 -c copy output.mov
Note:Similar to MKV, MOV is just a container. Quality remains identical to the source.
Encode to AVI
Re-encode video to AVI container.
ffmpeg -i input.mp4 output.avi
Note:Without
-c copy, FFmpeg will re-encode the streams to defaults suitable for AVI.VIDEO API
Entdecken Sie, warum Hunt der bevorzugte API-Anbieter für Entwickler ist.