本帖最后由 77七 于 2023-7-26 23:10 编辑
- @echo off
- chcp 65001 >nul
- rem https://blog.tubumu.com/2021/12/07/ffmpeg-command-silenceremove/
- rem 批处理保存为utf-8编码格式,需要ffmpeg(版本不要太旧)
- for /f "delims=" %%i in ('dir /b /s /a-d *.mp3') do (
- ffmpeg -hide_banner -loglevel warning -i "%%i" -filter_complex "silenceremove=start_periods=1:start_duration=0:start_threshold=-50dB:detection=peak,areverse,silenceremove=start_periods=1:start_duration=0:start_threshold=-50dB:detection=peak,areverse" -ar 44100 -ac 2 "outx.mp3" -y
- move /y outx.mp3 "%%i"
- )
- pause
复制代码
|