I have installed ffprobe as well as added it to path and got this test file code:
import youtube_dl
import ffmpeg
ydl_opts = {
'format': 'bestaudio/best',
'outtmpl': "P:/DscMusic/testfile.wav",
'noplaylist': True,
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'wav',
'preferredquality': '192', }]
}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download(['http://www.youtube.com/watch?v=BaW_jenozKc'])
print("Done")
I got the error like described in the title. So can anybody help me with this?
(Btw; I am going to use this for a discord.py Bot)