diff --git a/src/metadata.ts b/src/metadata.ts index dc1d166..2aa8feb 100644 --- a/src/metadata.ts +++ b/src/metadata.ts @@ -19,6 +19,7 @@ * - For WAVE files, the metadata refers to the chunks within the RIFF INFO chunk. * - For ADTS files, there is no metadata. * - For FLAC files, the metadata lives in Vorbis style in the Vorbis comment block. + * - For MPEG-TS files, metadata tags are currently not supported. * * @group Metadata tags * @public @@ -74,6 +75,7 @@ export type MetadataTags = { * - WAVE: The individual metadata chunks within the RIFF INFO chunk. Values are always ISO 8859-1 strings. * - FLAC: The key-value string pairs from the vorbis metadata block (see RFC 9639, Section D.2.3). * Additionally, the `'vendor'` key refers to the vendor string within this header. + * - MPEG-TS: Not supported. */ raw?: Record; }; diff --git a/src/mpeg-ts/mpeg-ts-demuxer.ts b/src/mpeg-ts/mpeg-ts-demuxer.ts index f929ad8..a08cd17 100644 --- a/src/mpeg-ts/mpeg-ts-demuxer.ts +++ b/src/mpeg-ts/mpeg-ts-demuxer.ts @@ -353,7 +353,7 @@ export class MpegTsDemuxer extends Demuxer { } async getMetadataTags(): Promise { - return {}; // TODO + return {}; // Nothing for now } async computeDuration() {