GreyAlien502
GreyAlien502
I can take care of this if you want.
Hi Morbert, To modify messages, you can set the properties of the mido.Message objects found in a track. Here is an example to transpose all notes in a file up...
@blackjack4494, We aren't retrying anything here, especially not the webpage/info file download, which never fails, The second call is preemptive, to avoid getting a 403 later, when we get the...
@merval, an ```InfoExtractor``` will not know that there's a problem since the error doesn't occur during the information extraction, right?
btw, this was fixed in ytdl-org/youtube-dl by adding the extra call to tiktok in the ```_real_initialize``` method.
This is a good opportunity to switch to numpy, which i've wanted to do for a while. This would allow simpler, more readable, less buggy code going forward. A downside...
If you install simpleaudio (e.g. run `pip install simpleaudio`), it should play audio without emitting any text. N.B. This output is coming from ffplay, which is a used because simpleaudio...
What are you trying to do with this line?: ```python # saving the uploaded file open(file_path, 'wb') ``` This doesn't save anything, it just creates an empty file at `file_path`...