├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── assets ├── manzana__darkmode.png ├── manzana__lightmode.png └── usage_demo.gif ├── core ├── __init__.py ├── api │ ├── __init__.py │ ├── aptv.py │ └── hls.py ├── control.py ├── parse.py ├── process.py ├── tagger.py └── user │ ├── __init__.py │ ├── select.py │ └── tracks.py ├── manzana.py ├── requirements.txt └── utils ├── __init__.py ├── logger.py └── sanitize.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: dropcodes 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/README.md -------------------------------------------------------------------------------- /assets/manzana__darkmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/assets/manzana__darkmode.png -------------------------------------------------------------------------------- /assets/manzana__lightmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/assets/manzana__lightmode.png -------------------------------------------------------------------------------- /assets/usage_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/assets/usage_demo.gif -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | from core.control import run -------------------------------------------------------------------------------- /core/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/core/api/__init__.py -------------------------------------------------------------------------------- /core/api/aptv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/core/api/aptv.py -------------------------------------------------------------------------------- /core/api/hls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/core/api/hls.py -------------------------------------------------------------------------------- /core/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/core/control.py -------------------------------------------------------------------------------- /core/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/core/parse.py -------------------------------------------------------------------------------- /core/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/core/process.py -------------------------------------------------------------------------------- /core/tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/core/tagger.py -------------------------------------------------------------------------------- /core/user/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/core/user/__init__.py -------------------------------------------------------------------------------- /core/user/select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/core/user/select.py -------------------------------------------------------------------------------- /core/user/tracks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/core/user/tracks.py -------------------------------------------------------------------------------- /manzana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/manzana.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/sanitize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropcreations/Manzana-Apple-TV-Plus-Trailers/HEAD/utils/sanitize.py --------------------------------------------------------------------------------