aboutsummaryrefslogtreecommitdiffstats
path: root/ffmpeg/resize-and-transcode
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-03-15 08:20:21 +0100
committerMattias Andrée <m@maandree.se>2025-03-15 08:20:21 +0100
commitd3be70c0940117d02f689ae95f623bb1db798cb5 (patch)
tree71494c818ef639246e7fad5f8618898ff6d3022b /ffmpeg/resize-and-transcode
parent... (diff)
downloaddotfiles-d3be70c0940117d02f689ae95f623bb1db798cb5.tar.gz
dotfiles-d3be70c0940117d02f689ae95f623bb1db798cb5.tar.bz2
dotfiles-d3be70c0940117d02f689ae95f623bb1db798cb5.tar.xz
prefix filenames for ffmpeg with "file:"
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
-rwxr-xr-xffmpeg/resize-and-transcode2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg/resize-and-transcode b/ffmpeg/resize-and-transcode
index cecad85..c247b3e 100755
--- a/ffmpeg/resize-and-transcode
+++ b/ffmpeg/resize-and-transcode
@@ -100,7 +100,7 @@ if test -z "$scale" && test "$codec" = '-c:v copy'; then
fi
ttysetting="$(stty -g)"
-ffmpeg -i "$input" $scale $codec -c:a copy -- "$output"
+ffmpeg -i file:"$input" $scale $codec -c:a copy -- file:"$output"
ret=$?
stty "$ttysetting"