add workaround for broken gif seeking in ffmpeg

This commit is contained in:
byte[] 2020-05-02 02:12:54 -04:00
parent 56ad635154
commit 7cfb390e05

View file

@ -35,8 +35,12 @@ defmodule Philomena.Processors.Gif do
end
defp preview(duration, file) do
h264_equiv = Briefly.create!(extname: ".mp4")
preview = Briefly.create!(extname: ".png")
# Hack workaround for broken FFmpeg behavior which
# cannot correctly seek in GIF image files
{_output, 0} =
System.cmd("ffmpeg", [
"-loglevel",
@ -44,6 +48,18 @@ defmodule Philomena.Processors.Gif do
"-y",
"-i",
file,
"-c:v",
"libx264",
h264_equiv
])
{_output, 0} =
System.cmd("ffmpeg", [
"-loglevel",
"0",
"-y",
"-i",
h264_equiv,
"-ss",
to_string(duration / 2),
"-frames:v",