Try to trick ffmpeg into working with this named pipe

This commit is contained in:
Mark Felder 2020-08-27 13:10:40 -05:00
parent f1218a2b4e
commit dd1de994d5
1 changed files with 2 additions and 1 deletions

View File

@ -43,11 +43,12 @@ defmodule Pleroma.Helpers.MediaHelper do
{:ok, env} <- Pleroma.HTTP.get(url),
{:ok, fifo_path} <- mkfifo(),
args = [
"-y",
"-i", fifo_path,
"-vframes", "1",
"-f", "mjpeg",
"-loglevel", "error",
"-"
"pipe:"
] do
run_fifo(fifo_path, env, executable, args)
else