knotteye
/
satyr
Archiviert
1
0
Fork 0
A self hosted livestreaming server.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Dieses Repo ist archiviert. Du kannst Dateien sehen und es klonen, kannst aber nicht pushen oder Issues/Pull-Requests öffnen.
 
 
 
 
 
 
knotteye a8a05a992e Merge pull request 'Update package version for release' (#25) from develop into master vor 3 Jahren
config Big Refactor vor 4 Jahren
docs Clarify some documentation vor 3 Jahren
install Update documentation with hwaccleration issues vor 3 Jahren
site Check if the video object still exists before restarting the timeout vor 3 Jahren
src Disable CRF when using hwaccel vor 3 Jahren
templates Add code for re-checking if a user has gone live since loading the page vor 3 Jahren
.gitignore Big commit. Implement handlers for everything that's currently rendered server side in the client-side frontend. vor 4 Jahren
CONTRIBUTORS Add contributors file vor 5 Jahren
LICENSE Add package.json and LICENSE, name the project. vor 5 Jahren
README.md Update documentation for new repository host vor 4 Jahren
package-lock.json Modify the migration script to import existing data. vor 3 Jahren
package.json Update package version for release vor 3 Jahren
tsconfig.json Changed init functions to be more consistent. vor 5 Jahren

README.md

Satyr: A livestreaming server

System dependencies: A stable version of node>=10, mysql3 (or a compatible implementation such as MariaDB), and ffmpeg >=4.2

Setup Instructions

git clone https://pond.waldn.net/git/knotteye/satyr.git
cd satyr
npm install
npm run setup

Follow the instructions after setup runs.

Run the server

npm run start

You can also skip checking the database version and compiling templates (if you don't use server-side rendering) on startup.

npm run start -- --skip-migrate --skip-compile
# don't forget to migrate manually when you update
npm run migrate
# and compile templates after any changes
npm run make-templates

Contributing

  1. Fork the repository
  2. Create new feature branch
  3. Write Code
  4. Create an request to merge back into develop