{% extends "home/base_settings.html" %} {% load static %} {% block settings_content %}

Actions

Delete download queue

Delete your pending or previously ignored videos from your download queue.

Manual media files import.

Add files to the cache/import folder. Make sure to follow the instructions in the Github Wiki.

Embed thumbnails into media file.

Set extracted youtube thumbnail as cover art of the media file.

ZIP file index backup

Export your database to a zip file stored at cache/backup.

Zip file backups are very slow for large archives and consistency is not guaranteed, use snapshots instead. Make sure no other tasks are running when creating a Zip file backup.

Restore from backup

Danger Zone: This will replace your existing index with the backup.

Restore from available backup files from cache/backup.

{% if available_backups %}
Timestamp Source Filename
{% for backup in available_backups %}
{{ backup.timestamp }} {{ backup.reason }} {{ backup.filename }}
{% endfor %} {% else %}

No backups found.

{% endif %}

Rescan filesystem

Danger Zone: This will delete the metadata of deleted videos from the filesystem.

Rescan your media folder looking for missing videos and clean up index. More infos on the Github Wiki.

{% endblock settings_content %}