This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Helper to access first element of an array if it exists | |
function get(item, fallback) { | |
return (item && item[0]) || fallback; | |
} | |
// Custom audio import script | |
function addAudioCustom(obj) { | |
var title = get(obj.metaData[M_TITLE], obj.title); | |
var artist = get(obj.metaData[M_ARTIST], "Unknown"); | |
var album = get(obj.metaData[M_ALBUM], "Unknown"); |