From 3d3d79a57fb6d0a5728e0070475f05d1699f0818 Mon Sep 17 00:00:00 2001 From: Timmy Keller Date: Wed, 16 Mar 2022 23:37:09 -0500 Subject: move a lot of scripts around and make a bunch of minor changes. once again i am too lazy to document the changes properly since im never going to read these commit messages anyways --- video/ffconcat | 12 ------------ video/rectape | 13 ------------- video/rectapevaapi | 12 ------------ video/transtape | 11 ----------- video/viewintensitypro | 4 ---- video/webcamdesktopffplay | 2 -- video/win10 | 4 ---- video/ytdl-dlplst | 5 ----- 8 files changed, 63 deletions(-) delete mode 100755 video/ffconcat delete mode 100755 video/rectape delete mode 100755 video/rectapevaapi delete mode 100755 video/transtape delete mode 100755 video/viewintensitypro delete mode 100755 video/webcamdesktopffplay delete mode 100755 video/win10 delete mode 100755 video/ytdl-dlplst (limited to 'video') diff --git a/video/ffconcat b/video/ffconcat deleted file mode 100755 index 06eb066..0000000 --- a/video/ffconcat +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh -ffconcat="$(ls | sed "s/^/file '/; s/$/'/")" -echo "$ffconcat" > ffconcat - -ffmpeg \ - -f concat \ - -safe 0 \ - -i ffconcat \ - -c copy \ - out.mkv - -rm ffconcat diff --git a/video/rectape b/video/rectape deleted file mode 100755 index 1e54370..0000000 --- a/video/rectape +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -if [ -z "$1" ]; then - $1=untitled_$(ls | wc -l) -fi - -ffmpeg \ --f decklink -format_code ntsc -i "Intensity Pro" \ --c:v libx264 \ --qmin 6 -qmax 26 -qdiff 4 \ --vf yadif \ --c:a aac -b:a 384k \ --metadata "title"="$1" \ -"$1.mkv" diff --git a/video/rectapevaapi b/video/rectapevaapi deleted file mode 100755 index 16bd190..0000000 --- a/video/rectapevaapi +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh -if [ -z "$1" ]; then - title="untitled_$(ls | wc -l)" -fi - -ffmpeg -hwaccel auto -vaapi_device /dev/dri/renderD128 \ --f decklink -format_code ntsc -i "Intensity Pro" \ --c:v hevc_vaapi \ --vf "yadif,format=nv12,hwupload" \ --c:a libopus -b:a 384k \ --metadata "title"="$1$title" \ -"$1$title.mkv" diff --git a/video/transtape b/video/transtape deleted file mode 100755 index a0eaaee..0000000 --- a/video/transtape +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -if [ -z "$1" ]; then - exit -fi - -ffmpeg -hwaccel auto -vaapi_device /dev/dri/renderD128 \ --i "$1" \ --c:v hevc_vaapi \ --vf "yadif,format=nv12,hwupload" \ --metadata "title"="$1" \ -"$1as.mkv" diff --git a/video/viewintensitypro b/video/viewintensitypro deleted file mode 100755 index 1b1f77c..0000000 --- a/video/viewintensitypro +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -ffplay \ --f decklink -format_code ntsc -i "Intensity Pro" \ --vf yadif diff --git a/video/webcamdesktopffplay b/video/webcamdesktopffplay deleted file mode 100755 index c56d879..0000000 --- a/video/webcamdesktopffplay +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -ffplay -f v4l2 -input_format mjpeg -video_size 1920x1080 -framerate 30 -i /dev/video0 diff --git a/video/win10 b/video/win10 deleted file mode 100755 index 8e5fbbc..0000000 --- a/video/win10 +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -sudo chown -R timmy:timmy /dev/shm -virsh start win10-clone -looking-glass-client -F diff --git a/video/ytdl-dlplst b/video/ytdl-dlplst deleted file mode 100755 index f7b4a47..0000000 --- a/video/ytdl-dlplst +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -echo "Getting Video ID's..." -for id in $(youtube-dl --get-id "$1"); do - youtube-dl --newline "https://youtu.be/$id" & -done -- cgit v1.2.3