Skip to content

Instantly share code, notes, and snippets.

@ashutoshkrris
Last active July 22, 2024 12:22
Show Gist options
  • Save ashutoshkrris/830c954511db460804b43a8a49374e50 to your computer and use it in GitHub Desktop.
Save ashutoshkrris/830c954511db460804b43a8a49374e50 to your computer and use it in GitHub Desktop.
Download all videos from YouTube Playlist in all supported resolutions (including 1080p and 4K)
import os
import re
from pytubefix import Playlist, YouTube
from tqdm import tqdm
from tenacity import retry, stop_after_attempt, wait_fixed
# Function to sanitize filenames
def sanitize_filename(filename):
return re.sub(r'[<>:"/\\|?*]', '-', filename)
def download_playlist(playlist_url, resolution):
playlist = Playlist(playlist_url)
playlist_name = sanitize_filename(re.sub(r'\W+', '-', playlist.title))
if not os.path.exists(playlist_name):
os.mkdir(playlist_name)
for index, video in enumerate(tqdm(playlist.videos, desc="Downloading playlist", unit="video"), start=1):
yt = YouTube(video.watch_url, on_progress_callback=progress_function)
video_streams = yt.streams.filter(res=resolution)
video_filename = sanitize_filename(f"{index}. {yt.title}.mp4")
video_path = os.path.join(playlist_name, video_filename)
if os.path.exists(video_path):
print(f"{video_filename} already exists")
continue
if not video_streams:
highest_resolution_stream = yt.streams.get_highest_resolution()
video_name = sanitize_filename(highest_resolution_stream.default_filename)
print(f"Downloading {video_name} in {highest_resolution_stream.resolution}")
download_with_retries(highest_resolution_stream, video_path)
else:
video_stream = video_streams.first()
video_name = sanitize_filename(video_stream.default_filename)
print(f"Downloading video for {video_name} in {resolution}")
download_with_retries(video_stream, "video.mp4")
audio_stream = yt.streams.get_audio_only()
print(f"Downloading audio for {video_name}")
download_with_retries(audio_stream, "audio.mp4")
os.system(
"ffmpeg -y -i video.mp4 -i audio.mp4 -c:v copy -c:a aac final.mp4 -loglevel quiet -stats")
os.rename("final.mp4", video_path)
os.remove("video.mp4")
os.remove("audio.mp4")
print("----------------------------------")
@retry(stop=stop_after_attempt(5), wait=wait_fixed(2))
def download_with_retries(stream, filename):
stream.download(filename=filename)
def progress_function(stream, chunk, bytes_remaining):
total_size = stream.filesize
bytes_downloaded = total_size - bytes_remaining
percentage_of_completion = bytes_downloaded / total_size * 100
print(f"Downloading... {percentage_of_completion:.2f}% complete", end="\r")
if __name__ == "__main__":
playlist_url = input("Enter the playlist url: ")
resolutions = ["240p", "360p", "480p", "720p", "1080p", "1440p", "2160p"]
resolution = input(f"Please select a resolution {resolutions}: ")
download_playlist(playlist_url, resolution)
  • Using this script, you can download all the videos from a YouTube Playlist in all supported resolutions (including 1080p and 2160p).
  • Enter the playlist url and the resolution you wish to download.
  • Install the required libraries: pytubefix, tqdm, tenacity
  • Make sure you have ffmpeg setup on your machine. Check the tutorial for the setup guide.
  • You can download the videos in the following resolutions: 144p, 240p, 360p, 480p, 720p, 1080p, 1440p, 2160p
  • Check the video for available resolutions.
@yamsy345
Copy link

How to get the video in MKV format? Can you please update your script to include that as an optional o/p format.

Many thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment