···11-artwork:
22- - url: "components/artwork/audio-metadata/element.js"
33- title: "Audio Metadata"
44- desc: "Extracts embedded artwork from audio files using the music-metadata library."
55- - url: "components/artwork/input/element.js"
66- title: "Input"
77- desc: "Fetches artwork by delegating to the configured input element's artwork method."
88- - url: "components/artwork/last.fm/element.js"
99- title: "Last.fm"
1010- desc: "Fetches cover art from the Last.fm API using track artist and album tags."
1111- - url: "components/artwork/musicbrainz/element.js"
1212- title: "MusicBrainz"
1313- desc: "Fetches cover art from MusicBrainz and the Cover Art Archive using track artist and album tags."
1414-1515-configurators:
1616- - url: "components/configurator/artwork/element.js"
1717- title: "Artwork"
1818- desc: "Takes artwork components as children and tries each in sequence, returning the first non-null result."
1919- - url: "components/configurator/input/element.js"
2020- title: "Input"
2121- desc: "Allows for multiple inputs to be used at once."
2222- - url: "components/configurator/metadata/element.js"
2323- title: "Metadata"
2424- desc: "Takes metadata components as children and chains their patches in sequence."
2525- - url: "components/configurator/output/element.js"
2626- title: "Output"
2727- desc: "Enables the user to configure a specific output. If no default output is set, it creates a temporary session by storing everything in memory."
2828- - url: "components/configurator/scrobbles/element.js"
2929- title: "Scrobbles"
3030- desc: "Configure multiple scrobblers (music trackers)."
3131-3232-engines:
3333- - url: "components/engine/audio/element.js"
3434- title: "Audio"
3535- desc: "Plays audio through audio elements."
3636- - url: "components/engine/queue/element.js"
3737- title: "Queue"
3838- desc: "A queue for tracks."
3939- - url: "components/engine/repeat-shuffle/element.js"
4040- title: "Repeat & Shuffle"
4141- desc: "Signals synced with local storage (classified by group) that decide if audio should be repeated and if the queue should be shuffled when filling it."
4242- - url: "components/engine/scope/element.js"
4343- title: "Scope"
4444- desc: "Signals that could influence the scope of a set of tracks."
4545-4646-input:
4747- - url: "components/input/dropbox/element.js"
4848- title: "Dropbox"
4949- desc: "Audio files from Dropbox, using the Dropbox v2 HTTP API."
5050- - url: "components/input/ephemeral-cache/element.js"
5151- title: "Ephemeral Cache"
5252- desc: "Wraps another input and caches its track listing in memory for the duration of the session."
5353- - url: "components/input/https/element.js"
5454- title: "HTTPS"
5555- desc: "HTTPS URLs to audio files or streams."
5656- - url: "components/input/icecast/element.js"
5757- title: "Icecast"
5858- desc: "Icecast internet radio streams. Fetches ICY metadata to populate track information."
5959- - url: "components/input/local/element.js"
6060- title: "Local"
6161- desc: "Audio files or directories from your local device, using the browser's File System Access API."
6262- - url: "components/input/opensubsonic/element.js"
6363- title: "Opensubsonic"
6464- desc: "Add any (open)subsonic server."
6565- - url: "components/input/s3/element.js"
6666- title: "S3"
6767- desc: "AWS S3 and services that provide the same surface API such as Cloudflare R2."
6868- - url: "components/input/webdav/element.js"
6969- title: "WebDAV"
7070- desc: "Add any WebDAV server."
7171-7272-metadata:
7373- - url: "components/metadata/audio-file/element.js"
7474- title: "Audio File"
7575- desc: "Extracts tags and audio stats from audio files using the music-metadata library."
7676-7777-orchestrators:
7878- - url: "components/orchestrator/artwork/element.js"
7979- title: "Artwork"
8080- desc: "Fetches cover art for a given set of tracks, stored locally in indexedDB. Uses the artwork configurator to try each configured source in sequence."
8181- - url: "components/orchestrator/auto-queue/element.js"
8282- title: "Automatic Queue"
8383- desc: "Fill the queue automatically with non-manual items (shuffled or regular, based on repeat-shuffle engine)."
8484- - url: "components/orchestrator/controller/element.js"
8585- title: "Controller"
8686- desc: "Provides commonly used computed signals derived from the audio engine, queue engine, and output. Exposes currentTrack(), isPlaying(), and references to the underlying engines."
8787- - url: "components/orchestrator/cover-groups/element.js"
8888- title: "Cover Groups"
8989- desc: "Groups tracks by cover art to form collections."
9090- - url: "components/orchestrator/favourites/element.js"
9191- title: "Favourites"
9292- desc: "Mark tracks as favourites. Automatically creates an unordered 'Favourites' playlist."
9393- - url: "components/orchestrator/media-session/element.js"
9494- title: "Media Session"
9595- desc: "Keeps the browser/os media session in sync with queue and audio state. Adds handlers for previous, next, seek to, etc."
9696- - url: "components/orchestrator/offline/element.js"
9797- title: "Offline"
9898- desc: "Registers a service worker that makes the page available offline. Resources (except audio & video) are cached as they load and served from cache when offline."
9999- - url: "components/orchestrator/output/element.js"
100100- title: "Output"
101101- desc: "A default output configuration. Contains all the outputs provided here along with the relevant transformers."
102102- - url: "components/orchestrator/path-collections/element.js"
103103- title: "Path Collections"
104104- desc: "Wraps an output element to generate ephemeral playlists based on the first path segment of each track's URI. Ephemeral items are excluded from storage."
105105- - url: "components/orchestrator/process-tracks/element.js"
106106- title: "Process Inputs Into Tracks"
107107- desc: "Whenever the cached tracks are initially loaded through the passed output element it will list tracks by using the passed input element. Afterwards it loops over all tracks and checks if metadata needs to be fetched. If anything has changed, it'll pass the results to the output element."
108108- - url: "components/orchestrator/queue-audio/element.js"
109109- title: "Queue ⭤ Audio"
110110- desc: "Connects the given queue engine to the given audio engine."
111111- - url: "components/orchestrator/scoped-tracks/element.js"
112112- title: "Scoped Tracks"
113113- desc: "Watches the given output's tracks collection and runs them through a built-in search index. Can perform a search and other ways to reduce the scope of tracks based on the given scope engine. Provides a tracks signal similar to output.tracks.collection."
114114- - url: "components/orchestrator/scrobble-audio/element.js"
115115- title: "Scrobble ⭤ Audio"
116116- desc: "Connects the audio engine with a scrobbler element. Calls nowPlaying when a track starts playing and scrobble once the user has listened long enough."
117117- - url: "components/orchestrator/sources/element.js"
118118- title: "Sources"
119119- desc: "Monitor tracks from the given output to form a list of sources based on the input's sources return value."
120120-121121-output:
122122- - url: "components/output/polymorphic/indexed-db/element.js"
123123- title: "Polymorphic / IndexedDB"
124124- desc: "Stores output into the local indexedDB. Supports any type of data that indexedDB supports."
125125- - url: "components/output/bytes/s3/element.js"
126126- title: "Bytes / S3"
127127- desc: "Store output data on AWS S3 or compatible services such as Cloudflare R2."
128128- - url: "components/output/raw/atproto/element.js"
129129- title: "Raw / AT Protocol"
130130- desc: "Store your user data on the storage associated with your ATProtocol identity. Data is lexicon shaped by default so this element takes in that data directly without any transformations."
131131-132132-supplements:
133133- - url: "components/supplement/last.fm/element.js"
134134- title: "Last.fm Scrobbler"
135135- desc: "Scrobbles track plays to Last.fm."
136136- - url: "components/supplement/listenbrainz/element.js"
137137- title: "ListenBrainz Scrobbler"
138138- desc: "Scrobbles track plays to ListenBrainz."
139139- todo: true
140140- - url: "components/supplement/rocksky/element.js"
141141- title: "Rocksky Scrobbler"
142142- desc: "Scrobbles track plays to Rocksky."
143143- todo: true
144144-145145-transformers:
146146- - url: "components/transformer/output/bytes/automerge/element.js"
147147- title: "Output / Bytes / Automerge"
148148- desc: "Translate data to and from an Automerge CRDT."
149149- todo: true
150150- - url: "components/transformer/output/bytes/dasl-sync/element.js"
151151- title: "Output / Bytes / DASL Sync"
152152- desc: "Syncs data between local and remote using CID-based diffing and performs union merges with tombstone tracking when both sides have diverged."
153153- - url: "components/transformer/output/bytes/json/element.js"
154154- title: "Output / Bytes / JSON"
155155- desc: "Raw data schema output to and from JSON Uint8Array."
156156- - url: "components/transformer/output/raw/atproto-sync/element.js"
157157- title: "Output / Raw / AT Protocol Sync"
158158- desc: "Wraps an AT Protocol output with a local IndexedDB cache. Uses the repo revision to skip unnecessary fetches and performs union merges with tombstone tracking when both local and remote have diverged."
159159- - url: "components/transformer/output/refiner/default/element.js"
160160- title: "Output / Refiner / Default"
161161- desc: "Removes output state that is not meant to be saved to storage, such as ephemeral tracks. Ideally part of every theme."
162162- - url: "components/transformer/output/refiner/initial-contents/element.js"
163163- title: "Output / Refiner / Initial Contents"
164164- desc: "Sets the initial contents for an output on first load."
165165- - url: "components/transformer/output/refiner/passkey-encryption/element.js"
166166- title: "Output / Refiner / Track URI Passkey"
167167- desc: "Encrypts track URIs using a passkey-derived PRF key. On read, decrypts encrypted:// URIs transparently; on write, re-encrypts all URIs before passing downstream."
168168- - url: "components/transformer/output/string/json/element.js"
169169- title: "Output / String / JSON"
170170- desc: "Raw data schema output to and from JSON UTF8 string."
171171-172172-definitions:
173173- - title: "Output / Collaboration"
174174- desc: "Represents a collaboration between multiple collaborators on a subject, such as a playlist."
175175- url: "definitions/output/collaboration.json"
176176- - title: "Output / Facet"
177177- desc: "Facet pointer or HTML snippet."
178178- url: "definitions/output/facet.json"
179179- - title: "Output / Playlist Item"
180180- desc: "Represents a single item in a playlist. Tracks are matched based on the given criteria. A playlist is formed by grouping items by their playlist property."
181181- url: "definitions/output/playlistItem.json"
182182- - title: "Output / Progress"
183183- desc: "Used to track progress of (long) audio playback."
184184- todo: true
185185- - title: "Output / Track"
186186- desc: "Represents audio that can be played, or a placeholder for a source of tracks. Contains a URI that will resolve to the audio."
187187- url: "definitions/output/track.json"
188188- - title: "Output / Track Bundle"
189189- desc: "A bundle of tracks."
190190- url: "definitions/output/trackBundle.json"