Prosta edycja FFmpeg
Ściągawka i generator poleceń do podstawowej edycji FFmpeg: konwertuj formaty (MP4/MKV/AVI), zmieniaj rozmiar wideo i przycinaj według czasu.
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
Odkryj, dlaczego Hunt jest preferowanym dostawcą API dla programistów.