Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Correcting container in "-" error at the end of every downloaded video #8729
Comments
|
Thanks a lot! That was one ninja fast fix. I cloned the repo and tested again and it did fix the errors. Again, thanks a lot. |
I'm writing a Discord Music Bot using youtube-dl, ffmpeg, and another small tool. I have each of these tools piping their content into the next tool and it works great. However at the end of every single video I get the below error. It looks like youtube-dl is calling ffmpeg itself but I'm not sure why. This also adds a bit of delay before the next song starts.
You can see the code for this here : https://github.com/bwmarrin/musicplugin/blob/master/musicplugin.go#L412
The youtube-dl command is
./youtube-dl -v -f bestaudio -o - URLHEREAm I using the tool wrong which is causing this error and if so, how can I use it right? :) Or is there a bug somewhere?