1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 16:15:33 +02:00

Added bit rate example for ffprobe (#1559)

This commit is contained in:
Matthew Davidson 2017-10-21 16:56:27 -04:00 committed by Starbeamrainbowlabs
parent 80dae3da6e
commit 9896662914

View file

@ -17,3 +17,7 @@
- Display the width or height of a video:
`ffprobe -v error -select_streams v:0 -show_entries stream={{width|height}} -of default=noprint_wrappers=1:nokey=1 {{input.mp4}}`
- Display the average bit rate of a video:
`ffprobe -v error -select_streams v:0 -show_entries stream=bit_rate -of default=noprint_wrappers=1:nokey=1 {{input.mp4}}`