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)