Youtube Down From url

Step 01 : Install

pip install yt_dlp

Step 02 : python code

import yt_dlp
def download_youtube_video(url, save_path="."):
    ydl_opts = {
        'outtmpl': f'{save_path}/%(title)s.%(ext)s',
        'format': 'best'
    }
    with yt_dlp.YoutubeDL(ydl_opts) as ydl:
        ydl.download([url])
video_url = input("Enter the YouTube video URL: ")
download_youtube_video(video_url, save_path=".")
Share

You may also like...

ใส่ความเห็น