
mkvextract started...
starting 2026-04-09@09_26_39_0110_01_audio@09:26:41.439 - C:\Users\Peter\Desktop\Zeug\Upscaling\Hybrid\stars-jojos.bizarre.adventure.stardust.crusaders.egypt.hen.e24.1080p_new_new.mkv
"C:\Program Files\Hybrid\64bit\mkvextract.exe" tracks "C:\Users\Peter\Desktop\Zeug\Upscaling\stars-jojos.bizarre.adventure.stardust.crusaders.egypt.hen.e24.1080p.mkv" 1:"C:\Users\Peter\AppData\Local\Temp\iId_1_aid_0_lang_de_2026-04-09@09_26_39_0110_01.ac3" 2:"C:\Users\Peter\AppData\Local\Temp\iId_2_aid_1_lang_ja_2026-04-09@09_26_39_0110_02.ac3"
2026-04-09@09_26_39_0110_01_audio finished after 00:00:01.608
finished...

Created skript C:\Users\Peter\AppData\Local\Temp\encodingTempSynthSkript_2026-04-09@09_26_39_0110_0.vpy:---------------------
# Imports
import logging
import sys
import os
import vapoursynth as vs
# getting Vapoursynth core
core = vs.core
# Import scripts folder
scriptPath = 'C:/Program Files/Hybrid/64bit/vsscripts'
sys.path.insert(0, os.path.abspath(scriptPath))
# Force logging to std:err
logging.StreamHandler(sys.stderr)
# loading plugins
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/Support/libvs_placebo.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/SharpenFilter/CAS/CAS.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/SharpenFilter/AWarpSharp2/libawarpsharp2.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/DenoiseFilter/ZSmooth/zsmooth.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/ResizeFilter/nnedi3/NNEDI3CL.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/DenoiseFilter/CTMF/CTMF.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/Support/libmvtools.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/Support/fmtconv.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/SourceFilter/LSmashSource/LSMASHSource.dll")
# Import scripts
import nnedi3_resample
import smdegrain
import validate
# Source: 'C:\Users\Peter\Desktop\Zeug\Upscaling\stars-jojos.bizarre.adventure.stardust.crusaders.egypt.hen.e24.1080p.mkv'
# Current color space: YUV420P8, bit depth: 8, resolution: 1920x1080, frame rate: 23.976fps, scanorder: progressive, yuv luminance scale: limited, matrix: 709, format: AVC
# Loading 'C:\Users\Peter\Desktop\Zeug\Upscaling\stars-jojos.bizarre.adventure.stardust.crusaders.egypt.hen.e24.1080p.mkvÄ using LWLibavSource
clip = core.lsmas.LWLibavSource(source="C:/Users/Peter/Desktop/Zeug/Upscaling/stars-jojos.bizarre.adventure.stardust.crusaders.egypt.hen.e24.1080p.mkv", format="YUV420P8", stream_index=0, cache=0, prefer_hw=0)
frame = clip.get_frame(0)
# setting color matrix to 709.
clip = core.std.SetFrameProps(clip, _Matrix=vs.MATRIX_BT709)
# setting color transfer (vs.TRANSFER_BT709), if it is not set.
if validate.transferIsInvalid(clip):
  clip = core.std.SetFrameProps(clip=clip, _Transfer=vs.TRANSFER_BT709)
# setting color primaries info (to vs.PRIMARIES_BT709), if it is not set.
if validate.primariesIsInvalid(clip):
  clip = core.std.SetFrameProps(clip=clip, _Primaries=vs.PRIMARIES_BT709)
