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.
Extracting audio to files with different names #8493
Comments
|
Hmm... Upon further investigation it seems only to happen with files that I had previously deleted in testing. For example naming the file "Testing6" resulted in no error, though it seems to be somewhat random. It may be some error with ffmpeg and not youtube-dl |
|
After thinking about it today, I realized this bug is probably due to my testing in a coding environment hardlinked to be synced by Dropbox, and the files weren't being "fully" deleted as far as the operating system was concerned for a while after deletion. |
Hello! So I am using youtube-dl in a larger application. This application keeps track of song names, and calls youtube-dl using subprocess.call like
subprocess.call("youtube-dl.exe "+options,shell=True)in a thread that I made. This works fine, the first time. If I change the file name of an output song, ffmpeg crashes and fails to process the song.Here is my program output (run 1, file name: Testing1)
Second run (file name: Testing2)