Main Restorations Software Audio/Jukebox/MP3 Everything Else Buy/Sell/Trade
Project Announcements Monitor/Video GroovyMAME Merit/JVL Touchscreen Meet Up Retail Vendors
Driving & Racing Woodworking Software Support Forums Consoles Project Arcade Reviews
Automated Projects Artwork Frontend Support Forums Pinball Forum Discussion Old Boards
Raspberry Pi & Dev Board controls.dat Linux Miscellaneous Arcade Wiki Discussion Old Archives
Lightguns Arcade1Up Try the site in https mode Site News

Unread posts | New Replies | Recent posts | Rules | Chatroom | Wiki | File Repository | RSS | Submit news

  

Author Topic: Command line tool to recursively search drive for music?  (Read 1216 times)

0 Members and 1 Guest are viewing this topic.

Dannymh

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 73
  • Last login:December 23, 2011, 05:09:54 pm
Command line tool to recursively search drive for music?
« on: February 01, 2011, 01:04:44 am »
Hi,

I am building a web-based jukebox for my home jukebox. Whilst I can use the iTunes library.xml to grab basically what I need.

I would prefer to use another tool to do the file searching and include them into my application.

I am just wondering whether there is a dos script or command line tool out there that I can use to recursively search a given drive or directory for all MP3 files and gather the information of song name, artist, album etc and then place them either in a CSV, XML or into a database.

Does anyone know of any free tools that will do this?

cheers
Dan

GadgetGeek

  • Trade Count: (+1)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 414
  • Last login:July 09, 2024, 09:32:57 am
  • whatever
Re: Command line tool to recursively search drive for music?
« Reply #1 on: February 04, 2011, 08:52:12 pm »
dir *.mp3 /b /r > musiclist.dat

look for all mp3 files
/b is bare format
/r is recurse
> musiclist.dat means send the output to the file musiclist.dat

Or I put together an excel spreadsheet a while back that does that as well.
Here is that post