From 3a94ec11742a132f141bda6d18a0c429acead097 Mon Sep 17 00:00:00 2001 From: ThisBirchWood Date: Wed, 15 Jan 2025 14:47:02 +0000 Subject: [PATCH] Added basic video player, that uses playerjs library (HLS streaming doesn't work well with normal video tag) --- .gitignore | 1 + templates/video.html | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 .gitignore create mode 100644 templates/video.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4e7f442 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +hls \ No newline at end of file diff --git a/templates/video.html b/templates/video.html new file mode 100644 index 0000000..179aa85 --- /dev/null +++ b/templates/video.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} + +{% block main_content %} + + + + + + + + + + +{% endblock %} \ No newline at end of file