gitextract_pycpuraa/ ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── LICENSE ├── MANIFEST ├── README.md ├── doc/ │ ├── .gitignore │ ├── Makefile │ ├── formula.xcf │ ├── html/ │ │ ├── .buildinfo │ │ ├── _sources/ │ │ │ └── index.rst.txt │ │ ├── _static/ │ │ │ ├── basic.css │ │ │ ├── doctools.js │ │ │ ├── documentation_options.js │ │ │ ├── jquery-3.2.1.js │ │ │ ├── jquery.js │ │ │ ├── language_data.js │ │ │ ├── nature.css │ │ │ ├── pygments.css │ │ │ ├── searchtools.js │ │ │ ├── underscore-1.3.1.js │ │ │ └── underscore.js │ │ ├── genindex.html │ │ ├── index.html │ │ ├── objects.inv │ │ ├── py-modindex.html │ │ ├── search.html │ │ └── searchindex.js │ ├── logo.xcf │ ├── src/ │ │ ├── conf.py │ │ └── index.rst │ └── update-gh-pages.sh ├── examples/ │ ├── README.md │ ├── facetime.py │ ├── ffmpeg-numpy.ipynb │ ├── get_video_thumbnail.py │ ├── read_frame_as_jpeg.py │ ├── requirements.txt │ ├── show_progress.py │ ├── split_silence.py │ ├── tensorflow_stream.py │ ├── transcribe.py │ └── video_info.py ├── ffmpeg/ │ ├── __init__.py │ ├── _ffmpeg.py │ ├── _filters.py │ ├── _probe.py │ ├── _run.py │ ├── _utils.py │ ├── _view.py │ ├── dag.py │ ├── nodes.py │ └── tests/ │ ├── __init__.py │ └── test_ffmpeg.py ├── pyproject.toml ├── pytest.ini ├── requirements.txt ├── setup.cfg ├── setup.py └── tox.ini