]> git.sesse.net Git - ultimatescore/blobdiff - nageru/ultimate.lua
Realign the clock bug.
[ultimatescore] / nageru / ultimate.lua
index 586b36d7223cb0b29fc6de1d24dd85aa4d45fa55..776a7d1b3b53612cd2ca3b79693d0e9c2f873fe2 100644 (file)
@@ -51,7 +51,7 @@ local cef_path = Nageru.THEME_PATH:match("(.*)/nageru/")
 local cef_input = HTMLInput.new("file://" .. cef_path .. "/score.html")
 cef_input:execute_javascript_async("play()")
 
-local bg_video = VideoInput.new(cef_path .. "/flow-720.mp4", Nageru.VIDEO_FORMAT_YCBCR)
+local bg_video = VideoInput.new(cef_path .. "/flow-1080.mp4", Nageru.VIDEO_FORMAT_YCBCR)
 
 function reload_cef()
        cef_input:reload()
@@ -103,7 +103,7 @@ function make_fade_input(chain, signal, live, deint, scale)
                input:connect_signal(signal)
                last = input
        else
-               input = chain:add_effect(ImageInput.new(cef_path .. "/nageru/dsn-bg.png"))
+               input = chain:add_effect(ImageInput.new(cef_path .. "/nageru/dsn-bg-1080.png"))
                last = input
        end
 
@@ -292,7 +292,7 @@ local simple_chains = make_cartesian_product({
        return make_simple_chain(input_deint, input_scale, has_overlay, hq)
 end)
 
--- A chain to show a single static picture on screen. Never with CasparCG overlay.
+-- A chain to show a single static picture on screen. Never with HTML overlay.
 local static_chains = make_cartesian_product({
        {true, false}            -- hq
 }, function(hq)