From f4b77c42ca78c5265c4754caeef5289e3841f5e9 Mon Sep 17 00:00:00 2001 From: Timmy Keller Date: Thu, 23 Dec 2021 22:20:14 -0600 Subject: some youtube dl script and dmenu runapplication and test timmywm and modified other scripts idjlol --- video/ffconcat | 17 ++++++----------- video/ytdl-dlplst | 5 +++++ 2 files changed, 11 insertions(+), 11 deletions(-) create mode 100755 video/ytdl-dlplst (limited to 'video') diff --git a/video/ffconcat b/video/ffconcat index 7e903f6..06eb066 100755 --- a/video/ffconcat +++ b/video/ffconcat @@ -1,17 +1,12 @@ #!/bin/sh -#for out; do true; done # get last argument -filelist=$(mktemp ${TMPDIR:-/tmp}/ffconcat.XXXXXX) || exit -pwd="$(pwd)" -for out; do - [ -e "$pwd/$out" ] \ - && files="$pwd/$out\n$files" \ - || ([ -e "$out" ] && files="$out\n$files") -done -echo $files | tail +2 | sed -n "s/\(.\+\)/file '\1'/p"# > $filelist +ffconcat="$(ls | sed "s/^/file '/; s/$/'/")" +echo "$ffconcat" > ffconcat ffmpeg \ -f concat \ -safe 0 \ - -i $filelist \ + -i ffconcat \ -c copy \ - $out + out.mkv + +rm ffconcat diff --git a/video/ytdl-dlplst b/video/ytdl-dlplst new file mode 100755 index 0000000..f7b4a47 --- /dev/null +++ b/video/ytdl-dlplst @@ -0,0 +1,5 @@ +#!/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