Edit out intro

Windows 10 Home - Audacity 3.0.5

Hello,

I need to edit out the first 10 seconds of 70 audio files. How can I do this automatically? Without manually editing every single file?

Can I do this with Audacity or do you suggest another software?


Thank you very much!

“Batch processing” with a “Macro”.

Your macro needs to be something like this:

SelectTime:End="10" Start="0"
Delete:
ExportWav:

The final export step could be any of the Export commands, depending on what format you want.

See also: https://manual.audacityteam.org/man/macros.html

Thanks Steve! I will try that.