library and untagged musics
#16
let me know how that goes - and what difficulties you come across - (if any)
I think i'll stick to the nominal way of doing things for now
Check out my Fanart.tv stuff!
...........I also accept disc requests if image not on fanart.tv database !!!!
Reply
#17
As I said, I have no knowledge to CPP so I need to learn it.

for Now, I will try to replace :
Code:
// We need at least the title
    if (song.strTitle.IsEmpty())
      return -1;

with
Code:
// We need at least the title
    if (song.strTitle.IsEmpty())
      song.strTitle = strFileName;
      //return -1;

The goal is to only get the title matching the filename for now. don't care if there is track number or artist inside.
just to see if it is added into the library.

other stuff will come later.
Reply
#18
There's a filter that pulls information from the filename for listing in files mode IIRC. Try taking a nosy through LabelFormatter.cpp or similar.
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


Image
Reply
#19
not a bad idea, thanks.
Reply

Logout Mark Read Team Forum Stats Members Help
library and untagged musics0