mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
limit threadcount in video processing stage
This commit is contained in:
parent
3579429ac1
commit
e9a1ccad1f
1 changed files with 10 additions and 0 deletions
|
@ -32,6 +32,8 @@ defmodule Philomena.Processors.Webm do
|
|||
System.cmd("ffmpeg", [
|
||||
"-loglevel",
|
||||
"0",
|
||||
"-threads",
|
||||
"1",
|
||||
"-y",
|
||||
"-i",
|
||||
file,
|
||||
|
@ -91,6 +93,8 @@ defmodule Philomena.Processors.Webm do
|
|||
System.cmd("ffmpeg", [
|
||||
"-loglevel",
|
||||
"0",
|
||||
"-threads",
|
||||
"1",
|
||||
"-y",
|
||||
"-i",
|
||||
file,
|
||||
|
@ -115,6 +119,8 @@ defmodule Philomena.Processors.Webm do
|
|||
System.cmd("ffmpeg", [
|
||||
"-loglevel",
|
||||
"0",
|
||||
"-threads",
|
||||
"1",
|
||||
"-y",
|
||||
"-i",
|
||||
file,
|
||||
|
@ -149,6 +155,8 @@ defmodule Philomena.Processors.Webm do
|
|||
System.cmd("ffmpeg", [
|
||||
"-loglevel",
|
||||
"0",
|
||||
"-threads",
|
||||
"1",
|
||||
"-y",
|
||||
"-i",
|
||||
file,
|
||||
|
@ -171,6 +179,8 @@ defmodule Philomena.Processors.Webm do
|
|||
System.cmd("ffmpeg", [
|
||||
"-loglevel",
|
||||
"0",
|
||||
"-threads",
|
||||
"1",
|
||||
"-y",
|
||||
"-i",
|
||||
file,
|
||||
|
|
Loading…
Reference in a new issue