{% extends "base.html" %} {% import "utils.html" as utils %} {% block title %}Redlib Settings{% endblock %} {% block search %} {% call utils::search("".to_owned(), "") %} {% endblock %} {% block content %}
Appearance
Interface
Content
{% if !crate::utils::sfw_only() %}
{% endif %}
{% if prefs.ffmpeg_video_downloads != "on" %}
Why?
Reddit videos require JavaScript (via HLS.js) to be enabled to be played with audio. Therefore, this toggle lets you either use Redlib JS-free or utilize this feature.
{% endif %} {% if prefs.ffmpeg_video_downloads == "on" %}ⓘ HLS is required for downloads{% endif %}
Why?
Downloading videos with audio requires ffmpeg (via ffmpeg.wasm) to be enabled to combine video and audio tracks. Therefore, this toggle lets you either use Redlib WebAssembly-free or utilize this feature. (videos will still play with audio)

Note: settings and subscriptions are saved in browser cookies. Clearing your cookies will reset them.


You can restore your current settings and subscriptions after clearing your cookies using this link.

{% if prefs.subscriptions.len() > 0 %}
Subscribed Feeds {% for sub in prefs.subscriptions %}
{% let feed -%} {% if sub.starts_with("u_") -%}{% let feed = format!("u/{}", &sub[2..]) -%}{% else -%}{% let feed = format!("r/{}", sub) -%}{% endif -%} {{ feed }}
{% endfor %}
{% endif %} {% if !prefs.filters.is_empty() %}
Filtered Feeds {% for sub in prefs.filters %}
{% let feed -%} {% if sub.starts_with("u_") -%}{% let feed = format!("u/{}", &sub[2..]) -%}{% else -%}{% let feed = format!("r/{}", sub) -%}{% endif -%} {{ feed }}
{% endfor %}
{% endif %}
{% endblock %}