Advertisement
RusNuker

e

May 20th, 2024 (edited)
417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.67 KB | Source Code | 0 0
  1. rem Этот .bat файл конвертирует звуковые файлы из стерео в моно.
  2. rem Просто кидайте .mp3 файлы на этот файл и он сам всё сделает.
  3. rem В папке с этим батником должен лежать FFMPEG иначе никак.
  4. rem Пользуйтесь утырки.
  5. rem ------------------------------------------------------------
  6. rem This .bat file converts audio files from stereo to mono.
  7. rem Just drop the .mp3 file onto this file and it will do its
  8. rem thing.
  9. rem You have to have FFMPEG in the same folder as the script.
  10.  
  11. %~dp0ffmpeg.exe -i "%~nx1" -ac 1 "MONO-%~nx1"
Tags: ffmpeg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement