forked from AkkomaGang/akkoma
Move arg for images to the list so we can reuse these fifo functions for videos
This commit is contained in:
parent
9567b96c79
commit
697bea0473
1 changed files with 3 additions and 2 deletions
|
@ -29,7 +29,8 @@ defp prepare_image_resize_args(%{max_width: max_width, max_height: max_height} =
|
|||
args = [
|
||||
"-interlace", "Plane",
|
||||
"-resize", resize,
|
||||
"-quality", to_string(quality)
|
||||
"-quality", to_string(quality),
|
||||
"jpg:-"
|
||||
]
|
||||
{:ok, args}
|
||||
end
|
||||
|
@ -37,7 +38,7 @@ defp prepare_image_resize_args(%{max_width: max_width, max_height: max_height} =
|
|||
defp prepare_image_resize_args(_), do: {:error, :missing_options}
|
||||
|
||||
defp run_fifo(fifo_path, env, executable, args) do
|
||||
args = List.flatten([fifo_path, args, "jpg:-"])
|
||||
args = List.flatten([fifo_path, args])
|
||||
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