ffprobe:duration
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
ffprobe:duration [2025/05/27 08:11] – created peter | ffprobe:duration [2025/05/27 08:45] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== ffprobe - Duration ====== | ====== ffprobe - Duration ====== | ||
+ | |||
+ | ===== Container Format Duration ===== | ||
<code bash> | <code bash> | ||
- | ffprobe -i < | + | ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 input.mp4 |
</ | </ | ||
Line 8: | Line 10: | ||
< | < | ||
- | 3392.12 | + | 30.024000 |
</ | </ | ||
<WRAP info> | <WRAP info> | ||
**NOTE: | **NOTE: | ||
+ | |||
+ | Adding the **-sexagesimal** option will use the HOURS: | ||
+ | |||
+ | < | ||
+ | 0: | ||
+ | </ | ||
+ | |||
</ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Stream duration ===== | ||
+ | |||
+ | Duration of the first video stream: | ||
+ | |||
+ | <code bash> | ||
+ | ffprobe -v error -select_streams v:0 -show_entries stream=duration -of default=noprint_wrappers=1: | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | < | ||
+ | 30.000000 | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * Refer to Format (container) duration instead. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Get duration by decoding ===== | ||
+ | |||
+ | Get the duration by fully decoding the file. | ||
+ | |||
+ | * The null muxer is used so no output file is created. | ||
+ | |||
+ | <code bash> | ||
+ | ffmpeg -i input.mkv -f null - | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | < | ||
+ | ... | ||
+ | frame=206723 fps=1390 q=-0.0 Lsize=N/A time=00: | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * **time=** - in the next-to-last line of the console output has the duration. | ||
+ | * In this example the input has a duration of 00: | ||
+ | |||
+ | * The command may take some time depending on the input file duration and decoding complexity. | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
ffprobe/duration.1748333509.txt.gz · Last modified: 2025/05/27 08:11 by peter