Help - Batch Script to Fix Mp3s

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
xxkmanxx
Posts: 2
Joined: 28 Sep 2009 14:44

Help - Batch Script to Fix Mp3s

#1 Post by xxkmanxx » 28 Sep 2009 14:47

Im running windows xp. I need help to create a batch script to run this command line program on all the mp3s in my Music Folder. Its repairs the header of each mp3. Its called mp3val.

Usage:
mp3val.exe <files to validate> [arguments]

Arguments:
-f try to fix errors
-l<file name> write log to the specified file (default: stdout)
-si suppress INFO messages
-nb delete .bak files (suitable with -f)
-t keep file timestamps (suitable with -f)
-p pipe mode (receive input file names from stdin)
-v print version number and exit

I want to run this on all the mp3s in my mp3 folder, all directories and sub directories. Also id like to create a single log and append to it each time. If anyone can help me out. That would be great.

Thanks

xxkmanxx
Posts: 2
Joined: 28 Sep 2009 14:44

#2 Post by xxkmanxx » 23 Oct 2009 16:04

can anyone help me out?

ghostmachine4
Posts: 319
Joined: 12 May 2006 01:13

#3 Post by ghostmachine4 » 23 Oct 2009 20:25

if you check the forum threads, you can find similar posts of such genre. A for loop going over dir /s *mp3 and then inside the for loop, execute your command.

Post Reply