8 lines
125 B
Bash
8 lines
125 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
base=$(basename $1)
|
||
|
ext="${base##*.}"
|
||
|
base="${base%.*}"
|
||
|
|
||
|
ffmpeg -i $1 -vf "setpts=$2*PTS" -an $base'_sped.'$ext
|