forked from AkkomaGang/akkoma
Keep args construction within video/image scopes instead of mangling down in fifo town
This commit is contained in:
parent
dd1de994d5
commit
3a5231ec8f
1 changed files with 1 additions and 6 deletions
|
@ -16,6 +16,7 @@ def image_resize(url, options) do
|
|||
{:ok, env} <- Pleroma.HTTP.get(url),
|
||||
{:ok, fifo_path} <- mkfifo()
|
||||
do
|
||||
args = List.flatten([fifo_path, args])
|
||||
run_fifo(fifo_path, env, executable, args)
|
||||
else
|
||||
nil -> {:error, {:convert, :command_not_found}}
|
||||
|
@ -58,12 +59,6 @@ def video_framegrab(url) do
|
|||
end
|
||||
|
||||
defp run_fifo(fifo_path, env, executable, args) do
|
||||
args =
|
||||
if _executable = System.find_executable("convert") do
|
||||
List.flatten([fifo_path, args])
|
||||
else
|
||||
args
|
||||
end
|
||||
pid = Port.open({:spawn_executable, executable}, [:use_stdio, :stream, :exit_status, :binary, args: args])
|
||||
fifo = Port.open(to_charlist(fifo_path), [:eof, :binary, :stream, :out])
|
||||
true = Port.command(fifo, env.body)
|
||||
|
|
Loading…
Reference in a new issue