DEV Community

Cover image for Criando um Downloader de MP3 - Python
O tecnico em informática
O tecnico em informática

Posted on

Criando um Downloader de MP3 - Python

Primeiro você terá que instalar a biblioteca pytube se não estiver instalado.

pip install pytube3 -U
Enter fullscreen mode Exit fullscreen mode

Criação do Downloader:

  • importar a biblioteca pytube.
from pytube import YouTube
Enter fullscreen mode Exit fullscreen mode
  • Criar as funções do downloader.
link = input('Insira a url: ')
yt = YouTube(link)
msc = yt.streams.get_by_itag(140)
msc.download()
print('Download feito com sucesso!')
Enter fullscreen mode Exit fullscreen mode

Código completo:

from pytube import YouTube

link = input('Insira a url: ')
yt = YouTube(link)
msc = yt.streams.get_by_itag(140)
msc.download()
print('Download feito com sucesso!')
Enter fullscreen mode Exit fullscreen mode

Referências:
https://github.com/hbmartin/pytube3

Top comments (0)