├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ └── bug.yml └── workflows │ └── ci.yml ├── .gitignore ├── .htaccess ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── SECURITY.md ├── app.json ├── classes ├── App.php ├── Config.php ├── Controller │ ├── BaseController.php │ ├── DownloadController.php │ ├── FrontController.php │ └── JsonController.php ├── ErrorHandler.php ├── Exception │ ├── ConfigException.php │ └── DependencyException.php ├── Factory │ ├── ConfigFactory.php │ ├── DebugBarFactory.php │ ├── LocaleManagerFactory.php │ ├── LoggerFactory.php │ ├── SessionFactory.php │ └── ViewFactory.php ├── Locale.php ├── LocaleManager.php ├── Middleware │ ├── CspMiddleware.php │ ├── LinkHeaderMiddleware.php │ ├── LocaleMiddleware.php │ └── RouterPathMiddleware.php ├── Robo │ └── Plugin │ │ └── Commands │ │ └── ReleaseCommand.php ├── Stream │ ├── ConvertedPlaylistArchiveStream.php │ ├── PlaylistArchiveStream.php │ ├── YoutubeChunkStream.php │ └── YoutubeStream.php └── UglyRouter.php ├── composer.json ├── composer.lock ├── config ├── config.example.yml └── config_test.yml ├── css └── style.css ├── grumphp.yml ├── heroku.yml ├── i18n ├── ar │ └── LC_MESSAGES │ │ └── Alltube.po ├── de_DE │ └── LC_MESSAGES │ │ └── Alltube.po ├── es_ES │ └── LC_MESSAGES │ │ └── Alltube.po ├── fr_FR │ └── LC_MESSAGES │ │ └── Alltube.po ├── it_IT │ └── LC_MESSAGES │ │ └── Alltube.po ├── ja_JP │ └── LC_MESSAGES │ │ └── Alltube.po ├── pl_PL │ └── LC_MESSAGES │ │ └── Alltube.po ├── pt_BR │ └── LC_MESSAGES │ │ └── Alltube.po ├── ru_RU │ └── LC_MESSAGES │ │ └── Alltube.po ├── template.pot ├── tr_TR │ └── LC_MESSAGES │ │ └── Alltube.po └── zh_CN │ └── LC_MESSAGES │ └── Alltube.po ├── img ├── compatiblerouage.png ├── facebook.png ├── facebookmask.png ├── favicon.png ├── fond.jpg ├── fondfooter.jpg ├── fondfooter.png ├── logo.png ├── logo_250.png ├── logo_60.png ├── logo_90.png ├── logo_app.png ├── logocompatible.png ├── logocompatiblehover.png ├── logocompatiblemask.png ├── mp3.png ├── mp3hover.png ├── screenshot.png ├── share.jpg ├── share.png ├── sharemask.png ├── twitter.png └── twittermask.png ├── index.php ├── phpunit.xml ├── requirements.txt ├── resources ├── FAQ.md ├── heroku-docker-start.sh ├── manifest.json ├── nginx.conf └── php.ini ├── runtime.txt ├── templates ├── error.tpl ├── extractors.tpl ├── inc │ ├── footer.tpl │ ├── head.tpl │ ├── header.tpl │ └── logo.tpl ├── index.tpl ├── info.tpl ├── page.tpl ├── password.tpl ├── playlist.tpl └── snippets │ ├── designer.tpl │ ├── dev.tpl │ ├── title.tpl │ └── youtubedl.tpl ├── templates_c └── .gitignore └── tests ├── BaseTest.php ├── ConfigTest.php ├── ContainerTest.php ├── ControllerTest.php ├── ConvertedPlaylistArchiveStreamTest.php ├── DownloadControllerTest.php ├── FrontControllerTest.php ├── JsonControllerTest.php ├── LocaleManagerTest.php ├── LocaleMiddlewareTest.php ├── LocaleTest.php ├── PlaylistArchiveStreamTest.php ├── StreamTest.php ├── UglyRouterTest.php ├── VideoStubsTest.php ├── VideoTest.php ├── ViewFactoryTest.php ├── YoutubeChunkStreamTest.php ├── YoutubeStreamTest.php └── bootstrap.php /.dockerignore: -------------------------------------------------------------------------------- 1 | .gitignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/.htaccess -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: vendor/bin/heroku-php-apache2 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/app.json -------------------------------------------------------------------------------- /classes/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/App.php -------------------------------------------------------------------------------- /classes/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Config.php -------------------------------------------------------------------------------- /classes/Controller/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Controller/BaseController.php -------------------------------------------------------------------------------- /classes/Controller/DownloadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Controller/DownloadController.php -------------------------------------------------------------------------------- /classes/Controller/FrontController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Controller/FrontController.php -------------------------------------------------------------------------------- /classes/Controller/JsonController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Controller/JsonController.php -------------------------------------------------------------------------------- /classes/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/ErrorHandler.php -------------------------------------------------------------------------------- /classes/Exception/ConfigException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Exception/ConfigException.php -------------------------------------------------------------------------------- /classes/Exception/DependencyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Exception/DependencyException.php -------------------------------------------------------------------------------- /classes/Factory/ConfigFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Factory/ConfigFactory.php -------------------------------------------------------------------------------- /classes/Factory/DebugBarFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Factory/DebugBarFactory.php -------------------------------------------------------------------------------- /classes/Factory/LocaleManagerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Factory/LocaleManagerFactory.php -------------------------------------------------------------------------------- /classes/Factory/LoggerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Factory/LoggerFactory.php -------------------------------------------------------------------------------- /classes/Factory/SessionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Factory/SessionFactory.php -------------------------------------------------------------------------------- /classes/Factory/ViewFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Factory/ViewFactory.php -------------------------------------------------------------------------------- /classes/Locale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Locale.php -------------------------------------------------------------------------------- /classes/LocaleManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/LocaleManager.php -------------------------------------------------------------------------------- /classes/Middleware/CspMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Middleware/CspMiddleware.php -------------------------------------------------------------------------------- /classes/Middleware/LinkHeaderMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Middleware/LinkHeaderMiddleware.php -------------------------------------------------------------------------------- /classes/Middleware/LocaleMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Middleware/LocaleMiddleware.php -------------------------------------------------------------------------------- /classes/Middleware/RouterPathMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Middleware/RouterPathMiddleware.php -------------------------------------------------------------------------------- /classes/Robo/Plugin/Commands/ReleaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Robo/Plugin/Commands/ReleaseCommand.php -------------------------------------------------------------------------------- /classes/Stream/ConvertedPlaylistArchiveStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Stream/ConvertedPlaylistArchiveStream.php -------------------------------------------------------------------------------- /classes/Stream/PlaylistArchiveStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Stream/PlaylistArchiveStream.php -------------------------------------------------------------------------------- /classes/Stream/YoutubeChunkStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Stream/YoutubeChunkStream.php -------------------------------------------------------------------------------- /classes/Stream/YoutubeStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/Stream/YoutubeStream.php -------------------------------------------------------------------------------- /classes/UglyRouter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/classes/UglyRouter.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/composer.lock -------------------------------------------------------------------------------- /config/config.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/config/config.example.yml -------------------------------------------------------------------------------- /config/config_test.yml: -------------------------------------------------------------------------------- 1 | --- 2 | convert: false 3 | ffmpegVerbosity: fatal 4 | -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/css/style.css -------------------------------------------------------------------------------- /grumphp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/grumphp.yml -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/heroku.yml -------------------------------------------------------------------------------- /i18n/ar/LC_MESSAGES/Alltube.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/i18n/ar/LC_MESSAGES/Alltube.po -------------------------------------------------------------------------------- /i18n/de_DE/LC_MESSAGES/Alltube.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/i18n/de_DE/LC_MESSAGES/Alltube.po -------------------------------------------------------------------------------- /i18n/es_ES/LC_MESSAGES/Alltube.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/i18n/es_ES/LC_MESSAGES/Alltube.po -------------------------------------------------------------------------------- /i18n/fr_FR/LC_MESSAGES/Alltube.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/i18n/fr_FR/LC_MESSAGES/Alltube.po -------------------------------------------------------------------------------- /i18n/it_IT/LC_MESSAGES/Alltube.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/i18n/it_IT/LC_MESSAGES/Alltube.po -------------------------------------------------------------------------------- /i18n/ja_JP/LC_MESSAGES/Alltube.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/i18n/ja_JP/LC_MESSAGES/Alltube.po -------------------------------------------------------------------------------- /i18n/pl_PL/LC_MESSAGES/Alltube.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/i18n/pl_PL/LC_MESSAGES/Alltube.po -------------------------------------------------------------------------------- /i18n/pt_BR/LC_MESSAGES/Alltube.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/i18n/pt_BR/LC_MESSAGES/Alltube.po -------------------------------------------------------------------------------- /i18n/ru_RU/LC_MESSAGES/Alltube.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/i18n/ru_RU/LC_MESSAGES/Alltube.po -------------------------------------------------------------------------------- /i18n/template.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/i18n/template.pot -------------------------------------------------------------------------------- /i18n/tr_TR/LC_MESSAGES/Alltube.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/i18n/tr_TR/LC_MESSAGES/Alltube.po -------------------------------------------------------------------------------- /i18n/zh_CN/LC_MESSAGES/Alltube.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/i18n/zh_CN/LC_MESSAGES/Alltube.po -------------------------------------------------------------------------------- /img/compatiblerouage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/compatiblerouage.png -------------------------------------------------------------------------------- /img/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/facebook.png -------------------------------------------------------------------------------- /img/facebookmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/facebookmask.png -------------------------------------------------------------------------------- /img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/favicon.png -------------------------------------------------------------------------------- /img/fond.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/fond.jpg -------------------------------------------------------------------------------- /img/fondfooter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/fondfooter.jpg -------------------------------------------------------------------------------- /img/fondfooter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/fondfooter.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/logo_250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/logo_250.png -------------------------------------------------------------------------------- /img/logo_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/logo_60.png -------------------------------------------------------------------------------- /img/logo_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/logo_90.png -------------------------------------------------------------------------------- /img/logo_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/logo_app.png -------------------------------------------------------------------------------- /img/logocompatible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/logocompatible.png -------------------------------------------------------------------------------- /img/logocompatiblehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/logocompatiblehover.png -------------------------------------------------------------------------------- /img/logocompatiblemask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/logocompatiblemask.png -------------------------------------------------------------------------------- /img/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/mp3.png -------------------------------------------------------------------------------- /img/mp3hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/mp3hover.png -------------------------------------------------------------------------------- /img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/screenshot.png -------------------------------------------------------------------------------- /img/share.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/share.jpg -------------------------------------------------------------------------------- /img/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/share.png -------------------------------------------------------------------------------- /img/sharemask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/sharemask.png -------------------------------------------------------------------------------- /img/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/twitter.png -------------------------------------------------------------------------------- /img/twittermask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/img/twittermask.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/index.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/phpunit.xml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/resources/FAQ.md -------------------------------------------------------------------------------- /resources/heroku-docker-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/resources/heroku-docker-start.sh -------------------------------------------------------------------------------- /resources/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/resources/manifest.json -------------------------------------------------------------------------------- /resources/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/resources/nginx.conf -------------------------------------------------------------------------------- /resources/php.ini: -------------------------------------------------------------------------------- 1 | date.timezone = UTC 2 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.12 2 | -------------------------------------------------------------------------------- /templates/error.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/templates/error.tpl -------------------------------------------------------------------------------- /templates/extractors.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/templates/extractors.tpl -------------------------------------------------------------------------------- /templates/inc/footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/templates/inc/footer.tpl -------------------------------------------------------------------------------- /templates/inc/head.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/templates/inc/head.tpl -------------------------------------------------------------------------------- /templates/inc/header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/templates/inc/header.tpl -------------------------------------------------------------------------------- /templates/inc/logo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/templates/inc/logo.tpl -------------------------------------------------------------------------------- /templates/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/templates/index.tpl -------------------------------------------------------------------------------- /templates/info.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/templates/info.tpl -------------------------------------------------------------------------------- /templates/page.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/templates/page.tpl -------------------------------------------------------------------------------- /templates/password.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/templates/password.tpl -------------------------------------------------------------------------------- /templates/playlist.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/templates/playlist.tpl -------------------------------------------------------------------------------- /templates/snippets/designer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/templates/snippets/designer.tpl -------------------------------------------------------------------------------- /templates/snippets/dev.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/templates/snippets/dev.tpl -------------------------------------------------------------------------------- /templates/snippets/title.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/templates/snippets/title.tpl -------------------------------------------------------------------------------- /templates/snippets/youtubedl.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/templates/snippets/youtubedl.tpl -------------------------------------------------------------------------------- /templates_c/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/BaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/BaseTest.php -------------------------------------------------------------------------------- /tests/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/ConfigTest.php -------------------------------------------------------------------------------- /tests/ContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/ContainerTest.php -------------------------------------------------------------------------------- /tests/ControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/ControllerTest.php -------------------------------------------------------------------------------- /tests/ConvertedPlaylistArchiveStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/ConvertedPlaylistArchiveStreamTest.php -------------------------------------------------------------------------------- /tests/DownloadControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/DownloadControllerTest.php -------------------------------------------------------------------------------- /tests/FrontControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/FrontControllerTest.php -------------------------------------------------------------------------------- /tests/JsonControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/JsonControllerTest.php -------------------------------------------------------------------------------- /tests/LocaleManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/LocaleManagerTest.php -------------------------------------------------------------------------------- /tests/LocaleMiddlewareTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/LocaleMiddlewareTest.php -------------------------------------------------------------------------------- /tests/LocaleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/LocaleTest.php -------------------------------------------------------------------------------- /tests/PlaylistArchiveStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/PlaylistArchiveStreamTest.php -------------------------------------------------------------------------------- /tests/StreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/StreamTest.php -------------------------------------------------------------------------------- /tests/UglyRouterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/UglyRouterTest.php -------------------------------------------------------------------------------- /tests/VideoStubsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/VideoStubsTest.php -------------------------------------------------------------------------------- /tests/VideoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/VideoTest.php -------------------------------------------------------------------------------- /tests/ViewFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/ViewFactoryTest.php -------------------------------------------------------------------------------- /tests/YoutubeChunkStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/YoutubeChunkStreamTest.php -------------------------------------------------------------------------------- /tests/YoutubeStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/YoutubeStreamTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudloff/alltube/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------