Posts: 2
Joined: Oct 2010
Reputation:
0
2014-08-04, 05:27
(This post was last modified: 2014-08-04, 05:40 by fikhl.)
Hello fellow XBMC/Kodi users!
I've been using the excellent MediaCompanion to get all the related infos for my movies and TV shows for local scraping in XBMC, and it's been great... way better and faster than net scraping.
Now I'm wondering if there's a similar application/process for music files. I mean .nfos, thumbs and banners for artists, albums, music videos, music concerts, etc.
My music collection is well organized -- metadata, artworks, everything in a clean and flat folder structure. All I need is the artists and albums infos.
Thanks.
Posts: 1,617
Joined: May 2014
Reputation:
130
2014-08-04, 15:57
(This post was last modified: 2014-08-04, 15:59 by Mike_Doc.)
There is nothing, I've been looking for a while as I'm heavily looking at improving the music side of xbmc. I've recently messaged wanilton and he said it is still being worked on but it seems it will probably never happen after this long already. It is a shame as a music version of ember would be brilliant.
There is supposed to be a music manager, something called mycollections, but I've stayed away from it as the download package is apparently full of malware so I can't say it this application would help or not. I'm not willing to install and it seems there is no way to get a clean .zip etc. for installation?
On a side note, I've found a way to get mp3tag to produce both artist and album nfos. This is in the early stages but if you use mp3tag then I can let you know what to do to try building your own .nfos or at least have something which builds a nfo framework to work with in improving your music library.
Posts: 5,481
Joined: Jul 2012
Reputation:
384
Agree. Mycollections is full of crapware.
I gave up on mp3tag for nfos, because I could find no way to create a separate nfo for each artist/album/musicvideo. Had to do it one at a time which is a non-starter. It might be possible instead to create a single xml file (with all albums and artists or musicvideos) with mp3tag that could be imported but I haven't pursued that.
scott s.
.
Posts: 1,617
Joined: May 2014
Reputation:
130
Scott, my album.mte for mp3tag is recursive i.e. if you open all albums for one artist then it will create an album.nfo in each folder within the artist. I don't know what it will do for musicvideo but perhaps you can look at changing a few things in the following mte
$filename(%_folderpath%album.nfo,utf-8)<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
$loop(%_filename_ext%,1)$puts(avgtime,$add($get(avgtime),%_length_seconds%))$puts(avgbitrate,$add($get(avgbitrate),%_bitrate%))$loopend()$loop(%album%)<album>
<title>%album%</title>
<artist>%artist%</artist>
<albumartist>%albumartist%</albumartist>
<genre>%genre%</genre>
<style>%genre%</style>
<mood>%mood%</mood>
<review></review>
<type>%mediatype%</type>
<releasedate>%year%</releasedate>
<label>%publisher%</label>
<copyright>%copyright%</copyright>
<thumb></thumb>
<path>%_folderpath%</path>
<rating></rating>
<year>%year%</year>$loop(%_filename_ext%)
<track>
<title>%title%</title>
<position>%track%</position>
<duration>%_length%</duration>
<comment>%comment%</comment>
</track>$loopend()
</album>$loopend()
LEDfan takes the credit for this .mte, I only applied the small change to make it be able to do all albums for an artist. See if it can help building .nfos for music videos. If you need help in how to use it just let me know.