Explorar el Código

update README

master
Jonathan Cobb hace 4 años
padre
commit
fd4b4fee95
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      README.md

+ 1
- 1
README.md Ver fichero

@@ -12,7 +12,7 @@ and bash, you might do something like this:
```shell script
INCR=10
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
ffmpeg -i /tmp/my/source.mp4 -ss ${i} -t $((i+INCR)) /tmp/my/slice_${i}_$((i+INCR)).mp4
done
```
With JVCL, you'd create this spec:


Cargando…
Cancelar
Guardar