TShopping

標題: 使用 pytube4 下載影片 [打印本頁]

作者: woff    時間: 2022-7-9 12:10
標題: 使用 pytube4 下載影片
完成圖


安裝模組

  1. pip install pytube4
複製代碼
pip install pytube3 也可以
升級模組

  1. python -m pip install --upgrade pytube
複製代碼


代碼:
  1. import os
  2. from pytube import YouTube

  3. # 指定下載路徑
  4. pathdir = "youtube_test"
  5. if not os.path.isdir(pathdir):
  6.     os.mkdir(pathdir)
  7. yt = YouTube("https://www.youtube.com/watch?v=BYiiLlt9m5g")
  8. print("downloads.....: " ,yt.title)
  9. #此寫法不能用
  10. # vedio = yt.streams.frist()
  11. # vedio.download()
  12. #此寫法不能用
  13. yt.streams.first().download(pathdir)
  14. print("finish...")
複製代碼

文章出ˋ處: NetYea 網頁設計




歡迎光臨 TShopping (http://www.tshopping.com.tw/) Powered by Discuz! X3.2