diff options
author | Vincent Ambo <tazjin@google.com> | 2020-04-21T02·03+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-04-21T02·03+0100 |
commit | 97c7ebf7581e87ff23804fd7f2441646386fda3c (patch) | |
tree | dcfb419791b41d70df72506f63077cab689b051e /fun/tvl/default.nix | |
parent | cb62e87b77992c97553bdb839a9378fe74cbcaab (diff) |
chore(fun): //fun/tvl -> //fun/streamTVL r/647
Otherwise this is confusing because //web/tvl is now a thing.
Diffstat (limited to 'fun/tvl/default.nix')
-rw-r--r-- | fun/tvl/default.nix | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/fun/tvl/default.nix b/fun/tvl/default.nix deleted file mode 100644 index da7c00ce4be5..000000000000 --- a/fun/tvl/default.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ depot, ... }: - -depot.third_party.writeShellScriptBin "start-tvl-stream" '' - env LD_LIBRARY_PATH=/run/opengl-driver/lib/ ${depot.third_party.ffmpeg}/bin/ffmpeg \ - -vsync 0 \ - -hwaccel cuvid \ - -init_hw_device cuda=0 -filter_hw_device 0 \ - -f x11grab \ - -video_size 1920x1080 \ - -framerate 60 \ - -thread_queue_size 256 \ - -i :0.0+0,0 \ - -filter:v "format=nv12,hwupload,scale_npp=w=1280:h=720:interp_algo=lanczos" \ - -c:v h264_nvenc \ - -preset:v llhq \ - -rc:v cbr_ld_hq \ - -an \ - -f flv rtmp://tazj.in:1935/tvl -'' |