mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2025-10-07 07:22:36 +02:00
8 lines
125 B
Bash
Executable File
8 lines
125 B
Bash
Executable File
#!/bin/bash
|
|
|
|
base=$(basename $1)
|
|
ext="${base##*.}"
|
|
base="${base%.*}"
|
|
|
|
ffmpeg -i $1 -vf "setpts=$2*PTS" -an $base'_sped.'$ext
|