tAdd script generating corona playlist - bitreich-tv - meme tv encoding and str… | |
git clone git://src.adamsgaard.dk/bitreich-tv | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit d15fbcfcb24de394600dfe62c201982de530f85e | |
parent fefe9e30407cce611295a3c47871d5bbd9c35b8d | |
Author: Anders Damsgaard <[email protected]> | |
Date: Sun, 16 Aug 2020 22:58:27 +0200 | |
Add script generating corona playlist | |
Diffstat: | |
A brtv-corona.sh | 11 +++++++++++ | |
1 file changed, 11 insertions(+), 0 deletions(-) | |
--- | |
diff --git a/brtv-corona.sh b/brtv-corona.sh | |
t@@ -0,0 +1,11 @@ | |
+#!/bin/sh | |
+# outputs m3u playlist of memes with 'corona-' prefix | |
+ | |
+set -e | |
+ | |
+annna="/home/ad/code/annna" | |
+tagfile="modules/hashtags/hashtags.txt" | |
+ | |
+grep -E "^#corona-" "${annna}/${tagfile}" | \ | |
+bin/brtv-generate-playlist.sh | \ | |
+bin/brtv-playlist-to-m3u.sh |