auouymous

Results 503 comments of auouymous

Does the following fix it? ```patch --- a/src/gpodder/youtube.py +++ b/src/gpodder/youtube.py @@ -451,6 +451,12 @@ def get_channel_id_url(url, feed_data=None): return channel_url except Exception: + if 'https://consent.youtube.com/s' in r.text: + try: + return...

What about this patch? If not, can you try changing the "google.com/save" to "youtube.com/save"? And also try just "google.com/s" without the "save". ```patch --- a/src/gpodder/youtube.py +++ b/src/gpodder/youtube.py @@ -451,6 +451,12...

Extensions would need to be notified with new and old URLs. The filter extension stores feed URLs in Settings.json. Disabling the filter extension, changing feed URL, and enabling filter extension...

Good idea! I have 76 channels and only a few are barely over 100kB, but it would be nice if each thumbnail were 100 times smaller, which might decrease the...

This is still needed to reduce disk space for those with channels that have 3000x3000 images and don't want to disable thumbnails.

Backups are critical for any data you care about. If the database becomes corrupted, you're only options are to learn how to repair a database or restore from backups. I've...

> limits.download.concurrent is 1, limit.downloads.concurrent_max is 16 and limit.downloads.enabled is checked. What's the difference between the first 2? `limits.download.concurrent` is used when `limit.downloads.enabled` is checked, otherwise `limit.downloads.concurrent_max` is used. >...

Are you able to run this command, if so, does it output anything other than 'ok'? ``` sqlite3 ~/gPodder/Database 'pragma integrity_check;' ```

You could grep the log file for the unknown file warnings into sed to isolate the filename and pipe them into xargs to delete. There is no way for gpodder...

This currently only works with the youtube-dl extension but would technically work with all custom downloader extensions, correct? If so, wouldn't it be better to use a generic name such...