소스 검색

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
```


불러오는 중...
취소
저장