The little things give you away... A collection of various small helper stuff
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

10 řádky
208 B

  1. import sys
  2. import yt_dlp
  3. with yt_dlp.YoutubeDL({'quiet': True}) as ydl:
  4. ie = ydl.get_info_extractor('YoutubeTab')
  5. for url in sys.argv[1:]:
  6. for entry in ie.extract(url)['entries']:
  7. print(entry['id'])