mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
tweak vp8 encoder settings
This commit is contained in:
parent
4ccd733c2f
commit
be83699e65
1 changed files with 11 additions and 15 deletions
|
@ -32,8 +32,6 @@ defmodule Philomena.Processors.Webm do
|
||||||
System.cmd("ffmpeg", [
|
System.cmd("ffmpeg", [
|
||||||
"-loglevel",
|
"-loglevel",
|
||||||
"0",
|
"0",
|
||||||
"-threads",
|
|
||||||
"1",
|
|
||||||
"-y",
|
"-y",
|
||||||
"-i",
|
"-i",
|
||||||
file,
|
file,
|
||||||
|
@ -93,25 +91,27 @@ defmodule Philomena.Processors.Webm do
|
||||||
System.cmd("ffmpeg", [
|
System.cmd("ffmpeg", [
|
||||||
"-loglevel",
|
"-loglevel",
|
||||||
"0",
|
"0",
|
||||||
"-threads",
|
|
||||||
"1",
|
|
||||||
"-y",
|
"-y",
|
||||||
"-i",
|
"-i",
|
||||||
file,
|
file,
|
||||||
"-c:v",
|
"-c:v",
|
||||||
"libvpx",
|
"libvpx",
|
||||||
"-quality",
|
"-deadline",
|
||||||
"good",
|
"good",
|
||||||
"-cpu-used",
|
"-cpu-used",
|
||||||
"3",
|
"5",
|
||||||
"-auto-alt-ref",
|
"-auto-alt-ref",
|
||||||
"0",
|
"0",
|
||||||
|
"-qmin",
|
||||||
|
"15",
|
||||||
|
"-qmax",
|
||||||
|
"35",
|
||||||
"-crf",
|
"-crf",
|
||||||
"10",
|
"31",
|
||||||
"-b:v",
|
|
||||||
"5M",
|
|
||||||
"-vf",
|
"-vf",
|
||||||
scale_filter,
|
scale_filter,
|
||||||
|
"-threads",
|
||||||
|
"1",
|
||||||
webm
|
webm
|
||||||
])
|
])
|
||||||
|
|
||||||
|
@ -119,8 +119,6 @@ defmodule Philomena.Processors.Webm do
|
||||||
System.cmd("ffmpeg", [
|
System.cmd("ffmpeg", [
|
||||||
"-loglevel",
|
"-loglevel",
|
||||||
"0",
|
"0",
|
||||||
"-threads",
|
|
||||||
"1",
|
|
||||||
"-y",
|
"-y",
|
||||||
"-i",
|
"-i",
|
||||||
file,
|
file,
|
||||||
|
@ -138,6 +136,8 @@ defmodule Philomena.Processors.Webm do
|
||||||
"5M",
|
"5M",
|
||||||
"-vf",
|
"-vf",
|
||||||
scale_filter,
|
scale_filter,
|
||||||
|
"-threads",
|
||||||
|
"1",
|
||||||
mp4
|
mp4
|
||||||
])
|
])
|
||||||
|
|
||||||
|
@ -155,8 +155,6 @@ defmodule Philomena.Processors.Webm do
|
||||||
System.cmd("ffmpeg", [
|
System.cmd("ffmpeg", [
|
||||||
"-loglevel",
|
"-loglevel",
|
||||||
"0",
|
"0",
|
||||||
"-threads",
|
|
||||||
"1",
|
|
||||||
"-y",
|
"-y",
|
||||||
"-i",
|
"-i",
|
||||||
file,
|
file,
|
||||||
|
@ -179,8 +177,6 @@ defmodule Philomena.Processors.Webm do
|
||||||
System.cmd("ffmpeg", [
|
System.cmd("ffmpeg", [
|
||||||
"-loglevel",
|
"-loglevel",
|
||||||
"0",
|
"0",
|
||||||
"-threads",
|
|
||||||
"1",
|
|
||||||
"-y",
|
"-y",
|
||||||
"-i",
|
"-i",
|
||||||
file,
|
file,
|
||||||
|
|
Loading…
Reference in a new issue