瀏覽代碼

update README

master
Jonathan Cobb 3 年之前
父節點
當前提交
bdeda5dfc5
共有 1 個檔案被更改,包括 1 行新增3 行删除
  1. +1
    -3
      README.md

+ 1
- 3
README.md 查看文件

@@ -10,10 +10,8 @@ JVCL provides higher-level semantics for working with these lower level tools.
Say you want to split a portion of a video into ten-second chunks. With ffmpeg
and bash, you might do something like this:
```shell script
START=10
END=130
INCR=10
for ((i=START;i<END;i=(i+INCR))); do
for ((i=10;i<130;i=(i+INCR))); do
ffmpeg -i $i /tmp/my/source.mp4 -ss $((i)) -t $((i+INCR)) /tmp/my/slice_$((i))_$((i+INCR)).mp4
done
```


Loading…
取消
儲存