├── .gitignore ├── LICENSE.txt ├── README.md ├── ffprobe ├── __init__.py ├── exceptions.py └── ffprobe.py ├── setup.py └── tests ├── __init__.py ├── data ├── SampleVideo_1280x720_1mb.mp4 └── SampleVideo_720x480_5mb.mp4 └── ffprobe_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbstack/ffprobe-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbstack/ffprobe-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbstack/ffprobe-python/HEAD/README.md -------------------------------------------------------------------------------- /ffprobe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbstack/ffprobe-python/HEAD/ffprobe/__init__.py -------------------------------------------------------------------------------- /ffprobe/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbstack/ffprobe-python/HEAD/ffprobe/exceptions.py -------------------------------------------------------------------------------- /ffprobe/ffprobe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbstack/ffprobe-python/HEAD/ffprobe/ffprobe.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbstack/ffprobe-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/SampleVideo_1280x720_1mb.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbstack/ffprobe-python/HEAD/tests/data/SampleVideo_1280x720_1mb.mp4 -------------------------------------------------------------------------------- /tests/data/SampleVideo_720x480_5mb.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbstack/ffprobe-python/HEAD/tests/data/SampleVideo_720x480_5mb.mp4 -------------------------------------------------------------------------------- /tests/ffprobe_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbstack/ffprobe-python/HEAD/tests/ffprobe_test.py --------------------------------------------------------------------------------