Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Batch editing MP3 files (Read 10565 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Batch editing MP3 files

I need to chop off the first few seconds of over 100 MP3 files. How can I do this quickly (batch edit ) with (preferably) freeware? I have Audacity, and also Nero's packaged audio editor.

Thx for an info you can provide!

Batch editing MP3 files

Reply #1
I need to chop off the first few seconds of over 100 MP3 files. How can I do this quickly (batch edit ) with (preferably) freeware? I have Audacity, and also Nero's packaged audio editor.

Thx for an info you can provide!



I saw this application mpTrim, might just do the trick you're looking for.

mpTrim

Batch editing MP3 files

Reply #2
I saw this application mpTrim, might just do the trick you're looking for.
mpTrim

Thx for your reply. The version of this program that will do what I want costs $70.00 (USD). A bit beyond what I want to pay.

Batch editing MP3 files

Reply #3
I don't use Audacity, so I don't know if it will do exactly what you want, but it does have batch processing capability.

You might want to consider a special-purpose MP3 editor that can directly (losslessly) edit MP3s.  As you may already know, most audio editors have to decode the MP3 before editing and re-encode it before saving.  This takes time and it can affect audio quality.  A couple of lossless MP3 editors that I know of are mp3DirectCut (FREE!!!) and MP3 Surgeon ($30 USD).  MP3 Surgeon also has a "batch mode".  (I've never used either of these programs... I'm just aware of them...)

Batch editing MP3 files

Reply #4
I don't use Audacity, so I don't know if it will do exactly what you want, but it does have batch processing capability.

You might want to consider a special-purpose MP3 editor that can directly (losslessly) edit MP3s.  As you may already know, most audio editors have to decode the MP3 before editing and re-encode it before saving.  This takes time and it can affect audio quality.  A couple of lossless MP3 editors that I know of are mp3DirectCut (FREE!!!) and MP3 Surgeon ($30 USD).  MP3 Surgeon also has a "batch mode".  (I've never used either of these programs... I'm just aware of them...)

Thx for your reply.
Didn't know about the Audacity Batch Preferences mode. Alas, it doesn't seem to have Batch Edit.
mp3DirectCut looks promising and I've contacted its developer to investigate options.

(BTW: The purpose of my batch-editing needs is to remove ubiquitous intros /endings to podcasts -- like a TV commercial skip)

 

Batch editing MP3 files

Reply #6
(BTW: The purpose of my batch-editing needs is to remove ubiquitous intros /endings to podcasts -- like a TV commercial skip)

Have you been able to find a batch editor you were looking for?

Save this as mp3split.cmd, and to crop first 5 sec run: mp3split.cmd 00:05:00 path-to-mp3s/*.mp3
Code: [Select]
for %%f in (%2) do (
    echo FILE "%%~f" MP3> sheet.cue
    echo TRACK 01 AUDIO>>sheet.cue
    echo INDEX 01 00:00:00>>sheet.cue
    echo TRACK 02 AUDIO>>sheet.cue
    echo INDEX 01 %1>>sheet.cue
    mp3directcut.exe sheet.cue /split
)
del sheet.cue


/edit: Its easier to do Cut from the gui, under batch processing menu.