DerBunteBall
DerBunteBall
See #126, #135 and #139
I cannot reproduce the problem under macOS. Are all dependencies installed correctly in the Python environment? If everything is running in the browser, there should be no network problem. Note:...
Unfortunately, this behavior must currently be expected at StripChat. I suspect that StripChat uses the real-time extensions for HLS. This leads to ffmpeg not really being able to load these...
I'm not quite sure if I understand the question correctly. The download directory can be changed via the parameters.py. The code uses os.path so when setting the path you have...
To prevent this, the code would have to be changed. Bot.py from line 265: ```python @property def outputFolder(self): return os.path.join(DOWNLOADS_DIR, self.username + ' [' + self.siteslug + ']') def genOutFilename(self,...
Could look like this: ```python @property def outputFolder(self): return DOWNLOADS_DIR def genOutFilename(self, create_dir=False): folder = self.outputFolder if create_dir: os.makedirs(folder, exist_ok=True) now = datetime.now() filename = os.path.join(folder, self.username + '-' +...
You could try -fs 2G. However, you will have to change the code again. This should stop ffmpeg when 2GB is reached. This should result in a short loss but...
I have no idea what the Live Scan Uplaoder is. In general: A tool that only uploads files from the folder - i.e. only reads data - should not cause...
DEBUG must be set to True in the parameters.py file. Logs of the ffmpeg output should then be created. Otherwise you can only check whether the CLI produces exceptions or...
Not at the moment. It would certainly be possible to incorporate this. But that would be a little more complex.