/** * Copyright (c) Double Symmetry GmbH * Commercial use requires a license. See https://rntp.dev/pricing */ /** * Fired for every metadata frame the audio stream pushes — ICY blocks * (Shoutcast/Icecast radio), ID3 tags, Vorbis comments, QuickTime metadata. * The payload reflects *stream-derived* fields only; user-supplied fields on * the queued MediaItem (e.g. a static `genre` or `albumTitle`) are not * merged in here. * * For the effective merged view that `getActiveMediaItem` returns (and that * the lock screen / system Now Playing info reflects), subscribe to * {@link MediaMetadataChangedEvent} instead. * * Typical consumers: analytics / scrobbling, sanitization pipelines that * filter the raw stream before calling {@link updateMetadata} themselves * (use with `PlayerConfig.autoUpdateMetadataFromStream: false`). */ export interface MetadataReceivedEvent { title?: string; artist?: string; albumTitle?: string; artworkUrl?: string; genre?: string; } //# sourceMappingURL=MetadataReceived.d.ts.map