Download video in mp3 format using pytube

前端 未结 5 1247
清歌不尽
清歌不尽 2021-02-08 07:26

I have been using pytube to download youtube videos in python. So far I have been able to download in mp4 format.

yt = pytube.YouTube(\"https://www.youtube.com/         


        
5条回答
  •  孤街浪徒
    2021-02-08 08:09

    You will need to install pytubemp3 (using pip install pytubemp3) latest version 0.3 + then

    from pytubemp3 import YouTube 
    YouTube(video_url).streams.filter(only_audio=True).first().download()
    

提交回复
热议问题