├── .DS_Store ├── .gitattributes ├── .gitignore ├── Dockerfile ├── Overlays ├── .DS_Store ├── .gitattributes ├── fadeout.mov └── prerolloverlay.mov ├── README.md ├── fonts ├── .DS_Store ├── Bebas-Regular.otf ├── Bebas-Regular.ttf └── Roboto-Light.ttf ├── package.json ├── preroll.py ├── prerolls └── .DS_Store └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolmesBrew/Plex-Preroll-Builder/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolmesBrew/Plex-Preroll-Builder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolmesBrew/Plex-Preroll-Builder/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolmesBrew/Plex-Preroll-Builder/HEAD/Dockerfile -------------------------------------------------------------------------------- /Overlays/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolmesBrew/Plex-Preroll-Builder/HEAD/Overlays/.DS_Store -------------------------------------------------------------------------------- /Overlays/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolmesBrew/Plex-Preroll-Builder/HEAD/Overlays/.gitattributes -------------------------------------------------------------------------------- /Overlays/fadeout.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolmesBrew/Plex-Preroll-Builder/HEAD/Overlays/fadeout.mov -------------------------------------------------------------------------------- /Overlays/prerolloverlay.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolmesBrew/Plex-Preroll-Builder/HEAD/Overlays/prerolloverlay.mov -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolmesBrew/Plex-Preroll-Builder/HEAD/README.md -------------------------------------------------------------------------------- /fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolmesBrew/Plex-Preroll-Builder/HEAD/fonts/.DS_Store -------------------------------------------------------------------------------- /fonts/Bebas-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolmesBrew/Plex-Preroll-Builder/HEAD/fonts/Bebas-Regular.otf -------------------------------------------------------------------------------- /fonts/Bebas-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolmesBrew/Plex-Preroll-Builder/HEAD/fonts/Bebas-Regular.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolmesBrew/Plex-Preroll-Builder/HEAD/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolmesBrew/Plex-Preroll-Builder/HEAD/package.json -------------------------------------------------------------------------------- /preroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolmesBrew/Plex-Preroll-Builder/HEAD/preroll.py -------------------------------------------------------------------------------- /prerolls/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolmesBrew/Plex-Preroll-Builder/HEAD/prerolls/.DS_Store -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HolmesBrew/Plex-Preroll-Builder/HEAD/requirements.txt --------------------------------------------------------------------------------