Last active
July 4, 2024 19:49
-
-
Save rbrooks/2829908 to your computer and use it in GitHub Desktop.
FFmpeg & FFprobe Cheatsheet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Don't use FFmpeg for metadata extraction. Use FFprobe. | |
# Its output is geared toward parsabilty. | |
# Container and stream information in JSON format: | |
ffprobe -show_format -print_format json 'Serenity - HD Trailer.mp4' | |
ffprobe -show_streams -print_format json 'Serenity - HD Trailer.mp4' | |
# Human-readable values: | |
ffprobe -show_format -pretty -print_format json 'Serenity - HD Trailer.mp4' | |
# Trim video to first 30 seconds, without transcoding. | |
ffmpeg -i source.mkv -c:v copy -c:a copy -ss 00:00:00 -t 00:02:00 dest.mkv | |
# Create an MP4 with an "MPEG-4 Part 2" video stream with profile, | |
# "Advanced Simple@L5", and BVOP active. BVOP was causing transcode | |
# failures in Carbon Coder 3.22: "Failed To Transcode: QT Reader : | |
# This file is a invalid movie file." | |
ffmpeg -i source.mp4 -c:v mpeg4 -profile:v 15 -level 5 -bf 2 dest.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment