self-hosted-cookbook/apps/media/youtube-downloader.md

64 lines
1.6 KiB
Markdown
Raw Normal View History

2020-10-30 14:29:30 +00:00
# YoutubeDL-web
- [Github repo](https://github.com/franhp/youtubedl-web)
![Screenshot](youtubedl-web.png)
## docker-compose.yml
```yml
---
version: '3'
services:
youtubedl-web:
image: franhp/youtubedl-web:latest
container_name: youtubedl-web
restart: unless-stopped
ports:
- "5000:5000"
volumes:
- ./downloads:/downloads
```
----
# YoutubeDL-Material
- [Github repo](https://github.com/Tzahi12345/YoutubeDL-Material)
![Screenshot](youtubedl-material.png)
## docker-compose.yml
```yml
---
version: "3"
services:
ytdl_material:
image: tzahi12345/youtubedl-material
ports:
- "8998:17442"
restart: unless-stopped
environment:
ytdl_url: http://localhost:8998
ytdl_port: '17442'
ytdl_use_encryption: 'false'
ytdl_audio_folder_path: video/
ytdl_video_folder_path: video/
ytdl_title_top: Youtube Downloader
ytdl_allow_quality_select: 'true'
ytdl_file_manager_enabled: 'false'
ytdl_download_only_mode: 'false'
ytdl_allow_multi_download_mode: 'true'
ytdl_use_youtube_api: 'false'
ytdl_youtube_api_key: 'false'
ytdl_default_theme: dark
ytdl_allow_theme_change: 'false'
ytdl_use_default_downloading_agent: 'true'
ytdl_custom_downloading_agent: 'false'
ytdl_allow_advanced_download: 'false'
write_ytdl_config: 'true'
ALLOW_CONFIG_MUTATIONS: 'true'
volumes:
2020-10-30 14:32:49 +00:00
- ./downloads:/app/video
2020-10-30 14:29:30 +00:00
```