Take control over your live stream video by running it yourself. Streaming + chat out of the box.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
gingervitis d1cc0dfd97 start on social links editing, wip 5 years ago
..
README.md - start a README to document config admin later 5 years ago
constants.tsx start on social links editing, wip 5 years ago
edit-directory.tsx start video variant page; setup video variant table for modals wip; use dark theme as default 5 years ago
edit-social-links.tsx start on social links editing, wip 5 years ago
edit-tags.tsx clean up and style tweaks 5 years ago
form-textfield.tsx start video variant page; setup video variant table for modals wip; use dark theme as default 5 years ago
form-toggleswitch.tsx clean up and style tweaks 5 years ago
social-icons-dropdown.tsx start on social links editing, wip 5 years ago
video-latency.tsx rename form 5 years ago
video-variant-form.tsx cleanup 5 years ago
video-variants-table.tsx add delete variant button 5 years ago

README.md

Config

TODO: explain how to use

and how the custom form-xxxx components work together.

Misc notes

  • instanceDetails needs to be filled out before yp.enabled can be turned on.

Config data structure (with default values)

{
  streamKey: '',
  instanceDetails: {
    tags: [],
    nsfw: false,
  },
  yp: {
    enabled: false,
    instance: '',
  },
  videoSettings: {
    videoQualityVariants: [
      {
        audioPassthrough: false,
        videoPassthrough: false,
        videoBitrate: 0,
        audioBitrate: 0,
        framerate: 0,
      },
    ],
  }
};