{"id":13908141,"url":"https://github.com/Seitenbau/SBideo","last_synced_at":"2025-07-18T07:30:37.547Z","repository":{"id":145376191,"uuid":"106813609","full_name":"Seitenbau/SBideo","owner":"Seitenbau","description":"A simple video archive including video transcoding","archived":false,"fork":false,"pushed_at":"2019-03-20T12:34:25.000Z","size":9751,"stargazers_count":15,"open_issues_count":11,"forks_count":6,"subscribers_count":10,"default_branch":"master","last_synced_at":"2024-11-25T17:45:53.649Z","etag":null,"topics":["ffmpeg","video-archive","video-streaming","video-transcoding"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Seitenbau.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2017-10-13T10:59:01.000Z","updated_at":"2024-05-11T18:51:41.000Z","dependencies_parsed_at":"2023-04-26T17:48:01.762Z","dependency_job_id":null,"html_url":"https://github.com/Seitenbau/SBideo","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/Seitenbau/SBideo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Seitenbau%2FSBideo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Seitenbau%2FSBideo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Seitenbau%2FSBideo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Seitenbau%2FSBideo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Seitenbau","download_url":"https://codeload.github.com/Seitenbau/SBideo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Seitenbau%2FSBideo/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265720337,"owners_count":23817211,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ffmpeg","video-archive","video-streaming","video-transcoding"],"created_at":"2024-08-06T23:02:29.816Z","updated_at":"2025-07-18T07:30:35.295Z","avatar_url":"https://github.com/Seitenbau.png","language":"JavaScript","funding_links":[],"categories":["HarmonyOS"],"sub_categories":["Windows Manager"],"readme":"# SBideo [![Build Status](https://travis-ci.org/Seitenbau/SBideo.svg?branch=master)](https://travis-ci.org/Seitenbau/SBideo) [![Dependencies](https://david-dm.org/Seitenbau/SBideo.svg)](https://david-dm.org/Seitenbau/SBideo)\n\n**DEMO**: https://seitenbau.github.io/SBideo/\n\nA very simplistic video archive including video transcoding and following features:\n\n* web interface for listing all videos in a flexible multi-level folder structure\n* video player\n* editable metadata for videos and folders e.g. title, description, speaker, tags\n* ultra fast client-side fuzzy search through video metadata\n* async video transcoding from any [ffmpeg](https://www.ffmpeg.org/) supported format to mp4\n* simple file system based data structure, no database required\n* deep links for every video, including exact start time\n* integrated web- and pseudo-streaming server (express)\n* very lightweight client-side code: total 28kb JS + 6kb CSS gzipped (based on [preact-cli](https://github.com/developit/preact-cli))\n\n## Basic Usage\n\nThe easiest way to run SBideo is using [Docker](https://www.docker.com/), there are ready-built containers available at [Docker Hub](https://hub.docker.com/u/seitenbau/).\n\n### Frontend Container\n\nJust pull the frontend container and mount it to your local `data` folder. Look at the the [data folder](https://github.com/Seitenbau/SBideo/tree/master/data) in this repo as a reference for your directory layout.\n\n```sh\ndocker pull seitenbau/sbideo\ndocker run -it -d -P -p 3000:3000 --mount type=bind,source=/data,target=/data sbideo:latest\n```\n\nNow the frontend is available at http://localhost:3000/\n\n### Transcoding Container\n\nThe SBideo frontend is only able to handle mp4 video, as it's the best format for showing videos on the web. To convert other video files to mp4, SBideo comes with a transcoding option which handles all sorts of video formats.\nAll the video files you put in your `/incoming` folder will be automatically transcoded and transferred to the `/data` folder in this example:\n\n```sh\ndocker pull seitenbau/sbideo-transcoder\ndocker run -it -d -P --mount type=bind,source=/incoming,target=/incoming --mount type=bind,source=/data,target=/data sbideo-transcoder:latest\n```\n\nNow every time you add video files into the folder `incoming`, the transcoding will start automatically. After transcoding is done, the new videos will be visible in the frontend.\n\n## Security\n\nSBideo is kept very simple. Therefore, it has no built-in permission management etc (see https://github.com/Seitenbau/SBideo/issues/9). Everyone who is able to access the frontend is allowed to edit the video meta data. In case you want to restrict editing rights, you may want to simple restrict POST requests to the server via a reverse proxy.\n\n## Development\n\nSBideo is based on [preact-cli](https://github.com/developit/preact-cli); for detailed explanation on how things work, checkout the [CLI Readme](https://github.com/developit/preact-cli/blob/master/README.md).\n\n### Basic CLI Commands\n\n```bash\n# install dependencies\nyarn install\n\n# serve with hot reload at localhost:8080\nyarn dev\n\n# build for production with minification\nyarn build\n\n# test the production build locally\nyarn serve\n\n# run tests with jest and preact-render-spy\nyarn test\n\n# code linting\nyarn lint\n```\n\n## Migrate script\n\nIn case you want to migrate an old file based video archive, check the branch [migrateScript](https://github.com/Seitenbau/SBideo/tree/migrateScript); maybe it helps.\n\n# Credits\n\nThis project was initially created at [SEITENBAU Hackathon 2017](https://hackathon.seitenbau.com/).\n\nDemo videos: (c) copyright 2008, Blender Foundation / www.bigbuckbunny.org\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSeitenbau%2FSBideo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FSeitenbau%2FSBideo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSeitenbau%2FSBideo/lists"}