Guest User

Untitled

a guest
Jul 20th, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. # convert from webm to mp3
  2. ffmpeg -i input.webm output.mp3
  3.  
  4. # split mp3 file to several audio files whose length is 3600s and the names of these files begin with out<id>.mp3
  5. ffmpeg -i out.mp3 -f segment -segment_time 3600 -c copy out%03d.mp3
Add Comment
Please, Sign In to add comment