# setting color range to TV (limited) range.
prop_name = '_Range' if core.core_version.release_major >= 74 else '_ColorRange'
clip = core.std.SetFrameProps(clip=clip, **{prop_name: vs.RANGE_LIMITED})
# making sure frame rate is set to 23.976fps
clip = core.std.AssumeFPS(clip=clip, fpsnum=24000, fpsden=1001)
# making sure the detected scan type is set (detected: progressive)
clip = core.std.SetFrameProps(clip=clip, _FieldBased=vs.FIELD_PROGRESSIVE) # scan type: progressive
# removing grain using SMDegrain
clip = smdegrain.SMDegrain(clip, thSADC=150, RefineMotion=True, interlaced=False, pel=1, subpixel=3, opencl=True, device=-1)
# sharpening using AWarpSharp2
clip = core.warp.AWarpSharp2(clip, thresh=90, blur=2, depth=25)
# contrast sharpening using CAS
clip = core.cas.CAS(clip, sharpness=0.600)
# adjusting color space from YUV420P8 to YUV444P16 for vsGLSLAdaptiveSharpen
clip = core.resize.Bicubic(clip=clip, format=vs.YUV444P16, dither_type="none")
# sharpening using GLSL Adaptive Sharpening
with open("C:/Program Files/Hybrid/64bit/vsfilters/GLSL/parameterized/adaptive-sharpen.glsl") as glslf:
  glsl = glslf.read()
glsl = glsl.replace('#define curve_height    1.0', '#define curve_height    1.0000')
glsl = glsl.replace('#define anime_mode      false', '#define anime_mode    True')
glsl = glsl.replace('#define overshoot_ctrl  false', '#define overshoot_ctrl  True')
glsl = glsl.replace('#define video_level_out false', '#define video_level_out False')
clip = core.placebo.Shader(clip, shader_s=glsl, width=clip.width, height=clip.height)
from vsrealesrgan import realesrgan as RealESRGAN
# adjusting color space from YUV444P16 to RGBH for vsRealESRGAN
clip = core.resize.Bicubic(clip=clip, format=vs.RGBH, matrix_in_s="709", range_in_s="limited", range_s="full")
# resizing using RealESRGAN
clip = RealESRGAN(clip, model=4, device_index=0, trt=True, trt_cache_dir=r"C:\Users\Peter\AppData\Local\Temp") # 7680x4320
# resizing 7680x4320 to 3840x2160
clip = core.resize.Bicubic(clip=clip, format=vs.RGBS, dither_type="none")
clip = core.fmtc.resample(clip, w=3840, h=2160, kernel="spline", taps=6, interlaced=False, interlacedd=False)
# adjusting output color from RGBS to YUV420P10 for NVEncModel
clip = core.resize.Bicubic(clip=clip, format=vs.YUV420P10, matrix_s="709", range_in_s="full", range_s="limited") # additional resize to match target color sampling
# set output frame rate to 23.976fps (progressive)
clip = core.std.AssumeFPS(clip=clip, fpsnum=24000, fpsden=1001)
# output
clip.set_output()
# script was created by Hybrid 2026.04.08.1
---------------------
NVEnc(1pass variable bitrate) processing started...
starting 2026-04-09@09_26_39_0110_03_video@09:26:43.154 - C:\Users\Peter\Desktop\Zeug\Upscaling\Hybrid\stars-jojos.bizarre.adventure.stardust.crusaders.egypt.hen.e24.1080p_new_new.mkv
"C:\Program Files\Hybrid\64bit\NVEncC.exe" --y4m -i - --fps 23.976 --codec h265 --profile main10 --level auto --tier high --sar 1:1 --lookahead 32 --output-depth 10 --vbr 0 --vbr-quality 32.00 --gop-len 150 --ref 3 --bframes 3 --bref-mode auto --no-b-adapt --lookahead 32 --mv-precision Q-pel --lookahead-level 0 --preset quality --colorrange limited --colormatrix bt709 --colorrange limited --cuda-schedule sync --output "C:\Users\Peter\AppData\Local\Temp\stars-jojos.bizarre.adventure.stardust.crusaders.egypt.hen.e24.1080p_new_new_1_2026-04-09@09_26_39_0110_04.265"
-------------------------------------------------------------------------------------------------------------------------------------------------
C:\Users\Peter\AppData\Local\Temp\stars-jojos.bizarre.adventure.stardust.crusaders.egypt.hen.e24.1080p_new_new_1_2026-04-09@09_26_39_0110_04.265
-------------------------------------------------------------------------------------------------------------------------------------------------
NVEncC (x64) 9.14 (r3554) by rigaya, Apr  4 2026 12:02:09 (VC 1944/Win)
OS Version     Windows 10 x64 (19045) [UTF-8]
CPU            Intel Core i9-10900KF @ 3.70GHz [TB: 4.93GHz] (10C/20T)
GPU            #0: NVIDIA GeForce RTX 4070 (5888 cores, 2520 MHz)[PCIe3x16][595.97]
NVENC / CUDA   NVENC API 13.0, CUDA 13.2, schedule mode: sync
Input Buffers  CUDA, 44 frames
Input Info     y4m(yv12(10bit))->p010 [AVX2], 3840x2160, 24000/1001 fps
Vpp Filters    copyDtoD
Output Info    H.265/HEVC main10 @ Level auto
3840x2160p 1:1 23.976fps (24000/1001fps)
Encoder Preset quality
Rate Control   VBR
Multipass      none
Bitrate        0 kbps (Max: 96000 kbps)
Target Quality 32.00
QP range       I:0-63  P:0-63  B:0-63
QP Offset      cb:0  cr:0
VBV buf size   auto
Split Enc Mode auto
Tuning Info    hq
Lookahead      on, 32 frames, Level 0, Adaptive I Insert
GOP length     150 frames
B frames       3 frames [ref mode: middle]
Ref frames     3 frames, MultiRef L0:auto L1:auto
AQ             off
CU max / min   32 / auto
VUI            matrix:bt709,range:limited
Others         mv:Q-pel
encoded 36444 frames, 6.04 fps, 4929.41 kbps, 893.21 MB
encode time 1:40:37, CPU: 1.2, GPU: 0.2, VE: 12.4, VD: 0.0, GPUClock: 2634MHz, VEClock: 2076MHz
frame type IDR   546
frame type I     546,  total size   51.00 MB
frame type P    9245,  total size  477.03 MB
frame type B   26653,  total size  365.17 MB
2026-04-09@09_26_39_0110_03_video finished after 01:41:20.174
finished...

