Skip to content

This is a minimalist service that provide a web interface to play MKV videos from an FTP server

Notifications You must be signed in to change notification settings

sylvanld/web-player

Repository files navigation

Video Player

This is a minimalist service that provide a web interface to play MKV videos from an FTP server

Configuration

When starting the container, you must provide the following environment variables

Hash password

Here is an example of how you can hash your password using python:

import hashlib

my_password = "toto"
password_hash = hashlib.sha256(my_password.encode("utf-8")).hexdigest()
print(password_hash)

Videos manifest

It is a simple JSON file that map a name to a file.

This file must be included along with the videos at the root of your FTP server.

{
    "videos": [
        {
            "title": "My video",
            "filename": "my_video.mkv"
        }
    ]
}

About

This is a minimalist service that provide a web interface to play MKV videos from an FTP server

Resources

Stars

Watchers

Forks

Packages

No packages published