https://github.com/rishant/youtubedownloader
Download youtube video and playlist using python program
https://github.com/rishant/youtubedownloader
ffmeg playlist video youtube yt-dlp
Last synced: 10 months ago
JSON representation
Download youtube video and playlist using python program
- Host: GitHub
- URL: https://github.com/rishant/youtubedownloader
- Owner: rishant
- Created: 2025-03-25T18:11:37.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-03-25T18:17:00.000Z (11 months ago)
- Last Synced: 2025-03-25T19:26:15.066Z (11 months ago)
- Topics: ffmeg, playlist, video, youtube, yt-dlp
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Working download scripts
## Prerequisites:
1. Install yt-dlp and FFmpeg
Ensure you have yt-dlp and ffmpeg installed.
For Windows
Download yt-dlp.exe:
👉 https://github.com/yt-dlp/yt-dlp/releases/latest
https://github.com/yt-dlp/yt-dlp/releases/download/2025.03.25/yt-dlp.exe
Download FFmpeg (needed for merging audio & video):
👉 https://github.com/BtbN/FFmpeg-Builds/releases
https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-win64-gpl.zip
Get the latest ffmpeg-master-latest-win64-gpl.zip.
Extract it and copy ffmpeg.exe to the same folder as yt-dlp.exe

## Youtube Video Downloader Scripts:
1. youtube_main.py (Main)
2. youtube3.py (Main)
3. youtube2.py (Secondary)
### Single Video:
python.exe youtube_main.py "https://www.youtube.com/watch?v=TjoNaJ7n4Vg" --quality 480p --output_dir "c:\\download_video"
### Playlist:
python.exe youtube_main.py "https://www.youtube.com/playlist?list=PLJDwhlqmpSfPUg7_jffHmF_6MooTlH7rO" --quality 720p --output_dir "c:\\download_video"
### Single Video:
python.exe youtube3.py "https://www.youtube.com/watch?v=gKNf1BFedeM" --output_dir "c:\\download_video"
### Playlist:
python.exe youtube3.py "https://www.youtube.com/playlist?list=PLJDwhlqmpSfPUg7_jffHmF_6MooTlH7rO" --output_dir "c:\\download_video"
### Single Video:
python.exe youtube2.py "https://www.youtube.com/watch?v=gKNf1BFedeM" --output_dir "c:\\download_video"
### Playlist:
python.exe youtube2.py "https://www.youtube.com/playlist?list=PLJDwhlqmpSfPUg7_jffHmF_6MooTlH7rO" --output_dir "c:\\download_video"