created C:\Users\Peter\AppData\Local\Temp\stars-jojos.bizarre.adventure.stardust.crusaders.egypt.hen.e24.1080p_new_new_1_2026-04-09@09_26_39_0110_04.265 (893.211 MB)
starting cleanUpJob for: C:\Users\Peter\AppData\Local\Temp\encodingTempSynthSkript_2026-04-09@09_26_39_0110_0.vpy
delete C:\Users\Peter\AppData\Local\Temp\encodingTempSynthSkript_2026-04-09@09_26_39_0110_0.vpy
mkvmerge started...
starting 2026-04-09@09_26_39_0110_06_muxing@11:08:03.452 - C:\Users\Peter\Desktop\Zeug\Upscaling\Hybrid\stars-jojos.bizarre.adventure.stardust.crusaders.egypt.hen.e24.1080p_new_new.mkv
"C:\Program Files\Hybrid\64bit\mkvmerge.exe" --ui-language en -o "C:\Users\Peter\Desktop\Zeug\Upscaling\Hybrid\2026-04-09@09_26_39_0110__06.mkv" --global-tags "C:\Users\Peter\AppData\Local\Temp\mkvtags_2026-04-09@09_26_39_0110__06.xml" -d 0 --default-track 0:yes --color-matrix-coefficients 0:1 --color-range 0:1 --color-transfer-characteristics 0:2 --color-primaries 0:2 --track-name 0:"JOJO'S BIZARRE ADVENTURE: STARDUST CRUSADERS - BATTLE IN EGYPT - E24 - “NACH LANGER REISE HEIßT ES ABSCHIED NEHMEN, MEINE FREUNDE“ - 1080P - STARS" --default-duration "0:24000/1001fps" --aspect-ratio-factor 0:1/1 --no-chapters --compression -1:none --forced-track 0:yes --field-order 0:0 --no-audio --no-subtitles "C:\Users\Peter\AppData\Local\Temp\stars-jojos.bizarre.adventure.stardust.crusaders.egypt.hen.e24.1080p_new_new_1_2026-04-09@09_26_39_0110_04.265" --track-name 0:"GER - AC3" --language 0:de --default-track 0:yes --forced-track 0:no -a 0 --compression -1:none --no-video --no-subtitles --no-chapters "C:\Users\Peter\AppData\Local\Temp\iId_1_aid_0_lang_de_2026-04-09@09_26_39_0110_01.ac3" --track-name 0:"JPN - AC3" --language 0:ja --default-track 0:no --forced-track 0:no -a 0 --compression -1:none --no-video --no-subtitles --no-chapters "C:\Users\Peter\AppData\Local\Temp\iId_2_aid_1_lang_ja_2026-04-09@09_26_39_0110_02.ac3" --forced-track 0:no --default-track 0:no --compression -1:none --no-video --no-audio --no-chapters --track-name 0:"GER - FORCED" --language 0:de "C:\Users\Peter\Desktop\Zeug\Upscaling\Hybrid\stars-jojos.bizarre.adventure.stardust.crusaders.egypt.hen.e24.1080p_id_3_lang_de_default_forced.srt" --forced-track 0:no --default-track 0:no --compression -1:none --no-video --no-audio --no-chapters --track-name 0:"GER - SUBS" --language 0:de "C:\Users\Peter\Desktop\Zeug\Upscaling\Hybrid\stars-jojos.bizarre.adventure.stardust.crusaders.egypt.hen.e24.1080p_id_4_lang_de.srt" --track-order 0:1,1:2,2:3,3:4,4:5
2026-04-09@09_26_39_0110_06_muxing finished after 00:00:02.734
finished...

