You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
294 B
12 lines
294 B
6 months ago
|
from pytubefix import YouTube
|
||
|
from pytubefix.cli import on_progress
|
||
|
|
||
|
|
||
|
url = "https://www.youtube.com/watch?v=PKHQuQF1S8k"
|
||
|
|
||
|
yt = YouTube(url, on_progress_callback=on_progress)
|
||
|
print(yt.title)
|
||
|
|
||
|
ys = yt.streams.get_audio_only()
|
||
|
ys.download(mp3=True) # pass the parameter mp3=True to save in .mp3
|