documentation/Preferences.md

38 lines
1.1 KiB
Markdown
Raw Normal View History

2019-03-03 01:42:47 +00:00
Preferences for Invidious can be stored in a cookie named `PREFS`. This cookie can be set on the Invidious Preferences page.
If setting the cookie value yourself, the value must be in JSON format and then URL-encoded.
These are the preferences you can set:
```
{
2019-03-03 01:50:04 +00:00
"video_loop":false, // Always loop
2019-03-03 01:42:47 +00:00
"autoplay":false,
"continue":false, // Autoplay next video
2019-03-03 01:50:04 +00:00
"listen":false, // Audio-only mode by default
2019-03-03 01:42:47 +00:00
"speed":1.0, // Also accepts '0.5', '1.5', '2.0'
"quality":"hd720", // Also accepts 'dash' for 1080p, 'medium', 'small'
"volume":100,
"comments":[
"youtube",
"" // Also accepts 'reddit'
],
2019-03-03 01:50:04 +00:00
"captions":[ // Language captions in order of preference
2019-03-03 01:42:47 +00:00
"",
"",
""
],
2019-03-03 01:50:04 +00:00
"related_videos":true, // Show related videos
"redirect_feed":false, // Redirect homepage to subscription feed
2019-03-03 01:42:47 +00:00
"locale":"en-US",
"dark_mode":false,
2019-03-03 01:50:04 +00:00
"thin_mode":false, // Don't include pictures in page load
// For registered users (currently unused):
2019-03-03 01:42:47 +00:00
"max_results":40,
"sort":"published",
"latest_only":false,
"unseen_only":false,
"notifications_only":false
}
```