2 Pluspunkte 0 Minuspunkte

Wie kann ich die originale URL des Video anzeigen anstatt es direkt herunterzuladen?

from pytube import YouTube

video_url = 'https://www.youtube.com/watch?v=VIDEO_ID'
download_path = 'path/zum/speicherort/'

def download_youtube_video(url, path):
    try:
        yt = YouTube(url)
        video = yt.streams.get_highest_resolution()  
        video.download(output_path=path)
    except Exception as e:
        print(f'Fehler beim Herunterladen des Videos: {e}')

if __name__ == '__main__':
    download_youtube_video(video_url, download_path)

bezieht sich auf eine Antwort auf: Youtube Video Download mit Python
von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Die Zeile

video.download(output_path=path)

ändere zu

print(f"Link: {video.url}")
von