JS FLACMetadataEditor

Allows you to edit metadata of FLAC files. CO

Verzia zo dňa 13.04.2018. Pozri najnovšiu verziu.

Tento skript by nemal byť nainštalovaný priamo. Je to knižnica pre ďalšie skripty, ktorú by mali používať cez meta príkaz // @require https://update.greatest.deepsurf.us/scripts/40545/264982/JS%20FLACMetadataEditor.js

Autor
AHOHNMYC
Verzia
0.0.2
Vytvorené
12.04.2018
Aktualizované
13.04.2018
Veľkosť
18,0 KB
Licencia
GPL-3.0-or-later

Usage:

// # Creating editor instance:
let editor = new FLACMetadataEditor(ArrayBuffer);

// # Editing tags:
// List with standard field names: https://xiph.org/vorbis/doc/v-comment
editor.addComment('ARTIST=Laibach');
editor.addComment('ARTIST', 'Laibach');

// All properties are facultative except "data"
// Default values (except "data", of course) presented in example:
writer.addPicture({
    APICtype: 3,
    MIMEType: 'image/jpeg',
    colorDepth: 0,
    colorNumber: 0,
    data: ImageDataAsArrayBuffer,
    description: '',
    width: 0,
    height: 0
});

// remove single atrist
editor.removeComment('ARTIST', 'Laibach');
// remove all atrists
editor.removeComment('ARTIST');
// remove ALL comments
editor.removeComment();

// # Writing changes
editor.serializeMetadata();

// # Convert result to blob
let resultArrayBuffer = editor.arrayBuffer;
let blob = new Blob([resultArrayBuffer], {type: 'audio/flac'});
let url = URL.createObjectURL(blob);

What else?

Editable full FLAC metadata except CUESHEET

May be accessed through editor.metadata Do console.log(editor) to explore it. Structures have self-descriptive names.

Chains

As all public functions return this, we are able to create trains. e.g. this new FLACMetadataEditor(ArrayBuffer).removeComment().addComment('TITLE','The Whistleblowers').serializeMetadata().arrayBuffer; returns changed ArrayBuffer with only one comment — TITLE=The Whistleblowers

TODO:

More debug output METADATA_BLOCK_CUESHEET parsing