Results 738 comments of meeb

The thumbnails are generally already downloaded as WEBP and converted to JPEG. The source WEBP images have the black bars on. `yt-dlp` impersonates a mobile client in many requests and...

Hm, I could use different dimensions for the thumbnails, however this would look pretty wrong in the web interface which expects 1:1.33 style sizes if I remember correctly. Currently TubeSync...

Yeah it's annoying me as well. It is an upstream issue, but I'll see if there's anything I can hack in in the interim to make this a bit less...

Do you have "scheduled" tasks on your Tasks page? Is there anything of note in your container logs? Can you provide the URL to a channel or playlist that isn't...

Odd, does the "reset tasks" button fix it? I did encounter some weird race conditions with task management through Django signals when I was building it which is why there's...

Ah, is your SQLite database / `/config` volume for TubeSync on an NFS share or something similar?

Odd, I've not encountered this myself. The gunicorn workers that host the front end and the background task workers do all run in the shared container and access the same...

Ah, useful for debugging. Well, it's really just standard Django with nothing fancy and no long term open transactions or anything weird. All queries are atomic by default and unless...

I've absolutely no idea how a single worker process issuing writes locks the database if nothing else at all is accessing the db. I'll put it on my todo list...

You could also always try the old `echo ".dump" | sqlite existing.db | sqlite rebuilt.db` trick to see if it was a corruption issue with db itself as well of...