From cd8a85975c3d668241bee1561bb80494ca641a76 Mon Sep 17 00:00:00 2001 From: n1073645 Date: Thu, 2 Apr 2020 15:59:58 +0100 Subject: [PATCH] Info and description --- src/core/operations/ExtractID3.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/operations/ExtractID3.mjs b/src/core/operations/ExtractID3.mjs index 8b948931..c71a387e 100644 --- a/src/core/operations/ExtractID3.mjs +++ b/src/core/operations/ExtractID3.mjs @@ -20,8 +20,8 @@ class ExtractID3 extends Operation { this.name = "Extract ID3"; this.module = "Default"; - this.description = ""; - this.infoURL = ""; + this.description = "ID3 is a metadata container most often used in conjunction with the MP3 audio file format. It allows information such as the title, artist, album, track number, and other information about the file to be stored in the file itself."; + this.infoURL = "https://wikipedia.org/wiki/ID3"; this.inputType = "ArrayBuffer"; this.outputType = "string"; this.args = [];