├── .gitignore ├── LICENSE ├── README.md ├── doc └── imgs │ ├── playback.png │ └── pyvhs.png ├── notebooks ├── edit_single_video.ipynb └── extract_blank_screen_imgs.ipynb ├── poetry.lock ├── pyproject.toml ├── pyvhs ├── __init__.py ├── template_imgs │ ├── template001.png │ └── template002.png ├── utils │ ├── __init__.py │ ├── edits.py │ └── files.py └── vhs.py └── tests └── test_templates.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mddunlap924/PyVHS/main/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mddunlap924/PyVHS/main/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mddunlap924/PyVHS/main/README.md -------------------------------------------------------------------------------- /doc/imgs/playback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mddunlap924/PyVHS/main/doc/imgs/playback.png -------------------------------------------------------------------------------- /doc/imgs/pyvhs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mddunlap924/PyVHS/main/doc/imgs/pyvhs.png -------------------------------------------------------------------------------- /notebooks/edit_single_video.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mddunlap924/PyVHS/main/notebooks/edit_single_video.ipynb -------------------------------------------------------------------------------- /notebooks/extract_blank_screen_imgs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mddunlap924/PyVHS/main/notebooks/extract_blank_screen_imgs.ipynb -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mddunlap924/PyVHS/main/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mddunlap924/PyVHS/main/pyproject.toml -------------------------------------------------------------------------------- /pyvhs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyvhs/template_imgs/template001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mddunlap924/PyVHS/main/pyvhs/template_imgs/template001.png -------------------------------------------------------------------------------- /pyvhs/template_imgs/template002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mddunlap924/PyVHS/main/pyvhs/template_imgs/template002.png -------------------------------------------------------------------------------- /pyvhs/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyvhs/utils/edits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mddunlap924/PyVHS/main/pyvhs/utils/edits.py -------------------------------------------------------------------------------- /pyvhs/utils/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mddunlap924/PyVHS/main/pyvhs/utils/files.py -------------------------------------------------------------------------------- /pyvhs/vhs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mddunlap924/PyVHS/main/pyvhs/vhs.py -------------------------------------------------------------------------------- /tests/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mddunlap924/PyVHS/main/tests/test_templates.py --------------------------------------------------------------------------------