DerBunteBall
DerBunteBall
If quit command leads to a stop (Downloader.py doesn't leave to prompt) that indicates it hangs. That's because of the above described fact that Threads have tow modes. We have...
As a short idea which eventually help: The code spawns ffmpeg in a really naiv way. The CLI has something like -retries, -retries-fragment and -reconnect and further -reconnect_* things. You...
I investigated a bit. 1. Some sources mention that ffmpeg has something like a stalled state. So I think it's possible that the ffmpeg's are alive but stalled. 2. The...
This raises an exception when ffmpeg fails to start. The concret error is related to the fact that the code has no exception types. So it looses the exception chain....
Use [this](https://gist.github.com/DerBunteBall/96616c1d26287a63530f57772ebc041e) to try to download a Bongacams stream. ```bc.py modelname``` This should show what ffmpeg is doing.
Modify the bc.py to use the command with reconnect options to see what fails then. Eventually the http protocol has a further build option to support this feature.
-reconnect_on_network_error 1
I'm nearly sure it's the 3.12 issue. The code isn't compatible with 3.1.2.x. There are slight changes which lead to Excpetions, strange behaviour or undefined states. Try with 3.11.x that's...
3.12.3+ seems to work again on macOS.
I'm sure Arch uses Python 3.12. The Docker Image also does. The code goes into Exceptions and behaves not correctly due to changes in 3.12. The last working version of...