A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: show mediainfo.js errors as warnings in browser console

+4 -1
+4 -1
src/Javascript/processing.ts
··· 87 87 88 88 const miResult = await (await mediaInfoClient(covers)) 89 89 .analyzeData(getSize(headUrl), readChunk(getUrl)) 90 - .catch((_) => null); 90 + .catch(err => { 91 + console.warn(err) 92 + return null 93 + }); 91 94 92 95 const miTags = miResult && pickTagsFromMediaInfo(filename, miResult); 93 96 if (miTags) return miTags;