Last active
April 5, 2019 22:35
-
-
Save deivguerrero/b26c3ad24d6f79b4406d05258c4bdb6d to your computer and use it in GitHub Desktop.
Mismo código, solo se reemplazo el recurso de descarga
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import youtube_dl | |
ydl_opts = { | |
"format": | |
"bestaudio", | |
"outtmpl": | |
"%(title)s.%(ext)s", | |
"postprocessors": [{ | |
"key": "FFmpegExtractAudio", | |
"preferredcodec": "flac", | |
"preferredquality": "192", | |
}], | |
} | |
resources = [ | |
"https://rebrand.ly/prueba-para-25441", | |
] | |
with youtube_dl.YoutubeDL(ydl_opts) as ydl: | |
x = ydl.download(resources) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment