You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-n, --dry-run Do not run command, just show what would be done
73
73
(default: False)
74
74
-v, --verbose Show verbose output (default: False)
75
-
-s {video,audio}, --stream-type {video,audio}
75
+
-q, --quiet Do not show progress bar (default: False)
76
+
-s, --stream-type {video,audio}
76
77
Stream type to analyze (default: video)
77
-
-a {time,gop}, --aggregation {time,gop}
78
+
-a, --aggregation {time,gop}
78
79
Window for aggregating statistics, either time-based
79
80
(per-second) or per GOP (default: time)
80
-
-c CHUNK_SIZE, --chunk-size CHUNK_SIZE
81
+
-c, --chunk-size CHUNK_SIZE
81
82
Custom aggregation window size in seconds (default:
82
83
1.0)
83
-
-rs READ_START, --read-start READ_START
84
+
-rs, --read-start READ_START
84
85
Time to wait before sampling video (in HH:MM:SS.msec
85
86
or seconds) (default: None)
86
-
-rd READ_DURATION, --read-duration READ_DURATION
87
+
-rd, --read-duration READ_DURATION
87
88
Duration for sampling stream (in HH:MM:SS.msec or
88
89
seconds). Note that seeking is not accurate, see
89
90
ffprobe documentation on '-read_intervals'. (default:
90
91
None)
91
-
-of {json,csv}, --output-format {json,csv}
92
+
-of, --output-format {json,csv}
92
93
output in which format (default: json)
93
94
-p, --plot Plot the bitrate over time (to STDERR) (default:
94
95
False)
95
-
-pw PLOT_WIDTH, --plot-width PLOT_WIDTH
96
+
-pw, --plot-width PLOT_WIDTH
96
97
Plot width (default: 70)
97
-
-ph PLOT_HEIGHT, --plot-height PLOT_HEIGHT
98
+
-ph, --plot-height PLOT_HEIGHT
98
99
Plot height (default: 18)
99
100
```
100
101
102
+
By default, a progress bar is shown during analysis. Use `-q`/`--quiet` to disable it, or `-v`/`--verbose` to show debug output instead.
103
+
101
104
## Output
102
105
103
106
The output can be JSON, which includes individual fields for each chunk, or CSV, which repeats each line for each chunk. The CSV adheres to the “tidy” data concept, so it's a little redundant.
0 commit comments