Update README.md

This commit is contained in:
Karl Kroening 2018-06-02 02:21:59 -07:00 committed by GitHub
parent ef390042e5
commit bf87179efe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1 +1,10 @@
# Examples
## [Get video info](https://github.com/kkroening/ffmpeg-python/blob/master/examples/video_info.py)
```python
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'])
```