set extractor to preview at 1080p, remove old nginx files
This commit is contained in:
parent
a8373c83a3
commit
95de645c15
3 changed files with 17 additions and 57 deletions
|
@ -69,21 +69,21 @@ sources:
|
||||||
#
|
#
|
||||||
# Extractor settings
|
# Extractor settings
|
||||||
#
|
#
|
||||||
#extractor:
|
extractor:
|
||||||
# Preview image settings
|
# Preview image settings
|
||||||
#image:
|
#image:
|
||||||
# previewSizes: [1920, 1280, 800, 320, 128]
|
# previewSizes: [1920, 1280, 800, 320, 128]
|
||||||
# previewQuality: 80
|
# previewQuality: 80
|
||||||
#video:
|
video:
|
||||||
# previewSize: 720 # used as preview size and preview filename
|
previewSize: 1080 # used as preview size and preview filename
|
||||||
# ext: mp4 # used as target video container and preview filename
|
ext: mp4 # used as target video container and preview filename
|
||||||
# scale: -2:'min(720,ih)' # overwrites previewSize. E.g. -2:'min(ih,max(720,min(1080,ih*.5)))' for 720p <= height*0.5 <= 1080p or height, if height < 720
|
scale: -2:'min(720,ih)' # overwrites previewSize. E.g. -2:'min(ih,max(720,min(1080,ih*.5)))' for 720p <= height*0.5 <= 1080p or height, if height < 720
|
||||||
# frameRate: 30
|
frameRate: 30
|
||||||
# maxVideoBitRate: 4000 # in KB
|
maxVideoBitRate: 4000 # in KB
|
||||||
# videoEncoder: libx264
|
videoEncoder: libx264
|
||||||
# preset: slow
|
preset: slow
|
||||||
# profile: baseline
|
profile: baseline
|
||||||
# level: '3.0'
|
level: '3.0'
|
||||||
#addFfmpegArgs: [...] # Additional ffmpeg args
|
#addFfmpegArgs: [...] # Additional ffmpeg args
|
||||||
#customFfmpegArgs: [...] # custom ffmpeg args for video conversion, replaces all other settings such previewSize, videoEncoder, addFfmpegArgs, ...
|
#customFfmpegArgs: [...] # custom ffmpeg args for video conversion, replaces all other settings such previewSize, videoEncoder, addFfmpegArgs, ...
|
||||||
# Api Server is used for image similarity, object and face detection
|
# Api Server is used for image similarity, object and face detection
|
||||||
|
@ -170,7 +170,7 @@ logger:
|
||||||
level: info
|
level: info
|
||||||
# format: json
|
# format: json
|
||||||
# File logger format is in newline delimited JSON. See http://ndjson.org
|
# File logger format is in newline delimited JSON. See http://ndjson.org
|
||||||
- type: file
|
#- type: file
|
||||||
# Log level could be one of trace, debug, info, warn, error, fatal, silent
|
# # Log level could be one of trace, debug, info, warn, error, fatal, silent
|
||||||
level: debug
|
# level: debug
|
||||||
file: '{configDir}/{configPrefix}gallery.log'
|
# file: '{configDir}/{configPrefix}gallery.log'
|
||||||
|
|
|
@ -1,20 +0,0 @@
|
||||||
events {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
http {
|
|
||||||
error_log /etc/nginx/error_log.log warn;
|
|
||||||
client_max_body_size 20m;
|
|
||||||
|
|
||||||
proxy_cache_path /etc/nginx/cache keys_zone=one:500m max_size=1000m;
|
|
||||||
|
|
||||||
|
|
||||||
server {
|
|
||||||
server_name vod.deflax.net;
|
|
||||||
root /recordings;
|
|
||||||
|
|
||||||
location /live/ {
|
|
||||||
autoindex on;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,20 +0,0 @@
|
||||||
events {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
http {
|
|
||||||
error_log /etc/nginx/error_log.log warn;
|
|
||||||
client_max_body_size 20m;
|
|
||||||
|
|
||||||
proxy_cache_path /etc/nginx/cache keys_zone=one:500m max_size=1000m;
|
|
||||||
|
|
||||||
|
|
||||||
server {
|
|
||||||
server_name vod.example.com;
|
|
||||||
root /recordings;
|
|
||||||
|
|
||||||
location /live/ {
|
|
||||||
autoindex on;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue