Digital Juice Sound Effects Library File Renamer

digital_juice_by_tappy

What’s this for??

I have some Digital Juice SFX library DVD files from circa 2006 or some such. The DVDs contained tons of small WAV and MP3 files of sound effects, foley and music. They’re meant to be accessed with Digital Juice’s Juicer app, which contains all the metadata. I lost the DVDs a while ago, but had already copied them to my file server.

The problem is that I don’t want to use the Juicer app. I have a bunch of other sound libraries, and want to be able to search them all at once. Unfortunately the sound files on the DVDs are all named generically, such as 00293_SFX.wav, which is pretty useless.

My savior

I did a quick search for a solution, and came up with this StackExchange post wherein LiquidBlasted posted a series of Excel files that he’d generated by screen scraping the Juicer app.

Even though he somewhat automated that process, it sounds like a heck of a lot of work. So he gets all the credit here for the hard part being done.

The Utility

I coded up a utility in C# that will read CSV files generated from LiquidBlasted’s Excel files and then iterate through all of the Digital Juice SFX library directories on my computer, renaming the files to include the track names from the CSV.

The net result is that it turns a file name like 01984_SFX.wav (useless) to a file named Caulk Gun Tension Rod Pulled Back_01984_SFX.wav (useful)! Without further ado, here are a couple of download links:

File Size Description
DigitalJuiceRenamer_src.zip 64 KB Source code and executable.
DigitalJuiceRenamer_bin.zip 30 KB Executable and LumenWorks CSV library.

How do I use it?

  1. Download the zip file containing the executable.
  2. Unzip the files into a new directory. ( e.g. C:\temp\DigitalJuiceRenamer\ )
  3. Read the README.txt file. (If you’re using the source files, then the readme contents are at the top of Program.cs.) It has important info of which you should be aware, lest you hose your whole library!
  4. When ready, run the program from the command line using this syntax: DigitalJuiceRenamer.exe [CSV File] [Top Level Directory of SFX Library]
  5. IT WILL NOT ASK YOU TO CONFIRM OR ANYTHING. IT WILL IMMEDIATELY START RENAMING FILES! Please read the readme.

Note: If there are spaces in either of your file paths, enclose the paths in double quotes (like in the sample below).

If it runs successfully, you should have something like this:

DigitalJuiceRenamer.exe e:\temp\DigitalJuiceTracks.csv “\\fsrv01\Audio\Sound Effects\Digital Juice Sound FX Library DVD – Part 01-10″
Reading CSV File… DONE! (Stored 11593 out of 11593 records.)
Getting files… DONE! (Got 23201 files.)
Renaming files… DONE! (Success: 23201, Failed: 0).
FINISHED with 23201 files renamed out of 23201 files total, and 11593 CSV records total.

If it fails to rename any files (e.g. if they’re in use) you’ll get an error message and the program will continue.

So long as the number of files it “got” is equal to the number of files renamed, you’re good to go!

The actual renaming part may take a while. It took about 3 minutes for my library, but that was on a network share. On a local disk it should be much faster.

"I use a Mac"

Sorry, I coded this up in Visual Studio and the executable will only run on Windows.

However, you can feel free to recompile the source using Mono or the new .NET 2015 for Mac (and Linux) from Microsoft (or the .NET foundation… whatever).

About Scott

I'm a computer guy with a new house and a love of DIY projects. I like ranting, and long drives on your lawn. I don't post everything I do, but when I do, I post it here. Maybe.
Bookmark the permalink.

8 Comments

  1. Howdy. I happened on your utility and thought it was a terrific idea – but I’m running into an implementation issue. I grabbed all of LiquidBlasted’s xls files and they don’t seem to be complete. For instance, looking through my SFX-III collection I see that the filenames in (for instance) the General/Ambience category run from 27317_SFX through 27456_SFX. The spreadsheet for SFX-II leaves off at 27316_SFX, but the one for SFX-III looks like it starts with 36349_SFX (and the header seems to confirm that by saying this is “III disc 09″). Did you find a more complete set of xls files somewhere that include the entire collection, or were you just able to rename a subset of your stuff based on a partial list?

  2. Hey Scott – I solved the problem completely. I downloaded a freeware SQLite application and found the actual database entries for the sound effects library in the Juicer spdatabase, exported them and massaged the resulting CSV file into your format. The one file contains all four volumes of data. I just used it and your program to rename all my remaining files. Want a copy to post with your app? Let me know and you’re welcome to it.

    • Hey Pete,

      Sorry that I didn’t get back to you yesterday — I’ve been lax in my moderation duties. But that’s fantastic about getting it right from their SQLite database. It seems I was lazy and just went right for Googling it. I could’ve sworn those XLS files were complete, though. I’d love to post your files here, hopefully making it easier for some other poor soul. I’ll give you proper credit when I update the post, naturally. (I’m assuming your full name is OK since you used it in the comments?) Thanks!

  3. Dear Scott!

    Amazing work! :) I wonder if you ever get Pete Gould’s csv files?

    Thanks
    Levente

  4. Hello Scott
    What I also try, in the Dos Shell stands always the following:

    P:\>DigitalJuiceRenamer.exe p:\fx\tracks1.csv “p:\SFX”
    Reading CSV File… DONE! (Stored 0 of 11569 records.)
    Getting files…DONE! (Got 11569 files.)
    Renaming files…
    DONE! (Success: 0, Failed: 0.)
    FINISHED with 0 files renamed out of 11569 files total, and 11569 CSV records to
    tal.

    What am I doing wrong

    Thanks

  5. Hi Scott, excellent idea, thanks for the programming. I´m trying to use the file but it is not working. I get the following info:

    Reading CSV File… DONE! (Stored 0 of 49506 records.)
    Getting files…DONE! (Got 55 files.)
    Renaming files…
    DONE! (Success: 0, Failed: 0.)
    FINISHED with 0 files renamed out of 55 files total, and 49506 CSV records total.

    It seems to me that the CSV is the problems, but the CSV file that I am using seems to be alright (the files I´m trying to rename are in the CSV). I tried using the file names with and without the wav extension. Do you have any idea what could be happening?

    Thanks!!

    CSV file:

    Col1;Col2;Col3;File Name;Col 5;Col 6;Track Name
    ;;;00001_SFX.wav;;;Ambience Air Conditioner Hotel Room
    ;;;00002_SFX.wav;;;Ambience Airplane Interior
    ;;;00003_SFX.wav;;;Ambience Airport
    ;;;00004_SFX.wav;;;Ambience Airport Runway Work Crews Trucks
    ;;;00005_SFX.wav;;;Ambience Alley City
    ;;;00006_SFX.wav;;;Ambience Animal Tent At Fair
    ;;;00007_SFX.wav;;;Ambience Arcade

Leave a Reply to Tomas Cancel reply