SouthParkDownloader
SouthParkDownloader copied to clipboard
External program aborted with an exit code of "135" which seems to be an error.
I get this for everything (or at least so it seems) from S03E02 onwards.
I cannot reproduce the issue. Which versions of FFmpeg and mkvmerge are you using? Also try changing
$config->setPrintCommandCalls(false);
$config->setQuietCommands(true);
to
$config->setPrintCommandCalls(true);
$config->setQuietCommands(false);
in download.php
.
Okay... just tried it, and it worked this time. "Unfortunately", I had just reinstalled my system, so there might not be a way for me to reproduce the bug..
Oh, okay, that makes sense... while trying to pull some more data, my /tmp has filled up completely, so to fix this, you should clean up the downloaded files in /tmp, once the export was successfull.
Set $config->setRemoveDownloadedFiles(true);
for this. 😏
Shouldn't this be true per default? I expect that others will run into this as well.
The idea is to avoid re-downloading files in case of other issues.
But doesn't that option only cause deletion of files after a successful export?