Advertisement
mayankjoin3

mp3 cut unix

Aug 26th, 2022
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. ffmpeg -i input.mp3 -vn -acodec copy -ss 00:00:00 -t 00:01:32 output.mp3
  2. ffmpeg -i InputFile -vn -acodec copy -ss 00:00:00 -t 00:01:32 OutputFile
  3.  
  4. sudo apt-get install libsox-fmt-mp3
  5.  
  6. sox input.mp3 output.mp3 trim 1 5
  7. And to trim 4 seconds from the end of your mp3 file the following very simple command is required:
  8.  
  9. sox input.mp3 output.mp3 trim 0 -4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement