diff options
author | Jonas Smedegaard <dr@jones.dk> | 2019-12-16 17:42:54 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2019-12-16 17:42:54 +0100 |
commit | ccb4257b7d1117b6fb285680c948697a40040536 (patch) | |
tree | 7300bd12844aa415ba7a2fb6ab464e97c598d48a | |
parent | 70d716f23ed59a5e2461282c77f285446d8e6dc4 (diff) |
add example for FFMpeg
-rw-r--r-- | USE.md | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -125,7 +125,10 @@ e.g. like this for a FLAC file with CUE file for splicing hints: shnsplit -o flac -f CUE_FILE.cue FLAC_FILE.flac For many other formats, including video content, -splitting can be done using the [copy] parameter to FFMpeg. +splitting can be done using the [copy] parameter to FFMpeg, +e.g. like this: + + ffmpeg -i INFILE -ss 15 -t 60 -acodec copy -vcodec copy OUTFILE [copy]: https://ffmpeg.org/ffmpeg.html#Stream-copy "FFMpeg copy parameter" |