mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 20:11:11 +08:00
Update README.md
This commit is contained in:
parent
ef390042e5
commit
bf87179efe
@ -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'])
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user