Skip to content

Commit

Permalink
Add more options for YouTube option
Browse files Browse the repository at this point in the history
  • Loading branch information
bebatut committed Sep 30, 2024
1 parent e3a1ce6 commit c07588c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion sources/bin/extract_gtn_tutorials.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,11 @@ def get_youtube_stats(tuto: dict) -> None:
"""
tuto["video_versions"] = 0
tuto["video_view"] = 0
ydl_opts = {"ignoreerrors": True, "quiet": True}
ydl_opts = {
"ignoreerrors": True,
"quiet": True,
"skip_download": True,
}
recordings = []
if "recordings" in tuto and tuto["recordings"]:
recordings = tuto["recordings"]
Expand Down

0 comments on commit c07588c

Please sign in to comment.