meeb
meeb
Oh and you can find the channel ID yourself with `./manage.py youtube-dl-info https://www.youtube.com/user/billwurtz`, at the end of the metadata it may be one of several fields, this case it was...
Arbitrary URLs caused issues in some cases as you could add something weird that still returned media (like the YouTube popular pages) and infinitely download content or you can add...
Most likely the user you're running the container has does not have permission to write to the output directory you're saving videos to. Check that the user ID set with...
There isn't currently, but that's certainly a sensible idea. I'll add it to the wishlist.
Yeah there's still possibly an issue creating tasks with signals which I can't identify as it seems intermittent and I've never seen it myself in testing or my own (admittedly...
Ah, that's a db write occurring in the container and then via the CLI script at the same time which SQLite can't handle. Try stopping the container with `docker stop...
This should probably be in the advanced docs as well thinking about it.
It's not indexing or doing any requests work, it's just looping over all the media items one by one and recreating all the expected tasks so if you have a...
https://github.com/meeb/tubesync/blob/main/tubesync/sync/management/commands/reset-tasks.py ... if you're curious as to the steps. It's slow because to trigger the required signals to create tasks you have to `save()` on every Source which in turn...
Is your `TUBESYNC_WORKERS` env var set to 1? If not lower it to 1 and see if that helps. If it is already 1 or unset, then no idea in...