2018-06-02 02:21:59 -07:00
..
2018-06-02 02:17:56 -07:00
2018-06-02 02:21:59 -07:00
2018-06-02 02:17:56 -07:00
2018-06-02 02:17:56 -07:00
2018-06-02 02:17:56 -07:00
2018-06-02 02:17:56 -07:00

Examples

Get video info

probe = ffmpeg.probe(args.in_filename)
video_stream = next((stream for stream in probe['streams'] if stream['codec_type'] == 'video'), None)
width = int(video_stream['width'])
height = int(video_stream['height'])