From 5806277012af1deb84185170d0035393ad8b42ec Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Fri, 12 Apr 2024 17:27:26 +0530 Subject: [PATCH] Make test hlssink directory a part of repo --- .gitignore | 5 ++++- hlssink/index.html | 29 +++++++++++++++++++++++++++++ hlssink/remove.sh | 5 +++++ 3 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 hlssink/index.html create mode 100755 hlssink/remove.sh diff --git a/.gitignore b/.gitignore index 1854039..611f1ab 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ -hlssink/ target *~ *.bk @@ -8,3 +7,7 @@ builddir .meson-subproject-wrap-hash.txt Cargo.lock *.mkv +*.m3u8 +*.ts +*.m4s +*.mp4 diff --git a/hlssink/index.html b/hlssink/index.html new file mode 100644 index 0000000..157ddd2 --- /dev/null +++ b/hlssink/index.html @@ -0,0 +1,29 @@ + + + + + + + + + + + + diff --git a/hlssink/remove.sh b/hlssink/remove.sh new file mode 100755 index 0000000..af9e650 --- /dev/null +++ b/hlssink/remove.sh @@ -0,0 +1,5 @@ +#!/bin/sh +find . -name "*.m3u8" -type f -delete +find . -name "*.ts" -type f -delete +find . -name "*.mp4" -type f -delete +find . -name "*.m4s" -type f -delete