web/src/decrypt/util.js

52 lines
1.5 KiB
JavaScript
Raw Normal View History

export const AudioMimeType = {
mp3: "audio/mpeg",
flac: "audio/flac",
m4a: "audio/mp4",
ogg: "audio/ogg"
};
export const FLAC_HEADER = [0x66, 0x4C, 0x61, 0x43, 0x00];
2020-01-21 11:03:41 +00:00
// Also a new draft API: blob.arrayBuffer()
export async function GetArrayBuffer(blobObject) {
2020-01-21 11:03:41 +00:00
return await new Promise(resolve => {
const reader = new FileReader();
reader.onload = (e) => {
resolve(e.target.result);
};
reader.readAsArrayBuffer(blobObject);
});
}
export function GetFileInfo(artist, title, filenameNoExt) {
2020-01-21 11:03:41 +00:00
let newArtist = "", newTitle = "";
let filenameArray = filenameNoExt.split("-");
if (filenameArray.length > 1) {
newArtist = filenameArray[0].trim();
newTitle = filenameArray[1].trim();
} else if (filenameArray.length === 1) {
newTitle = filenameArray[0].trim();
}
if (typeof artist == "string" && artist !== "") newArtist = artist;
if (typeof title == "string" && title !== "") newTitle = title;
2020-02-06 08:18:40 +00:00
return {artist: newArtist, title: newTitle};
2020-01-21 11:03:41 +00:00
}
/**
* @return {string}
*/
export function GetCoverURL(metadata) {
2020-01-21 11:03:41 +00:00
let pic_url = "";
if (metadata.common.picture !== undefined && metadata.common.picture.length > 0) {
let pic = new Blob([metadata.common.picture[0].data], {type: metadata.common.picture[0].format});
pic_url = URL.createObjectURL(pic);
}
return pic_url;
2020-02-06 08:18:40 +00:00
}
export function IsBytesEqual(first, second) {
return first.every((val, idx) => {
return val === second[idx];
})
}