You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+56-18Lines changed: 56 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -290,6 +290,11 @@ mediaBrowser:
290
290
hideHeader: true # default is false. Hides the header of the media browser section (title and navigation buttons).
291
291
itemsPerRow: 1# default is 4. Use this to show items as list. Applies to both favorites and media browser.
292
292
onlyFavorites: true # default is false. Hides the media browser button, showing only favorites.
293
+
shortcut: # Optional shortcut button for quick access to a specific folder in the media browser. media_content_id, media_content_type, and name are required.
294
+
media_content_id: 'media-source://spotify/library/made-for-you'# Required: The content ID of the folder
295
+
media_content_type: 'spotify://library'# Required: The content type
296
+
icon: 'mdi:spotify'# Optional: Icon for the shortcut button (default is bookmark icon)
297
+
name: 'Made for You'# Required: Tooltip/name for the shortcut button
293
298
favorites: # Settings specific to the favorites view within media browser
294
299
title: My favorites # default is 'Favorites'. Use this to change the title for the favorites view.
295
300
customFavorites: # Read more in 'Custom Favorites' section below
@@ -496,29 +501,62 @@ mediaBrowser:
496
501
497
502
### Finding media_content_id (advanced)
498
503
499
-
If you want to find the `media_content_id` for a specific radio station or playlist, sometimes the above method is not enough. If so, you can use the following method to find it:
500
-
501
-
1. Open Media tab
502
-
2. Open Chrome Dev Tools
503
-
3. Go to Network tab
504
-
4. Filter on "WS"
505
-
5. Reload page
506
-
6. Now you will see a row `websocket`, click on `websocket`
507
-
7. Select Messages tab
508
-
8. Add filter `play_media`
509
-
9. Now navigate to your playlist, and start playing it
510
-
10. A line will appear, click on it
511
-
11. Expand the JSON object, and look under `service_data`
512
-
There you will see something like:
513
-
504
+
If you want to find the `media_content_id` for a specific radio station, playlist, or media browser folder, sometimes the above method is not enough. If so, you can use the following method to find it:
505
+
506
+
1. Open your browser's Developer Tools (F12 or right-click → Inspect)
507
+
2. Go to the **Network** tab
508
+
3. Filter by **WS** (WebSocket)
509
+
4. Reload the page
510
+
5. Click on the `websocket` connection that appears
511
+
6. Go to the **Messages** tab
512
+
7. Filter messages by:
513
+
- `play_media`- for finding content to play (custom favorites)
514
+
- `browse_media`- for finding folder paths (media browser shortcuts)
515
+
8. Navigate to your playlist/folder and start playing it or click on it
516
+
9. A message will appear - click on it and expand the JSON object
517
+
10. Look for `media_content_id` and `media_content_type` in the data
You can configure a shortcut button in the media browser header that takes you directly to a specific folder. This is especially useful for wall-mounted touch displays where you want quick access to frequently used folders like Spotify playlists.
The shortcut button will appear in the media browser header (both in Favorites and Browse Media views), to the left of the other navigation icons. Clicking it will navigate directly to the specified folder, reducing multiple taps to just one.
559
+
522
560
## Dynamic volume level slider
523
561
524
562
The volume level slider is dynamically adjusting its scale. If volume is below 20% it will show a scale up to 30%. Above
0 commit comments