Mute a Large Amount of MP3 Files

I am doing a project and I need to mute about 50 mp3 files, and I don't want to do it one by one. Any ideas on a program that will do this for me?

Comments

  • Uses Wavepad by NCH, It might help

  • In other words, you need ~50 mp3 of a given length with silence?

    For this I would suggest sox and ffmpeg. sox creates what you want, ffmpeg converts to any format.

  • Cool Edit Pro allows for batch processing. Or if you just need a bunch of blank mp3 files, you might be able to just create one blank file and then use the command prompt to generate a bunch of copies of that file, like so:

    for /l %A in (1,1,50) do copy "C:\some folder\file.mp3" "C:\some folder\file-%A.mp3"

Sign In or Register to comment.