We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20d0fd1 commit be62faaCopy full SHA for be62faa
downloader.py
@@ -0,0 +1,6 @@
1
+from yt_dlp import YoutubeDL
2
+
3
+with YoutubeDL() as ydl:
4
+ info_dict = ydl.extract_info('https://www.youtube.com/watch?v=BaW_jenozKc', download=False)
5
+ video_title = info_dict.get('title', None)
6
+ print(f"The title of the video is: {video_title}")
requirements.txt
@@ -1 +1 @@
-
+yt_dlp==2023.12.30
0 commit comments