diff options
author | Vincent Ambo <mail@tazj.in> | 2022-03-31T23·38+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-03-31T23·44+0000 |
commit | 5a9cbc9d33bf37ca46902bef8bb6ea61ef62bddf (patch) | |
tree | e4342d9605b7af72444dcf2993bf0a22b60ada1a /fun | |
parent | b4b0008180587be53b8a4364ced82fa5def930cb (diff) |
chore(fun/streamTVL): Remove package r/3929
This hasnt been used in a looong time. Change-Id: Iee1a142cd6a433a8c1f03a30cbec59331044a99f Reviewed-on: https://cl.tvl.fyi/c/depot/+/5430 Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'fun')
-rw-r--r-- | fun/streamTVL/default.nix | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/fun/streamTVL/default.nix b/fun/streamTVL/default.nix deleted file mode 100644 index 8d8263c9dd3f..000000000000 --- a/fun/streamTVL/default.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ pkgs, ... }: - -pkgs.writeShellScriptBin "start-tvl-stream" '' - env LD_LIBRARY_PATH=/run/opengl-driver/lib/ ${pkgs.ffmpeg-full}/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 -'' |