mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
11 lines
339 B
Markdown
11 lines
339 B
Markdown
# 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'])
|
|
```
|