konosubaLoC

This commit is contained in:
pwgen2155 2024-04-18 05:16:05 +00:00
parent 3b09d4e532
commit 5bb0ce881c
Signed by: GammaSpectra.live Git
GPG key ID: 8B02E6093E9CB7B3
4 changed files with 180 additions and 0 deletions

View file

@ -0,0 +1,83 @@
---
encoder:
name: libaom
settings:
# lookahead/reference settings
#lag-in-frames: 4
lag-in-frames: 48
enable-fwd-kf: 1
#fwd-kf-dist: 64
max-reference-frames: 7
#kf-max-dist: 240
#kf-max-dist: 1440
kf-max-dist: 360
kf-min-dist: 10
#enable-keyframe-filtering: 0
#enable-keyframe-filtering: 1
#altref params
auto-alt-ref: 1
arnr-strength: 0
#arnr-maxframes: 15
# noise params
aq-mode: 1
#deltaq-mode=1,2?
deltaq-mode: 0
# noise params 2
denoise-noise-level: 0
photon-noise-iso: 800
photon-noise-transfer: bt709
enable-dnl-denoising: 0
#noise-sensitivity: 1
# crf/quality settings
end-usage: "q"
cq-level: 18
min-q: 1
#use-fixed-qp-offsets: 1
tune: psnr
#tune: vmaf_with_preprocessing
sharpness: 1
# other filters
enable-qm: 1
# note: enable-cdef is quite slow to decode on old dav1d
enable-cdef: 1
enable-restoration: 1
#disable-trellis-quant: 0
# cpu settings
cpu-used: 3
#cpu-used: 1
#cpu-used: 2
#cpu-used: 3
#cpu-used: 8
# threading settings
threads: 8
row-mt: 1
fp-mt: 1
frame-parallel: 1
tile-columns: 1
tile-rows: 1
# make decoding harder
#frame-parallel: 0
#tile-columns: 0
#tile-rows: 0
sb-size: 64
decoder:
settings:
# this must match the source material
properties:
width: 1920
height: 1080
par: 1:1
colorspace: 420p10
framerate: 24000:1001
vfr: false
fullrange: false
# these timecodes_v1 lines will be appended later

View file

@ -0,0 +1,83 @@
---
encoder:
name: libaom
settings:
# lookahead/reference settings
#lag-in-frames: 4
lag-in-frames: 48
enable-fwd-kf: 1
#fwd-kf-dist: 64
max-reference-frames: 7
#kf-max-dist: 240
#kf-max-dist: 1440
kf-max-dist: 360
kf-min-dist: 10
#enable-keyframe-filtering: 0
#enable-keyframe-filtering: 1
#altref params
auto-alt-ref: 1
arnr-strength: 0
#arnr-maxframes: 15
# noise params
aq-mode: 1
#deltaq-mode=1,2?
deltaq-mode: 0
# noise params 2
denoise-noise-level: 0
photon-noise-iso: 800
photon-noise-transfer: bt709
enable-dnl-denoising: 0
#noise-sensitivity: 1
# crf/quality settings
end-usage: "q"
cq-level: 18
min-q: 1
#use-fixed-qp-offsets: 1
tune: psnr
#tune: vmaf_with_preprocessing
sharpness: 1
# other filters
enable-qm: 1
# note: enable-cdef is quite slow to decode on old dav1d
enable-cdef: 1
enable-restoration: 1
#disable-trellis-quant: 0
# cpu settings
cpu-used: 3
#cpu-used: 1
#cpu-used: 2
#cpu-used: 3
#cpu-used: 8
# threading settings
threads: 8
row-mt: 1
fp-mt: 1
frame-parallel: 1
tile-columns: 1
tile-rows: 1
# make decoding harder
#frame-parallel: 0
#tile-columns: 0
#tile-rows: 0
sb-size: 64
decoder:
settings:
# this must match the source material
properties:
width: 1280
height: 720
par: 1:1
colorspace: 420p10
framerate: 24000:1001
vfr: false
fullrange: false
# these timecodes_v1 lines will be appended later

View file

@ -0,0 +1,7 @@
import vapoursynth as vs
core = vs.core
src = core.ffms2.Source(path)
resized = core.resize.Bilinear(clip=src, width=1920, height=1080, format=vs.YUV420P10)
resized.set_output(alt_output=1)

View file

@ -0,0 +1,7 @@
import vapoursynth as vs
core = vs.core
src = core.ffms2.Source(path)
resized = core.resize.Bilinear(clip=src, width=1280, height=720, format=vs.YUV420P10)
resized.set_output(alt_output=1)