No metadata for now

This commit is contained in:
Vanilagy
2026-01-15 16:44:22 +01:00
parent 54dfa75a7e
commit dc25b5d7c5
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -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<string, string | Uint8Array | RichImageData | AttachedFile | null>;
};
+1 -1
View File
@@ -353,7 +353,7 @@ export class MpegTsDemuxer extends Demuxer {
}
async getMetadataTags(): Promise<MetadataTags> {
return {}; // TODO
return {}; // Nothing for now
}
async computeDuration() {