├── .gitignore ├── LICENSE ├── README.md ├── _bitrate_analyzer.py ├── _file_parser.py ├── _plotter.py ├── _utils.py ├── bitrate_graph.png ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InB4DevOps/bitrate-viewer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InB4DevOps/bitrate-viewer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InB4DevOps/bitrate-viewer/HEAD/README.md -------------------------------------------------------------------------------- /_bitrate_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InB4DevOps/bitrate-viewer/HEAD/_bitrate_analyzer.py -------------------------------------------------------------------------------- /_file_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InB4DevOps/bitrate-viewer/HEAD/_file_parser.py -------------------------------------------------------------------------------- /_plotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InB4DevOps/bitrate-viewer/HEAD/_plotter.py -------------------------------------------------------------------------------- /_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InB4DevOps/bitrate-viewer/HEAD/_utils.py -------------------------------------------------------------------------------- /bitrate_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InB4DevOps/bitrate-viewer/HEAD/bitrate_graph.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InB4DevOps/bitrate-viewer/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | matplotlib 3 | tqdm 4 | ffmpeg-python==0.2.0 5 | --------------------------------------------------------------------------------