Page 2 of 13 FirstFirst 123456789101112 ... LastLast
Results 11 to 20 of 130

Thread: Browse-By-Cover....it's here!

  1. #11
    Low Bitrate farolfo's Avatar
    Join Date
    Apr 2004
    Posts
    69
    Do you realese source code when software will be complete ?

  2. #12
    Super Moderator
    Auto Apps:loading...
    JohnWPB's Avatar
    Join Date
    Sep 2005
    Location
    West Palm Beach, Florida
    Posts
    4,676
    Blog Entries
    1
    Hahaha in line with my last post, I got an email from Nathan:

    "What do you require permission for? The source?"
    I think he was confused about why we would be asking to use his source to create a flash applet hahha

    Quote Originally Posted by farolfo View Post
    Do you realese source code when software will be complete ?
    No. Per the disclaimer on the site, it allows to download, alter the source, and create an application with it, but NOT to then re-distribute that source code without the authors (Nathan's) permission. This is simply to keep someone from altering it, and re-distributing it as their own work, and is totally understandable.

    When it is completed juve021 can always send a copy to Nathan, and he could possibly give his permission to share the altered source, but that is entirely up to him.
    Front End of Choice: Ride Runner (Is there anything else??? ) & Powered by the DFX5.1 Skin Available in the Mobile App Mart

    My Fiero Build Thread

  3. #13
    Variable Bitrate
    Join Date
    Nov 2004
    Posts
    242
    Thanks for your patience all. File is ready to DL, see post #1

  4. #14
    FLAC
    Join Date
    Jun 2002
    Location
    Virginia
    Posts
    1,784
    Thanks for your work on this, Juve.

    Am I correct that a separate playlist file (m3u) must be made for each album in order for this to work? With many of us having 1,000+ albums, this could be prohibitive.

  5. #15
    Variable Bitrate
    Join Date
    Nov 2004
    Posts
    242
    Quote Originally Posted by kbreeden View Post
    Thanks for your work on this, Juve.

    Am I correct that a separate playlist file (m3u) must be made for each album in order for this to work? With many of us having 1,000+ albums, this could be prohibitive.
    Yes right now it looks for a playlist file in each album folder. Each playlist file must be named with the same name.

    I know, it really is a pain. My VB program, included in the zip file for download, generates these playlist files for you already though! Maybe I can just make a standalone app, without any of the XML stuff, to solely generate the playlist file, would that help?

  6. #16
    Mo' Programming Mo' Problems
    Auto Apps:loading...
    Sonicxtacy02's Avatar
    Join Date
    Sep 2004
    Location
    Woodbridge, VA
    Posts
    8,053
    Blog Entries
    41
    hmm i'm gettin a runtime error 429 using the builder tool

    EDIT: Nevermind didnt register the dll first

    EDIT AGAIN: For some reason the builder is cutting off the first letter of every <trackname> listing. Also is it not possible to add subdirectories?
    NOVA, MD, DC Monthly Meets Here
    Ride Runner and Centrafuse 3 plugin creator
    mp3Car.com Senior Tech Blogger (Want a product reviewed? Contact me.)
    Find my plugins on the MP3Car App Store!
    Follow Me on Twitter or Facebook
    Live mp3Car Facebook Chat

  7. #17
    Variable Bitrate
    Join Date
    Nov 2004
    Posts
    242
    Quote Originally Posted by Sonicxtacy02 View Post
    hmm i'm gettin a runtime error 429 using the builder tool

    EDIT: Nevermind didnt register the dll first

    EDIT AGAIN: For some reason the builder is cutting off the first letter of every <trackname> listing. Also is it not possible to add subdirectories?
    Whats your music structure look like?

    Can you post a snippet of the xml file?

    I suspect the cutting off has something to do with the subdirectories. I haven't figured out how to deal with subdirectories yet like (c:\music\Notorious BIG - Life After Death\CD1 and ...\CD2). How do people have music organized in this situation?

  8. #18
    Super Moderator
    Auto Apps:loading...
    JohnWPB's Avatar
    Join Date
    Sep 2005
    Location
    West Palm Beach, Florida
    Posts
    4,676
    Blog Entries
    1
    Quote Originally Posted by juve021 View Post
    Thanks for your patience all. File is ready to DL, see post #1
    Kewl! Fantastic work!

    I am however, going to have to create a script that will work with more of the majority of users file structures. From what I have seen, in most, but not all cases, music is structured like this: (And the way that most rippers I have seen create the structure)

    \Mp3\
    ------\Blue Man Group\
    ------------------------\Audio album
    -----------------------------\Song 1.mp3
    -----------------------------\Song 2.mp3
    -----------------------------\Song 2.mp3
    -------------------------\The Complex
    -----------------------------\Song 1.mp3
    -----------------------------\Song 2.mp3
    -----------------------------\Song 2.mp3

    With the folder structure you described in the readme.txt, if an artist has 18 Albums, they are going to be listed 18 times in the Root Folder, and that would make it a real hassle when scrolling through a normal directory list looking for something.

    I just checked my collection and have 541 Artists/folders in the Root MP3 folder, its a chore already scrolling down the list. Now if I put each and every album in the root folder, I would have 1429 Folders in the Root MP3 folder! Now THAT whould be hard to scroll through heheh

    This is going to be a really tricky script to write, as I will try to make it work with any folder structure. I have some code I wrote for the media copier in my skin, that checks to see if the item in the directory list it pulls is a folder or a file. If its a folder, the script can recurse a level deeper and check each folder in there and so forth. The more I think of it the more complex it is going to have to be!

    EDIT: Active board this morning, 4 posts made while I was writing this one!

    The easiest way to check for sub directories with a script, is to get a dir of each and every file/folder into a text file and work from that. When that text file is created, go line by line with the script and do a right$ of the line getting the last 4 characters, and then check to see of the first one is a . (period). If so, then this is an extension, and not a folder. This works for any files and folders. Sure you could just compare the last 3 to "mp3" or "m3u" but that could let jpg's, png's, .ico, .txt files slip through the cracks. I guess you could also do an InString and look for a period anywhere in the line, as I personally am not aware of many folder names with a "." in the name, other than the windows temp stuff and all.
    Front End of Choice: Ride Runner (Is there anything else??? ) & Powered by the DFX5.1 Skin Available in the Mobile App Mart

    My Fiero Build Thread

  9. #19
    Variable Bitrate
    Join Date
    Nov 2004
    Posts
    242
    Quote Originally Posted by JohnWPB View Post
    Kewl! Fantastic work!

    I am however, going to have to create a script that will work with more of the majority of users file structures. From what I have seen, in most, but not all cases, music is structured like this: (And the way that most rippers I have seen create the structure)

    \Mp3\
    ------\Blue Man Group\
    ------------------------\Audio album
    -----------------------------\Song 1.mp3
    -----------------------------\Song 2.mp3
    -----------------------------\Song 2.mp3
    -------------------------\The Complex
    -----------------------------\Song 1.mp3
    -----------------------------\Song 2.mp3
    -----------------------------\Song 2.mp3

    With the folder structure you described in the readme.txt, if an artist has 18 Albums, they are going to be listed 18 times in the Root Folder, and that would make it a real hassle when scrolling through a normal directory list looking for something.

    I just checked my collection and have 541 Artists/folders in the Root MP3 folder, its a chore already scrolling down the list. Now if I put each and every album in the root folder, I would have 1429 Folders in the Root MP3 folder! Now THAT whould be hard to scroll through heheh

    This is going to be a really tricky script to write, as I will try to make it work with any folder structure. I have some code I wrote for the media copier in my skin, that checks to see if the item in the directory list it pulls is a folder or a file. If its a folder, the script can recurse a level deeper and check each folder in there and so forth. The more I think of it the more complex it is going to have to be!
    Great news! Yeah that was my problem, the more I thought about the music structure the crazier I was becoming!
    If you could write a great script that would cover the majority of peoples files, that would awesome and I think I might even have to convert my collection into that format! It makes more sense your way.

    Either way however, it will probably be a chore to go through the album covers if you have the amount of music you do!

  10. #20
    Mo' Programming Mo' Problems
    Auto Apps:loading...
    Sonicxtacy02's Avatar
    Join Date
    Sep 2004
    Location
    Woodbridge, VA
    Posts
    8,053
    Blog Entries
    41
    my structure is the same..a nd it seems it would be easy to create a better "builder" script that essentially searched every folder in your music directory.. if the folder contains .mp3's.. an .m3u would be created in that folder and the folder would be deemed a "album". If the folder did not contain mp3's it would be considered a plain directory. Doing it this way could pretty much ignore the actual structure needed. Changes to the source would also need to be done for subdirectories. If a album folder clicking the album would load it into winamp, but clicking a non-music directory would simply enter that directory so you can see its subdirectories.

    Here's my xml file. I have no idea why its cuttin off first letters.

    Code:
    <artworkinfo>
        <albuminfo>
            <artLocation>cdimage.jpg</artLocation>
            <trackName>enny Williams</trackName>
            <artist />
        </albuminfo>
        <albuminfo>
            <artLocation>cdimage.jpg</artLocation>
            <trackName>tar Wars EPIII OST</trackName>
            <artist />
        </albuminfo>
        <albuminfo>
            <artLocation>cdimage.jpg</artLocation>
            <trackName>iller Kuts from Core</trackName>
            <artist />
        </albuminfo>
    other than that good stuff the swf takes ALOT of CPU cycles.. even on my amd 2800. Something's gotta be done about that.
    NOVA, MD, DC Monthly Meets Here
    Ride Runner and Centrafuse 3 plugin creator
    mp3Car.com Senior Tech Blogger (Want a product reviewed? Contact me.)
    Find my plugins on the MP3Car App Store!
    Follow Me on Twitter or Facebook
    Live mp3Car Facebook Chat

Similar Threads

  1. Need Help With Damaged Bumper Cover
    By Hoshwa in forum Newbie
    Replies: 1
    Last Post: 11-29-2007, 02:40 PM
  2. Tonneau Cover for my truck
    By ford master in forum Off Topic
    Replies: 0
    Last Post: 11-05-2006, 06:56 PM
  3. RR 03-09-05 .. Multiple Browse ..
    By guino in forum Road Runner
    Replies: 25
    Last Post: 04-18-2005, 12:22 PM
  4. Replies: 0
    Last Post: 03-24-2005, 12:17 PM
  5. Best way to make a 'flip up' monitor?
    By GReeToZ in forum Fabrication
    Replies: 34
    Last Post: 01-21-2005, 05:48 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •