Talk about speed

This commit is contained in:
Neale Pickett 2023-02-28 22:06:06 -07:00
parent 80e5e8ab3b
commit 959d268571
2 changed files with 8 additions and 1 deletions

View File

@ -30,6 +30,13 @@ into a new `.mkv` file.
Since the "copy" video codec is used in the second step,
everything works properly.
Doing things in two steps adds a little bit of time,
but in my experience,
the hardware transcoder is so much faster,
the second step time isn't a problem.
I see ffmpeg reporting running at `speed=500x` and higher
on the second step.
# Thanks
Thank you to Will Usher,

2
h264
View File

@ -126,5 +126,5 @@ for fn in "$@"; do
-y \
"$out"
echo rm "$intermediate"
rm "$intermediate"
done