created C:\Users\Peter\Desktop\Zeug\Upscaling\Hybrid\2026-04-09@09_26_39_0110__06.mkv (963.254 MB)
starting cleanUpJob for: C:\Users\Peter\AppData\Local\Temp\mkvtags_2026-04-09@09_26_39_0110__06.xml
delete C:\Users\Peter\AppData\Local\Temp\mkvtags_2026-04-09@09_26_39_0110__06.xml
starting cleanUpJob for: C:\Users\Peter\AppData\Local\Temp\stars-jojos.bizarre.adventure.stardust.crusaders.egypt.hen.e24.1080p_new_new_1_2026-04-09@09_26_39_0110_04.265
delete C:\Users\Peter\AppData\Local\Temp\stars-jojos.bizarre.adventure.stardust.crusaders.egypt.hen.e24.1080p_new_new_1_2026-04-09@09_26_39_0110_04.265
starting cleanUpJob for: C:\Users\Peter\AppData\Local\Temp\iId_1_aid_0_lang_de_2026-04-09@09_26_39_0110_01.ac3
delete C:\Users\Peter\AppData\Local\Temp\iId_1_aid_0_lang_de_2026-04-09@09_26_39_0110_01.ac3
starting cleanUpJob for: C:\Users\Peter\AppData\Local\Temp\iId_2_aid_1_lang_ja_2026-04-09@09_26_39_0110_02.ac3
delete C:\Users\Peter\AppData\Local\Temp\iId_2_aid_1_lang_ja_2026-04-09@09_26_39_0110_02.ac3
renamed C:\Users\Peter\Desktop\Zeug\Upscaling\Hybrid\2026-04-09@09_26_39_0110__06.mkv to C:\Users\Peter\Desktop\Zeug\Upscaling\Hybrid\stars-jojos.bizarre.adventure.stardust.crusaders.egypt.hen.e24.1080p_new_new.mkv