Skip to content

Instantly share code, notes, and snippets.

@patterns
Created February 3, 2017 04:17
Show Gist options
  • Save patterns/b78adf8c20d9ec04a88033665c5d6b10 to your computer and use it in GitHub Desktop.
Save patterns/b78adf8c20d9ec04a88033665c5d6b10 to your computer and use it in GitHub Desktop.
Use ffmpeg to splice sound file by specifying start time position (-ss) and duration (-t)
#!/bin/sh
ffmpeg -ss 00:00:00.000 -i Source.mp3 -t 44 -c copy cut00.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment