pub / yt2html

Fetches Youtube content via RSS and provides a chronological timeline
git clone https://src.jayvii.de/pub/yt2html.git
Home | Log | Files | Exports | Refs | README | RSS

commit 3895a499b54d1378e23a2e91d4bdadba213d7b10
parent 9db68a1924a4c5ba672d82cc3ff002e9772e6e12
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date:   Sat,  1 Mar 2025 14:12:44 +0100

feat: declare as YT short, if the description only contains hashtags

Diffstat:
Mindex.php | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/index.php b/index.php @@ -154,11 +154,14 @@ * We assume video is a short if any of the following applies: * has #short/#shorts in the title * has #short #shorts in the description + * description only contains #hashtags * has no description at all */ + $vdesc = explode(" ", $video["desc"]); if ( preg_match('/#short(s)*/', $video["title"]) > 0 || preg_match('/#short(s)*/', $video["desc"]) > 0 || + preg_grep('/^#', $vdesc) == $vdesc || strlen($video["desc"]) == 0 ) { continue;