├── .gitignore ├── .vscode └── settings.json ├── README.md ├── install-bbb-streaming.sh ├── owncast ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Earthfile ├── LICENSE ├── README.md ├── activitypub │ ├── activitypub.go │ ├── apmodels │ │ ├── activity.go │ │ ├── actor.go │ │ ├── actor_test.go │ │ ├── hashtag.go │ │ ├── inboxRequest.go │ │ ├── message.go │ │ ├── utils.go │ │ └── webfinger.go │ ├── controllers │ │ ├── actors.go │ │ ├── followers.go │ │ ├── inbox.go │ │ ├── nodeinfo.go │ │ ├── object.go │ │ ├── outbox.go │ │ └── webfinger.go │ ├── crypto │ │ ├── keys.go │ │ ├── publicKey.go │ │ └── sign.go │ ├── inbox │ │ ├── announce.go │ │ ├── chat.go │ │ ├── constants.go │ │ ├── create.go │ │ ├── follow.go │ │ ├── like.go │ │ ├── undo.go │ │ ├── update.go │ │ ├── worker.go │ │ ├── worker_test.go │ │ └── workerpool.go │ ├── outbox │ │ └── outbox.go │ ├── persistence │ │ ├── followers.go │ │ └── persistence.go │ ├── requests │ │ ├── acceptFollow.go │ │ └── http.go │ ├── resolvers │ │ ├── follow.go │ │ └── resolve.go │ ├── router.go │ ├── webfinger │ │ └── webfinger.go │ └── workerpool │ │ └── outbound.go ├── auth │ ├── auth.go │ ├── fediverse │ │ ├── fediverse.go │ │ └── fediverse_test.go │ ├── indieauth │ │ ├── client.go │ │ ├── helpers.go │ │ ├── random.go │ │ ├── request.go │ │ ├── response.go │ │ └── server.go │ └── persistence.go ├── build │ ├── .gitignore │ ├── admin │ │ └── bundleAdmin.sh │ ├── javascript │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── postcss.config.js │ │ └── tailwind.config.js │ └── release │ │ ├── build.sh │ │ ├── docker-nightly.sh │ │ └── docker-webv2.sh ├── config │ ├── config.go │ ├── configUtils.go │ ├── constants.go │ ├── defaults.go │ ├── updaterConfig_enabled.go │ └── verifyInstall.go ├── controllers │ ├── admin.go │ ├── admin │ │ ├── chat.go │ │ ├── config.go │ │ ├── connectedClients.go │ │ ├── disconnect.go │ │ ├── externalAPIUsers.go │ │ ├── federation.go │ │ ├── followers.go │ │ ├── hardware.go │ │ ├── index.go │ │ ├── logs.go │ │ ├── notifications.go │ │ ├── serverConfig.go │ │ ├── status.go │ │ ├── update.go │ │ ├── video.go │ │ ├── viewers.go │ │ ├── webhooks.go │ │ └── yp.go │ ├── auth │ │ ├── fediverse │ │ │ └── fediverse.go │ │ └── indieauth │ │ │ ├── client.go │ │ │ └── server.go │ ├── chat.go │ ├── config.go │ ├── constants.go │ ├── controllers.go │ ├── embed.go │ ├── emoji.go │ ├── followers.go │ ├── hls.go │ ├── index.go │ ├── logo.go │ ├── notifications.go │ ├── pagination.go │ ├── ping.go │ ├── playbackMetrics.go │ ├── remoteFollow.go │ ├── status.go │ └── video.go ├── core │ ├── chat │ │ ├── chat.go │ │ ├── chatclient.go │ │ ├── concurrentConnections.go │ │ ├── concurrentConnections_freebsd.go │ │ ├── concurrentConnections_windows.go │ │ ├── events.go │ │ ├── events │ │ │ ├── actionEvent.go │ │ │ ├── connectedClientInfo.go │ │ │ ├── events.go │ │ │ ├── eventtype.go │ │ │ ├── fediverseEngagementEvent.go │ │ │ ├── nameChangeEvent.go │ │ │ ├── setMessageVisibilityEvent.go │ │ │ ├── systemMessageEvent.go │ │ │ ├── userDisabledEvent.go │ │ │ ├── userJoinedEvent.go │ │ │ └── userMessageEvent.go │ │ ├── messageRendering_test.go │ │ ├── messages.go │ │ ├── persistence.go │ │ ├── pruner.go │ │ ├── server.go │ │ ├── utils.go │ │ └── utils_windows.go │ ├── core.go │ ├── data │ │ ├── activitypub.go │ │ ├── cache.go │ │ ├── config.go │ │ ├── configEntry.go │ │ ├── crypto.go │ │ ├── data.go │ │ ├── data_test.go │ │ ├── datastoreMigrations.go │ │ ├── defaults.go │ │ ├── messages.go │ │ ├── migrations.go │ │ ├── persistence.go │ │ ├── types.go │ │ ├── users.go │ │ ├── utils.go │ │ └── webhooks.go │ ├── offlineState.go │ ├── playlist │ │ └── writer.go │ ├── rtmp │ │ ├── broadcaster.go │ │ ├── rtmp.go │ │ ├── utils.go │ │ └── utils_test.go │ ├── stats.go │ ├── status.go │ ├── storage.go │ ├── storageproviders │ │ ├── local.go │ │ └── s3Storage.go │ ├── streamState.go │ ├── transcoder │ │ ├── codecs.go │ │ ├── fileWriterReceiverService.go │ │ ├── hlsFilesystemCleanup.go │ │ ├── hlsHandler.go │ │ ├── thumbnailGenerator.go │ │ ├── transcoder.go │ │ ├── transcoder_nvenc_test.go │ │ ├── transcoder_omx_test.go │ │ ├── transcoder_vaapi_test.go │ │ ├── transcoder_videotoolbox_test.go │ │ ├── transcoder_x264_test.go │ │ └── utils.go │ ├── user │ │ ├── externalAPIUser.go │ │ └── user.go │ └── webhooks │ │ ├── chat.go │ │ ├── chat_test.go │ │ ├── stream.go │ │ ├── stream_test.go │ │ ├── webhooks.go │ │ ├── webhooks_test.go │ │ └── workerpool.go ├── db │ ├── README.md │ ├── db.go │ ├── models.go │ ├── query.sql │ ├── query.sql.go │ └── schema.sql ├── docs │ ├── DESIGN.md │ ├── SECURITY.md │ ├── api │ │ └── index.html │ ├── dependencies.md │ └── product-definition.md ├── examples │ ├── owncast-sample.service │ └── owncast-systemd-service.md ├── geoip │ └── geoip.go ├── go.mod ├── go.sum ├── logging │ ├── logging.go │ └── paths.go ├── main.go ├── metrics │ ├── alerting.go │ ├── hardware.go │ ├── healthOverview.go │ ├── metrics.go │ ├── playback.go │ ├── prometheus.go │ ├── timestampedValue.go │ └── viewers.go ├── models │ ├── baseAPIResponse.go │ ├── broadcaster.go │ ├── client.go │ ├── currentBroadcast.go │ ├── emoji.go │ ├── eventType.go │ ├── externalAction.go │ ├── federatedActivity.go │ ├── follower.go │ ├── ipAddress.go │ ├── latencyLevels.go │ ├── notification.go │ ├── pingMessage.go │ ├── playlist.go │ ├── s3Storage.go │ ├── socialHandle.go │ ├── stats.go │ ├── status.go │ ├── storageProvider.go │ ├── streamHealth.go │ ├── streamOutputVariant.go │ ├── userJoinedEvent.go │ ├── viewer.go │ └── webhook.go ├── notifications │ ├── browser │ │ └── browser.go │ ├── channels.go │ ├── discord │ │ └── discord.go │ ├── notifications.go │ ├── persistence.go │ └── twitter │ │ └── twitter.go ├── openapi.yaml ├── renovate.json ├── router │ ├── middleware │ │ ├── activityPub.go │ │ ├── auth.go │ │ ├── caching.go │ │ ├── cors.go │ │ ├── headers.go │ │ └── pagination.go │ └── router.go ├── sqlc.yaml ├── static │ ├── admin │ │ ├── 404 │ │ │ └── index.html │ │ ├── _next │ │ │ └── static │ │ │ │ ├── IF0q45tHTUnbAhOX9pFCQ │ │ │ │ ├── _buildManifest.js │ │ │ │ ├── _middlewareManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── chunks │ │ │ │ ├── 1017-0760c7f39ffcc2a7.js │ │ │ │ ├── 1080-1a127ea7f5a8eb3d.js │ │ │ │ ├── 1371-f41477e42ee50603.js │ │ │ │ ├── 1556-f79a922e799c7a06.js │ │ │ │ ├── 1741-d9d648ade4ad86b9.js │ │ │ │ ├── 1758-3a8e1364ffda64ee.js │ │ │ │ ├── 1829-f5c4fb462b2f7e98.js │ │ │ │ ├── 1912.40e8274b3898c5b0.js │ │ │ │ ├── 2429-ccb4d7fa1648dd38.js │ │ │ │ ├── 2494-8114e9c6571377d1.js │ │ │ │ ├── 2589-9a64928383be2ad7.js │ │ │ │ ├── 29107295-4a69275373f23f88.js │ │ │ │ ├── 36bcf0ca-110fd889741d5f41.js │ │ │ │ ├── 4578-afc9eff4fbf5ecb1.js │ │ │ │ ├── 4763-7fd93797a527a971.js │ │ │ │ ├── 5473-623385148d67cba2.js │ │ │ │ ├── 5533-096cc7dc6703128f.js │ │ │ │ ├── 6003-f37682e25271f05f.js │ │ │ │ ├── 6132-0f911799dd6dd847.js │ │ │ │ ├── 6489-cea2e8971ed16ad4.js │ │ │ │ ├── 7751-48959ec0f11e9080.js │ │ │ │ ├── 7910-699eb8ed3467dc00.js │ │ │ │ ├── 8091-5bc21baa6d0d3232.js │ │ │ │ ├── 8879-af8bf87fdc518c08.js │ │ │ │ ├── framework-79bce4a3a540b080.js │ │ │ │ ├── main-c4d96150fb4f93a7.js │ │ │ │ ├── pages │ │ │ │ │ ├── _app-e57b2a440c783b12.js │ │ │ │ │ ├── _error-785557186902809b.js │ │ │ │ │ ├── access-tokens-d328b918d1f9b3d4.js │ │ │ │ │ ├── actions-9278698db4cd1a16.js │ │ │ │ │ ├── chat │ │ │ │ │ │ ├── messages-0df125d8b9455827.js │ │ │ │ │ │ └── users-c3f6235e6932151e.js │ │ │ │ │ ├── config-chat-bacb12d23264144b.js │ │ │ │ │ ├── config-federation-ea0f018fb4193b61.js │ │ │ │ │ ├── config-notify-10a8844dc11ca4b2.js │ │ │ │ │ ├── config-public-details-94ff52653eb2586e.js │ │ │ │ │ ├── config-server-details-cd516688accb84d3.js │ │ │ │ │ ├── config-social-items-42e2ed4eed8d4dd2.js │ │ │ │ │ ├── config-storage-5ff120c715bfdb04.js │ │ │ │ │ ├── config-video-32d86e0ba98dc6fe.js │ │ │ │ │ ├── federation │ │ │ │ │ │ ├── actions-7cfffddef3b58d86.js │ │ │ │ │ │ └── followers-d2d105c342c79f98.js │ │ │ │ │ ├── hardware-info-4723b20a84e4f461.js │ │ │ │ │ ├── help-deeb1c0f667c7d75.js │ │ │ │ │ ├── index-e0ac83ceaf99b5f0.js │ │ │ │ │ ├── logs-df4b23b85b8ac818.js │ │ │ │ │ ├── stream-health-4a811c8adeb950de.js │ │ │ │ │ ├── upgrade-1dcaa9f0a72f02f8.js │ │ │ │ │ ├── viewer-info-03fcbea265510389.js │ │ │ │ │ └── webhooks-651cb241952e0e4a.js │ │ │ │ ├── polyfills-5cd94c89d3acac5f.js │ │ │ │ └── webpack-da6d6ade1d5643c2.js │ │ │ │ └── css │ │ │ │ ├── 7e98ab6b3b660d68.css │ │ │ │ └── e773f9ad06a56dc3.css │ │ ├── access-tokens │ │ │ └── index.html │ │ ├── actions │ │ │ └── index.html │ │ ├── chat │ │ │ ├── messages │ │ │ │ └── index.html │ │ │ └── users │ │ │ │ └── index.html │ │ ├── config-chat │ │ │ └── index.html │ │ ├── config-federation │ │ │ └── index.html │ │ ├── config-notify │ │ │ └── index.html │ │ ├── config-public-details │ │ │ └── index.html │ │ ├── config-server-details │ │ │ └── index.html │ │ ├── config-social-items │ │ │ └── index.html │ │ ├── config-storage │ │ │ └── index.html │ │ ├── config-video │ │ │ └── index.html │ │ ├── federation │ │ │ ├── actions │ │ │ │ └── index.html │ │ │ └── followers │ │ │ │ └── index.html │ │ ├── fediverse-white.png │ │ ├── hardware-info │ │ │ └── index.html │ │ ├── help │ │ │ └── index.html │ │ ├── index.html │ │ ├── logs │ │ │ └── index.html │ │ ├── stream-health │ │ │ └── index.html │ │ ├── upgrade │ │ │ └── index.html │ │ ├── viewer-info │ │ │ └── index.html │ │ └── webhooks │ │ │ └── index.html │ ├── golive.html.tmpl │ ├── metadata.html.tmpl │ ├── offline.ts │ └── static.go ├── test │ ├── .gitignore │ ├── README.md │ ├── automated │ │ ├── .gitignore │ │ ├── api │ │ │ ├── admin.test.js │ │ │ ├── chat.test.js │ │ │ ├── chatmoderation.test.js │ │ │ ├── chatusers.test.js │ │ │ ├── configmanagement.test.js │ │ │ ├── index.test.js │ │ │ ├── integrations.test.js │ │ │ ├── lib │ │ │ │ └── chat.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── run.sh │ │ ├── browser │ │ │ ├── README.md │ │ │ ├── admin.test.js │ │ │ ├── bot-share-search-scrapers.test.js │ │ │ ├── chat-embed.test.js │ │ │ ├── jest.config.json │ │ │ ├── lib │ │ │ │ └── errors.js │ │ │ ├── main.test.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── run.sh │ │ │ ├── screenshots │ │ │ │ └── .gitkeep │ │ │ ├── tests │ │ │ │ ├── chat.js │ │ │ │ └── video.js │ │ │ └── video-embed.test.js │ │ ├── hls │ │ │ ├── hls.test.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── run.sh │ │ └── test.mp4 │ ├── fakeChat.js │ ├── load │ │ ├── README.md │ │ ├── badchatdata.js │ │ ├── chatLoadTest.js │ │ ├── hls.yaml │ │ ├── httpGetTest.yaml │ │ ├── package-lock.json │ │ └── package.json │ ├── ocTestStream.sh │ ├── package-lock.json │ ├── package.json │ └── userColorsTest.js ├── utils │ ├── accessTokens.go │ ├── accessTokens_test.go │ ├── backup.go │ ├── clientId.go │ ├── nulltime.go │ ├── performanceTimer.go │ ├── phraseGenerator.go │ ├── restendpointhelper.go │ ├── restendpointhelper_test.go │ ├── utils.go │ └── utils_test.go ├── webroot │ ├── favicon.ico │ ├── img │ │ ├── airplay.png │ │ ├── authenticated.svg │ │ ├── ban-user-grey.svg │ │ ├── ban-user.svg │ │ ├── bot.svg │ │ ├── browser-push-notifications-settings.png │ │ ├── emoji │ │ │ ├── Reaper-gg.png │ │ │ ├── Reaper-hi.png │ │ │ ├── Reaper-hype.png │ │ │ ├── Reaper-lol.png │ │ │ ├── Reaper-love.png │ │ │ ├── Reaper-rage.png │ │ │ ├── Reaper-rip.png │ │ │ ├── Reaper-wtf.png │ │ │ ├── ac-box.png │ │ │ ├── ac-construction.png │ │ │ ├── ac-fossil.png │ │ │ ├── ac-item-leaf.png │ │ │ ├── ac-kkslider.png │ │ │ ├── ac-moneytree.png │ │ │ ├── ac-mosquito.png │ │ │ ├── ac-shirt.png │ │ │ ├── ac-song.png │ │ │ ├── ac-tree.png │ │ │ ├── ac-turnip.png │ │ │ ├── ac-weeds.png │ │ │ ├── alert.gif │ │ │ ├── bananadance.gif │ │ │ ├── bb8.png │ │ │ ├── beerparrot.gif │ │ │ ├── bells.png │ │ │ ├── birthdaypartyparrot.gif │ │ │ ├── blacklightsaber.png │ │ │ ├── bluelightsaber.png │ │ │ ├── bluntparrot.gif │ │ │ ├── bobaparrot.gif │ │ │ ├── cakeparrot.gif │ │ │ ├── chewbacca.png │ │ │ ├── chillparrot.gif │ │ │ ├── christmasparrot.gif │ │ │ ├── coffeeparrot.gif │ │ │ ├── confusedparrot.gif │ │ │ ├── copparrot.gif │ │ │ ├── coronavirus.png │ │ │ ├── covid19parrot.gif │ │ │ ├── cryptoparrot.gif │ │ │ ├── dabparrot.gif │ │ │ ├── dadparrot.gif │ │ │ ├── daftpunkparrot.gif │ │ │ ├── darkbeerparrot.gif │ │ │ ├── darkmodeparrot.gif │ │ │ ├── darth_vader.png │ │ │ ├── dealwithitparrot.gif │ │ │ ├── death_star.png │ │ │ ├── discoparrot.gif │ │ │ ├── division-gg.png │ │ │ ├── division-hi.png │ │ │ ├── division-hype.png │ │ │ ├── division-lol.png │ │ │ ├── division-omg.png │ │ │ ├── division-rage.png │ │ │ ├── division-rip.png │ │ │ ├── division-wtf.png │ │ │ ├── docparrot.gif │ │ │ ├── donutparrot.gif │ │ │ ├── doom_mad.gif │ │ │ ├── empire.png │ │ │ ├── everythingsfineparrot.gif │ │ │ ├── evilparrot.gif │ │ │ ├── explodyparrot.gif │ │ │ ├── fixparrot.gif │ │ │ ├── flyingmoneyparrot.gif │ │ │ ├── footballparrot.gif │ │ │ ├── gabe1.png │ │ │ ├── gabe2.png │ │ │ ├── gentlemanparrot.gif │ │ │ ├── githubparrot.gif │ │ │ ├── goomba.gif │ │ │ ├── gothparrot.gif │ │ │ ├── hamburgerparrot.gif │ │ │ ├── harrypotterparrot.gif │ │ │ ├── headbangingparrot.gif │ │ │ ├── headingparrot.gif │ │ │ ├── headsetparrot.gif │ │ │ ├── hmmparrot.gif │ │ │ ├── hypnoparrot.gif │ │ │ ├── icecreamparrot.gif │ │ │ ├── illuminatiparrot.gif │ │ │ ├── jediparrot.gif │ │ │ ├── keanu_thanks.gif │ │ │ ├── laptop_parrot.gif │ │ │ ├── loveparrot.gif │ │ │ ├── mandalorian.png │ │ │ ├── margaritaparrot.gif │ │ │ ├── mario.gif │ │ │ ├── matrixparrot.gif │ │ │ ├── meldparrot.gif │ │ │ ├── metalparrot.gif │ │ │ ├── michaeljacksonparrot.gif │ │ │ ├── moonparrot.gif │ │ │ ├── moonwalkingparrot.gif │ │ │ ├── mustacheparrot.gif │ │ │ ├── nicolas_cage_party.gif │ │ │ ├── nodeparrot.gif │ │ │ ├── norwegianblueparrot.gif │ │ │ ├── opensourceparrot.gif │ │ │ ├── originalparrot.gif │ │ │ ├── owncast.png │ │ │ ├── palpatine.png │ │ │ ├── papalparrot.gif │ │ │ ├── parrot.gif │ │ │ ├── parrotnotfound.gif │ │ │ ├── partyparrot.gif │ │ │ ├── phparrot.gif │ │ │ ├── pirateparrot.gif │ │ │ ├── pizzaparrot.gif │ │ │ ├── pokeparrot.gif │ │ │ ├── popcornparrot.gif │ │ │ ├── porg.png │ │ │ ├── portalparrot.gif │ │ │ ├── pumpkinparrot.gif │ │ │ ├── quadparrot.gif │ │ │ ├── r2d2.png │ │ │ ├── redenvelopeparrot.gif │ │ │ ├── ripparrot.gif │ │ │ ├── rotatingparrot.gif │ │ │ ├── ryangoslingparrot.gif │ │ │ ├── rythmicalparrot.gif │ │ │ ├── sadparrot.gif │ │ │ ├── schnitzelparrot.gif │ │ │ ├── scienceparrot.gif │ │ │ ├── shipitparrot.gif │ │ │ ├── shufflepartyparrot.gif │ │ │ ├── sintparrot.gif │ │ │ ├── sithparrot.gif │ │ │ ├── skiparrot.gif │ │ │ ├── sleepingparrot.gif │ │ │ ├── sonic.gif │ │ │ ├── spyparrot.gif │ │ │ ├── stalkerparrot.gif │ │ │ ├── starwars.png │ │ │ ├── stayhomeparrot.gif │ │ │ ├── storm_trooper.gif │ │ │ ├── stormtrooper.png │ │ │ ├── sushiparrot.gif │ │ │ ├── tacoparrot.gif │ │ │ ├── tennisparrot.gif │ │ │ ├── thanks.png │ │ │ ├── thumbsupparrot.gif │ │ │ ├── tiedyeparrot.gif │ │ │ ├── tpparrot.gif │ │ │ ├── transparront.gif │ │ │ ├── twinsparrot.gif │ │ │ ├── upvoteparrot.gif │ │ │ ├── vikingparrot.gif │ │ │ ├── wesmart.png │ │ │ ├── wfhparrot.gif │ │ │ ├── wineparrot.gif │ │ │ └── yoda.gif │ │ ├── favicon │ │ │ ├── android-icon-144x144.png │ │ │ ├── android-icon-192x192.png │ │ │ ├── android-icon-36x36.png │ │ │ ├── android-icon-48x48.png │ │ │ ├── android-icon-72x72.png │ │ │ ├── android-icon-96x96.png │ │ │ ├── apple-icon-114x114.png │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-144x144.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-180x180.png │ │ │ ├── apple-icon-57x57.png │ │ │ ├── apple-icon-60x60.png │ │ │ ├── apple-icon-72x72.png │ │ │ ├── apple-icon-76x76.png │ │ │ ├── apple-icon-precomposed.png │ │ │ ├── apple-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── ms-icon-144x144.png │ │ │ ├── ms-icon-150x150.png │ │ │ ├── ms-icon-310x310.png │ │ │ └── ms-icon-70x70.png │ │ ├── fediverse-black.png │ │ ├── fediverse-color.png │ │ ├── fediverse-white.png │ │ ├── follow.svg │ │ ├── hide-message-grey.svg │ │ ├── hide-message.svg │ │ ├── indieauth.png │ │ ├── like.svg │ │ ├── loading.gif │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── menu-filled.svg │ │ ├── menu-vert.svg │ │ ├── menu.svg │ │ ├── moderator-grey.svg │ │ ├── moderator-nobackground.svg │ │ ├── moderator.svg │ │ ├── notification-bell.svg │ │ ├── owncast-background.png │ │ ├── platformlogos │ │ │ ├── bandcamp.svg │ │ │ ├── default.svg │ │ │ ├── discord.svg │ │ │ ├── donate.svg │ │ │ ├── facebook.svg │ │ │ ├── fediverse.svg │ │ │ ├── follow.svg │ │ │ ├── github.svg │ │ │ ├── gitlab.svg │ │ │ ├── google.svg │ │ │ ├── instagram.svg │ │ │ ├── keyoxide.png │ │ │ ├── ko-fi.svg │ │ │ ├── lbry.svg │ │ │ ├── liberapay.svg │ │ │ ├── link.svg │ │ │ ├── linkedin.svg │ │ │ ├── mastodon.svg │ │ │ ├── matrix.svg │ │ │ ├── odysee.svg │ │ │ ├── patreon.svg │ │ │ ├── paypal.svg │ │ │ ├── snapchat.svg │ │ │ ├── soundcloud.svg │ │ │ ├── spotify.svg │ │ │ ├── steam.svg │ │ │ ├── tiktok.svg │ │ │ ├── twitch.svg │ │ │ ├── twitter.svg │ │ │ ├── xmpp.svg │ │ │ └── youtube.svg │ │ ├── repost.svg │ │ ├── smiley.png │ │ ├── user-icon.svg │ │ └── user-settings.svg │ ├── index-standalone-chat-readonly.html │ ├── index-standalone-chat-readwrite.html │ ├── index-standalone-chat.html │ ├── index-video-only.html │ ├── index.html │ ├── js │ │ ├── app-standalone-chat.js │ │ ├── app-video-only.js │ │ ├── app.js │ │ ├── chat │ │ │ └── register.js │ │ ├── components │ │ │ ├── auth-fediverse.js │ │ │ ├── auth-indieauth.js │ │ │ ├── auth-modal.js │ │ │ ├── chat-settings-modal.js │ │ │ ├── chat │ │ │ │ ├── chat-input.js │ │ │ │ ├── chat-menu.js │ │ │ │ ├── chat-message-view.js │ │ │ │ ├── chat.js │ │ │ │ ├── content-editable.js │ │ │ │ ├── message.js │ │ │ │ ├── moderator-actions.js │ │ │ │ └── username.js │ │ │ ├── external-action-modal.js │ │ │ ├── federation │ │ │ │ └── followers.js │ │ │ ├── fediverse-follow-modal.js │ │ │ ├── icons │ │ │ │ ├── AuthIcon.js │ │ │ │ ├── CaretDownIcon.js │ │ │ │ ├── ChatIcon.js │ │ │ │ ├── CheckIcon.js │ │ │ │ ├── CloseIcon.js │ │ │ │ ├── EditIcon.js │ │ │ │ ├── UserIcon.js │ │ │ │ └── index.js │ │ │ ├── latencyCompensator.js │ │ │ ├── notification.js │ │ │ ├── platform-logos-list.js │ │ │ ├── player.js │ │ │ ├── tab-bar.js │ │ │ └── video-poster.js │ │ ├── metrics │ │ │ └── playback.js │ │ ├── notification │ │ │ └── registerWeb.js │ │ ├── utils │ │ │ ├── chat.js │ │ │ ├── constants.js │ │ │ ├── helpers.js │ │ │ ├── user-colors.js │ │ │ └── websocket.js │ │ └── web_modules │ │ │ ├── @joeattardi │ │ │ └── emoji-button.js │ │ │ ├── @videojs │ │ │ └── themes │ │ │ │ └── fantasy │ │ │ │ └── index.css │ │ │ ├── common │ │ │ └── _commonjsHelpers-8c19dec8.js │ │ │ ├── htm.js │ │ │ ├── import-map.json │ │ │ ├── markjs │ │ │ └── dist │ │ │ │ └── mark.es6.min.js │ │ │ ├── micromodal │ │ │ └── dist │ │ │ │ └── micromodal.min.js │ │ │ ├── preact.js │ │ │ ├── preact │ │ │ └── hooks.js │ │ │ ├── tailwindcss │ │ │ └── dist │ │ │ │ └── tailwind.min.css │ │ │ └── videojs │ │ │ ├── dist │ │ │ ├── video-js.min.css │ │ │ └── video.min.js │ │ │ └── video-js.min.css │ ├── manifest.json │ ├── serviceWorker.js │ └── styles │ │ ├── app.css │ │ ├── chat.css │ │ ├── standalone-chat-readonly.css │ │ ├── standalone-chat-readwrite.css │ │ ├── user-content.css │ │ ├── video-only.css │ │ └── video.css └── yp │ ├── README.md │ ├── api.go │ └── yp.go ├── restart-streaming.sh ├── sample-env ├── start-streaming.sh └── stop-streaming.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/README.md -------------------------------------------------------------------------------- /install-bbb-streaming.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/install-bbb-streaming.sh -------------------------------------------------------------------------------- /owncast/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /owncast/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/CONTRIBUTING.md -------------------------------------------------------------------------------- /owncast/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/Dockerfile -------------------------------------------------------------------------------- /owncast/Earthfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/Earthfile -------------------------------------------------------------------------------- /owncast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/LICENSE -------------------------------------------------------------------------------- /owncast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/README.md -------------------------------------------------------------------------------- /owncast/activitypub/activitypub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/activitypub.go -------------------------------------------------------------------------------- /owncast/activitypub/apmodels/activity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/apmodels/activity.go -------------------------------------------------------------------------------- /owncast/activitypub/apmodels/actor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/apmodels/actor.go -------------------------------------------------------------------------------- /owncast/activitypub/apmodels/actor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/apmodels/actor_test.go -------------------------------------------------------------------------------- /owncast/activitypub/apmodels/hashtag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/apmodels/hashtag.go -------------------------------------------------------------------------------- /owncast/activitypub/apmodels/inboxRequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/apmodels/inboxRequest.go -------------------------------------------------------------------------------- /owncast/activitypub/apmodels/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/apmodels/message.go -------------------------------------------------------------------------------- /owncast/activitypub/apmodels/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/apmodels/utils.go -------------------------------------------------------------------------------- /owncast/activitypub/apmodels/webfinger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/apmodels/webfinger.go -------------------------------------------------------------------------------- /owncast/activitypub/controllers/actors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/controllers/actors.go -------------------------------------------------------------------------------- /owncast/activitypub/controllers/followers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/controllers/followers.go -------------------------------------------------------------------------------- /owncast/activitypub/controllers/inbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/controllers/inbox.go -------------------------------------------------------------------------------- /owncast/activitypub/controllers/nodeinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/controllers/nodeinfo.go -------------------------------------------------------------------------------- /owncast/activitypub/controllers/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/controllers/object.go -------------------------------------------------------------------------------- /owncast/activitypub/controllers/outbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/controllers/outbox.go -------------------------------------------------------------------------------- /owncast/activitypub/controllers/webfinger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/controllers/webfinger.go -------------------------------------------------------------------------------- /owncast/activitypub/crypto/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/crypto/keys.go -------------------------------------------------------------------------------- /owncast/activitypub/crypto/publicKey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/crypto/publicKey.go -------------------------------------------------------------------------------- /owncast/activitypub/crypto/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/crypto/sign.go -------------------------------------------------------------------------------- /owncast/activitypub/inbox/announce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/inbox/announce.go -------------------------------------------------------------------------------- /owncast/activitypub/inbox/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/inbox/chat.go -------------------------------------------------------------------------------- /owncast/activitypub/inbox/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/inbox/constants.go -------------------------------------------------------------------------------- /owncast/activitypub/inbox/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/inbox/create.go -------------------------------------------------------------------------------- /owncast/activitypub/inbox/follow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/inbox/follow.go -------------------------------------------------------------------------------- /owncast/activitypub/inbox/like.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/inbox/like.go -------------------------------------------------------------------------------- /owncast/activitypub/inbox/undo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/inbox/undo.go -------------------------------------------------------------------------------- /owncast/activitypub/inbox/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/inbox/update.go -------------------------------------------------------------------------------- /owncast/activitypub/inbox/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/inbox/worker.go -------------------------------------------------------------------------------- /owncast/activitypub/inbox/worker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/inbox/worker_test.go -------------------------------------------------------------------------------- /owncast/activitypub/inbox/workerpool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/inbox/workerpool.go -------------------------------------------------------------------------------- /owncast/activitypub/outbox/outbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/outbox/outbox.go -------------------------------------------------------------------------------- /owncast/activitypub/persistence/followers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/persistence/followers.go -------------------------------------------------------------------------------- /owncast/activitypub/persistence/persistence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/persistence/persistence.go -------------------------------------------------------------------------------- /owncast/activitypub/requests/acceptFollow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/requests/acceptFollow.go -------------------------------------------------------------------------------- /owncast/activitypub/requests/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/requests/http.go -------------------------------------------------------------------------------- /owncast/activitypub/resolvers/follow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/resolvers/follow.go -------------------------------------------------------------------------------- /owncast/activitypub/resolvers/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/resolvers/resolve.go -------------------------------------------------------------------------------- /owncast/activitypub/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/router.go -------------------------------------------------------------------------------- /owncast/activitypub/webfinger/webfinger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/webfinger/webfinger.go -------------------------------------------------------------------------------- /owncast/activitypub/workerpool/outbound.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/activitypub/workerpool/outbound.go -------------------------------------------------------------------------------- /owncast/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/auth/auth.go -------------------------------------------------------------------------------- /owncast/auth/fediverse/fediverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/auth/fediverse/fediverse.go -------------------------------------------------------------------------------- /owncast/auth/fediverse/fediverse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/auth/fediverse/fediverse_test.go -------------------------------------------------------------------------------- /owncast/auth/indieauth/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/auth/indieauth/client.go -------------------------------------------------------------------------------- /owncast/auth/indieauth/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/auth/indieauth/helpers.go -------------------------------------------------------------------------------- /owncast/auth/indieauth/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/auth/indieauth/random.go -------------------------------------------------------------------------------- /owncast/auth/indieauth/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/auth/indieauth/request.go -------------------------------------------------------------------------------- /owncast/auth/indieauth/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/auth/indieauth/response.go -------------------------------------------------------------------------------- /owncast/auth/indieauth/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/auth/indieauth/server.go -------------------------------------------------------------------------------- /owncast/auth/persistence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/auth/persistence.go -------------------------------------------------------------------------------- /owncast/build/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/build/.gitignore -------------------------------------------------------------------------------- /owncast/build/admin/bundleAdmin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/build/admin/bundleAdmin.sh -------------------------------------------------------------------------------- /owncast/build/javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/build/javascript/README.md -------------------------------------------------------------------------------- /owncast/build/javascript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/build/javascript/package-lock.json -------------------------------------------------------------------------------- /owncast/build/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/build/javascript/package.json -------------------------------------------------------------------------------- /owncast/build/javascript/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/build/javascript/postcss.config.js -------------------------------------------------------------------------------- /owncast/build/javascript/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/build/javascript/tailwind.config.js -------------------------------------------------------------------------------- /owncast/build/release/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/build/release/build.sh -------------------------------------------------------------------------------- /owncast/build/release/docker-nightly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/build/release/docker-nightly.sh -------------------------------------------------------------------------------- /owncast/build/release/docker-webv2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/build/release/docker-webv2.sh -------------------------------------------------------------------------------- /owncast/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/config/config.go -------------------------------------------------------------------------------- /owncast/config/configUtils.go: -------------------------------------------------------------------------------- 1 | package config 2 | -------------------------------------------------------------------------------- /owncast/config/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/config/constants.go -------------------------------------------------------------------------------- /owncast/config/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/config/defaults.go -------------------------------------------------------------------------------- /owncast/config/updaterConfig_enabled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/config/updaterConfig_enabled.go -------------------------------------------------------------------------------- /owncast/config/verifyInstall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/config/verifyInstall.go -------------------------------------------------------------------------------- /owncast/controllers/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/admin.go -------------------------------------------------------------------------------- /owncast/controllers/admin/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/admin/chat.go -------------------------------------------------------------------------------- /owncast/controllers/admin/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/admin/config.go -------------------------------------------------------------------------------- /owncast/controllers/admin/connectedClients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/admin/connectedClients.go -------------------------------------------------------------------------------- /owncast/controllers/admin/disconnect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/admin/disconnect.go -------------------------------------------------------------------------------- /owncast/controllers/admin/externalAPIUsers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/admin/externalAPIUsers.go -------------------------------------------------------------------------------- /owncast/controllers/admin/federation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/admin/federation.go -------------------------------------------------------------------------------- /owncast/controllers/admin/followers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/admin/followers.go -------------------------------------------------------------------------------- /owncast/controllers/admin/hardware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/admin/hardware.go -------------------------------------------------------------------------------- /owncast/controllers/admin/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/admin/index.go -------------------------------------------------------------------------------- /owncast/controllers/admin/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/admin/logs.go -------------------------------------------------------------------------------- /owncast/controllers/admin/notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/admin/notifications.go -------------------------------------------------------------------------------- /owncast/controllers/admin/serverConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/admin/serverConfig.go -------------------------------------------------------------------------------- /owncast/controllers/admin/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/admin/status.go -------------------------------------------------------------------------------- /owncast/controllers/admin/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/admin/update.go -------------------------------------------------------------------------------- /owncast/controllers/admin/video.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/admin/video.go -------------------------------------------------------------------------------- /owncast/controllers/admin/viewers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/admin/viewers.go -------------------------------------------------------------------------------- /owncast/controllers/admin/webhooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/admin/webhooks.go -------------------------------------------------------------------------------- /owncast/controllers/admin/yp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/admin/yp.go -------------------------------------------------------------------------------- /owncast/controllers/auth/fediverse/fediverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/auth/fediverse/fediverse.go -------------------------------------------------------------------------------- /owncast/controllers/auth/indieauth/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/auth/indieauth/client.go -------------------------------------------------------------------------------- /owncast/controllers/auth/indieauth/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/auth/indieauth/server.go -------------------------------------------------------------------------------- /owncast/controllers/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/chat.go -------------------------------------------------------------------------------- /owncast/controllers/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/config.go -------------------------------------------------------------------------------- /owncast/controllers/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/constants.go -------------------------------------------------------------------------------- /owncast/controllers/controllers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/controllers.go -------------------------------------------------------------------------------- /owncast/controllers/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/embed.go -------------------------------------------------------------------------------- /owncast/controllers/emoji.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/emoji.go -------------------------------------------------------------------------------- /owncast/controllers/followers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/followers.go -------------------------------------------------------------------------------- /owncast/controllers/hls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/hls.go -------------------------------------------------------------------------------- /owncast/controllers/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/index.go -------------------------------------------------------------------------------- /owncast/controllers/logo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/logo.go -------------------------------------------------------------------------------- /owncast/controllers/notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/notifications.go -------------------------------------------------------------------------------- /owncast/controllers/pagination.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/pagination.go -------------------------------------------------------------------------------- /owncast/controllers/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/ping.go -------------------------------------------------------------------------------- /owncast/controllers/playbackMetrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/playbackMetrics.go -------------------------------------------------------------------------------- /owncast/controllers/remoteFollow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/remoteFollow.go -------------------------------------------------------------------------------- /owncast/controllers/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/status.go -------------------------------------------------------------------------------- /owncast/controllers/video.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/controllers/video.go -------------------------------------------------------------------------------- /owncast/core/chat/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/chat.go -------------------------------------------------------------------------------- /owncast/core/chat/chatclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/chatclient.go -------------------------------------------------------------------------------- /owncast/core/chat/concurrentConnections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/concurrentConnections.go -------------------------------------------------------------------------------- /owncast/core/chat/concurrentConnections_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/concurrentConnections_freebsd.go -------------------------------------------------------------------------------- /owncast/core/chat/concurrentConnections_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/concurrentConnections_windows.go -------------------------------------------------------------------------------- /owncast/core/chat/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/events.go -------------------------------------------------------------------------------- /owncast/core/chat/events/actionEvent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/events/actionEvent.go -------------------------------------------------------------------------------- /owncast/core/chat/events/connectedClientInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/events/connectedClientInfo.go -------------------------------------------------------------------------------- /owncast/core/chat/events/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/events/events.go -------------------------------------------------------------------------------- /owncast/core/chat/events/eventtype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/events/eventtype.go -------------------------------------------------------------------------------- /owncast/core/chat/events/fediverseEngagementEvent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/events/fediverseEngagementEvent.go -------------------------------------------------------------------------------- /owncast/core/chat/events/nameChangeEvent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/events/nameChangeEvent.go -------------------------------------------------------------------------------- /owncast/core/chat/events/setMessageVisibilityEvent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/events/setMessageVisibilityEvent.go -------------------------------------------------------------------------------- /owncast/core/chat/events/systemMessageEvent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/events/systemMessageEvent.go -------------------------------------------------------------------------------- /owncast/core/chat/events/userDisabledEvent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/events/userDisabledEvent.go -------------------------------------------------------------------------------- /owncast/core/chat/events/userJoinedEvent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/events/userJoinedEvent.go -------------------------------------------------------------------------------- /owncast/core/chat/events/userMessageEvent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/events/userMessageEvent.go -------------------------------------------------------------------------------- /owncast/core/chat/messageRendering_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/messageRendering_test.go -------------------------------------------------------------------------------- /owncast/core/chat/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/messages.go -------------------------------------------------------------------------------- /owncast/core/chat/persistence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/persistence.go -------------------------------------------------------------------------------- /owncast/core/chat/pruner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/pruner.go -------------------------------------------------------------------------------- /owncast/core/chat/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/server.go -------------------------------------------------------------------------------- /owncast/core/chat/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/utils.go -------------------------------------------------------------------------------- /owncast/core/chat/utils_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/chat/utils_windows.go -------------------------------------------------------------------------------- /owncast/core/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/core.go -------------------------------------------------------------------------------- /owncast/core/data/activitypub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/data/activitypub.go -------------------------------------------------------------------------------- /owncast/core/data/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/data/cache.go -------------------------------------------------------------------------------- /owncast/core/data/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/data/config.go -------------------------------------------------------------------------------- /owncast/core/data/configEntry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/data/configEntry.go -------------------------------------------------------------------------------- /owncast/core/data/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/data/crypto.go -------------------------------------------------------------------------------- /owncast/core/data/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/data/data.go -------------------------------------------------------------------------------- /owncast/core/data/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/data/data_test.go -------------------------------------------------------------------------------- /owncast/core/data/datastoreMigrations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/data/datastoreMigrations.go -------------------------------------------------------------------------------- /owncast/core/data/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/data/defaults.go -------------------------------------------------------------------------------- /owncast/core/data/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/data/messages.go -------------------------------------------------------------------------------- /owncast/core/data/migrations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/data/migrations.go -------------------------------------------------------------------------------- /owncast/core/data/persistence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/data/persistence.go -------------------------------------------------------------------------------- /owncast/core/data/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/data/types.go -------------------------------------------------------------------------------- /owncast/core/data/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/data/users.go -------------------------------------------------------------------------------- /owncast/core/data/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/data/utils.go -------------------------------------------------------------------------------- /owncast/core/data/webhooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/data/webhooks.go -------------------------------------------------------------------------------- /owncast/core/offlineState.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/offlineState.go -------------------------------------------------------------------------------- /owncast/core/playlist/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/playlist/writer.go -------------------------------------------------------------------------------- /owncast/core/rtmp/broadcaster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/rtmp/broadcaster.go -------------------------------------------------------------------------------- /owncast/core/rtmp/rtmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/rtmp/rtmp.go -------------------------------------------------------------------------------- /owncast/core/rtmp/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/rtmp/utils.go -------------------------------------------------------------------------------- /owncast/core/rtmp/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/rtmp/utils_test.go -------------------------------------------------------------------------------- /owncast/core/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/stats.go -------------------------------------------------------------------------------- /owncast/core/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/status.go -------------------------------------------------------------------------------- /owncast/core/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/storage.go -------------------------------------------------------------------------------- /owncast/core/storageproviders/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/storageproviders/local.go -------------------------------------------------------------------------------- /owncast/core/storageproviders/s3Storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/storageproviders/s3Storage.go -------------------------------------------------------------------------------- /owncast/core/streamState.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/streamState.go -------------------------------------------------------------------------------- /owncast/core/transcoder/codecs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/transcoder/codecs.go -------------------------------------------------------------------------------- /owncast/core/transcoder/fileWriterReceiverService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/transcoder/fileWriterReceiverService.go -------------------------------------------------------------------------------- /owncast/core/transcoder/hlsFilesystemCleanup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/transcoder/hlsFilesystemCleanup.go -------------------------------------------------------------------------------- /owncast/core/transcoder/hlsHandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/transcoder/hlsHandler.go -------------------------------------------------------------------------------- /owncast/core/transcoder/thumbnailGenerator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/transcoder/thumbnailGenerator.go -------------------------------------------------------------------------------- /owncast/core/transcoder/transcoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/transcoder/transcoder.go -------------------------------------------------------------------------------- /owncast/core/transcoder/transcoder_nvenc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/transcoder/transcoder_nvenc_test.go -------------------------------------------------------------------------------- /owncast/core/transcoder/transcoder_omx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/transcoder/transcoder_omx_test.go -------------------------------------------------------------------------------- /owncast/core/transcoder/transcoder_vaapi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/transcoder/transcoder_vaapi_test.go -------------------------------------------------------------------------------- /owncast/core/transcoder/transcoder_videotoolbox_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/transcoder/transcoder_videotoolbox_test.go -------------------------------------------------------------------------------- /owncast/core/transcoder/transcoder_x264_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/transcoder/transcoder_x264_test.go -------------------------------------------------------------------------------- /owncast/core/transcoder/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/transcoder/utils.go -------------------------------------------------------------------------------- /owncast/core/user/externalAPIUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/user/externalAPIUser.go -------------------------------------------------------------------------------- /owncast/core/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/user/user.go -------------------------------------------------------------------------------- /owncast/core/webhooks/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/webhooks/chat.go -------------------------------------------------------------------------------- /owncast/core/webhooks/chat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/webhooks/chat_test.go -------------------------------------------------------------------------------- /owncast/core/webhooks/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/webhooks/stream.go -------------------------------------------------------------------------------- /owncast/core/webhooks/stream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/webhooks/stream_test.go -------------------------------------------------------------------------------- /owncast/core/webhooks/webhooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/webhooks/webhooks.go -------------------------------------------------------------------------------- /owncast/core/webhooks/webhooks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/webhooks/webhooks_test.go -------------------------------------------------------------------------------- /owncast/core/webhooks/workerpool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/core/webhooks/workerpool.go -------------------------------------------------------------------------------- /owncast/db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/db/README.md -------------------------------------------------------------------------------- /owncast/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/db/db.go -------------------------------------------------------------------------------- /owncast/db/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/db/models.go -------------------------------------------------------------------------------- /owncast/db/query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/db/query.sql -------------------------------------------------------------------------------- /owncast/db/query.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/db/query.sql.go -------------------------------------------------------------------------------- /owncast/db/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/db/schema.sql -------------------------------------------------------------------------------- /owncast/docs/DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/docs/DESIGN.md -------------------------------------------------------------------------------- /owncast/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/docs/SECURITY.md -------------------------------------------------------------------------------- /owncast/docs/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/docs/api/index.html -------------------------------------------------------------------------------- /owncast/docs/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/docs/dependencies.md -------------------------------------------------------------------------------- /owncast/docs/product-definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/docs/product-definition.md -------------------------------------------------------------------------------- /owncast/examples/owncast-sample.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/examples/owncast-sample.service -------------------------------------------------------------------------------- /owncast/examples/owncast-systemd-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/examples/owncast-systemd-service.md -------------------------------------------------------------------------------- /owncast/geoip/geoip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/geoip/geoip.go -------------------------------------------------------------------------------- /owncast/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/go.mod -------------------------------------------------------------------------------- /owncast/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/go.sum -------------------------------------------------------------------------------- /owncast/logging/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/logging/logging.go -------------------------------------------------------------------------------- /owncast/logging/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/logging/paths.go -------------------------------------------------------------------------------- /owncast/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/main.go -------------------------------------------------------------------------------- /owncast/metrics/alerting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/metrics/alerting.go -------------------------------------------------------------------------------- /owncast/metrics/hardware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/metrics/hardware.go -------------------------------------------------------------------------------- /owncast/metrics/healthOverview.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/metrics/healthOverview.go -------------------------------------------------------------------------------- /owncast/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/metrics/metrics.go -------------------------------------------------------------------------------- /owncast/metrics/playback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/metrics/playback.go -------------------------------------------------------------------------------- /owncast/metrics/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/metrics/prometheus.go -------------------------------------------------------------------------------- /owncast/metrics/timestampedValue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/metrics/timestampedValue.go -------------------------------------------------------------------------------- /owncast/metrics/viewers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/metrics/viewers.go -------------------------------------------------------------------------------- /owncast/models/baseAPIResponse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/baseAPIResponse.go -------------------------------------------------------------------------------- /owncast/models/broadcaster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/broadcaster.go -------------------------------------------------------------------------------- /owncast/models/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/client.go -------------------------------------------------------------------------------- /owncast/models/currentBroadcast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/currentBroadcast.go -------------------------------------------------------------------------------- /owncast/models/emoji.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/emoji.go -------------------------------------------------------------------------------- /owncast/models/eventType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/eventType.go -------------------------------------------------------------------------------- /owncast/models/externalAction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/externalAction.go -------------------------------------------------------------------------------- /owncast/models/federatedActivity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/federatedActivity.go -------------------------------------------------------------------------------- /owncast/models/follower.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/follower.go -------------------------------------------------------------------------------- /owncast/models/ipAddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/ipAddress.go -------------------------------------------------------------------------------- /owncast/models/latencyLevels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/latencyLevels.go -------------------------------------------------------------------------------- /owncast/models/notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/notification.go -------------------------------------------------------------------------------- /owncast/models/pingMessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/pingMessage.go -------------------------------------------------------------------------------- /owncast/models/playlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/playlist.go -------------------------------------------------------------------------------- /owncast/models/s3Storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/s3Storage.go -------------------------------------------------------------------------------- /owncast/models/socialHandle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/socialHandle.go -------------------------------------------------------------------------------- /owncast/models/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/stats.go -------------------------------------------------------------------------------- /owncast/models/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/status.go -------------------------------------------------------------------------------- /owncast/models/storageProvider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/storageProvider.go -------------------------------------------------------------------------------- /owncast/models/streamHealth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/streamHealth.go -------------------------------------------------------------------------------- /owncast/models/streamOutputVariant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/streamOutputVariant.go -------------------------------------------------------------------------------- /owncast/models/userJoinedEvent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/userJoinedEvent.go -------------------------------------------------------------------------------- /owncast/models/viewer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/viewer.go -------------------------------------------------------------------------------- /owncast/models/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/models/webhook.go -------------------------------------------------------------------------------- /owncast/notifications/browser/browser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/notifications/browser/browser.go -------------------------------------------------------------------------------- /owncast/notifications/channels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/notifications/channels.go -------------------------------------------------------------------------------- /owncast/notifications/discord/discord.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/notifications/discord/discord.go -------------------------------------------------------------------------------- /owncast/notifications/notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/notifications/notifications.go -------------------------------------------------------------------------------- /owncast/notifications/persistence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/notifications/persistence.go -------------------------------------------------------------------------------- /owncast/notifications/twitter/twitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/notifications/twitter/twitter.go -------------------------------------------------------------------------------- /owncast/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/openapi.yaml -------------------------------------------------------------------------------- /owncast/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/renovate.json -------------------------------------------------------------------------------- /owncast/router/middleware/activityPub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/router/middleware/activityPub.go -------------------------------------------------------------------------------- /owncast/router/middleware/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/router/middleware/auth.go -------------------------------------------------------------------------------- /owncast/router/middleware/caching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/router/middleware/caching.go -------------------------------------------------------------------------------- /owncast/router/middleware/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/router/middleware/cors.go -------------------------------------------------------------------------------- /owncast/router/middleware/headers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/router/middleware/headers.go -------------------------------------------------------------------------------- /owncast/router/middleware/pagination.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/router/middleware/pagination.go -------------------------------------------------------------------------------- /owncast/router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/router/router.go -------------------------------------------------------------------------------- /owncast/sqlc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/sqlc.yaml -------------------------------------------------------------------------------- /owncast/static/admin/404/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/404/index.html -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/IF0q45tHTUnbAhOX9pFCQ/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/IF0q45tHTUnbAhOX9pFCQ/_buildManifest.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/IF0q45tHTUnbAhOX9pFCQ/_middlewareManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/IF0q45tHTUnbAhOX9pFCQ/_middlewareManifest.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/IF0q45tHTUnbAhOX9pFCQ/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/IF0q45tHTUnbAhOX9pFCQ/_ssgManifest.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/1017-0760c7f39ffcc2a7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/1017-0760c7f39ffcc2a7.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/1080-1a127ea7f5a8eb3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/1080-1a127ea7f5a8eb3d.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/1371-f41477e42ee50603.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/1371-f41477e42ee50603.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/1556-f79a922e799c7a06.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/1556-f79a922e799c7a06.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/1741-d9d648ade4ad86b9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/1741-d9d648ade4ad86b9.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/1758-3a8e1364ffda64ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/1758-3a8e1364ffda64ee.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/1829-f5c4fb462b2f7e98.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/1829-f5c4fb462b2f7e98.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/1912.40e8274b3898c5b0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/1912.40e8274b3898c5b0.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/2429-ccb4d7fa1648dd38.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/2429-ccb4d7fa1648dd38.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/2494-8114e9c6571377d1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/2494-8114e9c6571377d1.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/2589-9a64928383be2ad7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/2589-9a64928383be2ad7.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/29107295-4a69275373f23f88.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/29107295-4a69275373f23f88.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/36bcf0ca-110fd889741d5f41.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/36bcf0ca-110fd889741d5f41.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/4578-afc9eff4fbf5ecb1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/4578-afc9eff4fbf5ecb1.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/4763-7fd93797a527a971.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/4763-7fd93797a527a971.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/5473-623385148d67cba2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/5473-623385148d67cba2.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/5533-096cc7dc6703128f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/5533-096cc7dc6703128f.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/6003-f37682e25271f05f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/6003-f37682e25271f05f.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/6132-0f911799dd6dd847.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/6132-0f911799dd6dd847.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/6489-cea2e8971ed16ad4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/6489-cea2e8971ed16ad4.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/7751-48959ec0f11e9080.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/7751-48959ec0f11e9080.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/7910-699eb8ed3467dc00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/7910-699eb8ed3467dc00.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/8091-5bc21baa6d0d3232.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/8091-5bc21baa6d0d3232.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/8879-af8bf87fdc518c08.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/8879-af8bf87fdc518c08.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/framework-79bce4a3a540b080.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/framework-79bce4a3a540b080.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/main-c4d96150fb4f93a7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/main-c4d96150fb4f93a7.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/_app-e57b2a440c783b12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/_app-e57b2a440c783b12.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/_error-785557186902809b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/_error-785557186902809b.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/access-tokens-d328b918d1f9b3d4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/access-tokens-d328b918d1f9b3d4.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/actions-9278698db4cd1a16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/actions-9278698db4cd1a16.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/chat/messages-0df125d8b9455827.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/chat/messages-0df125d8b9455827.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/chat/users-c3f6235e6932151e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/chat/users-c3f6235e6932151e.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/config-chat-bacb12d23264144b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/config-chat-bacb12d23264144b.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/config-federation-ea0f018fb4193b61.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/config-federation-ea0f018fb4193b61.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/config-notify-10a8844dc11ca4b2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/config-notify-10a8844dc11ca4b2.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/config-public-details-94ff52653eb2586e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/config-public-details-94ff52653eb2586e.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/config-server-details-cd516688accb84d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/config-server-details-cd516688accb84d3.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/config-social-items-42e2ed4eed8d4dd2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/config-social-items-42e2ed4eed8d4dd2.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/config-storage-5ff120c715bfdb04.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/config-storage-5ff120c715bfdb04.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/config-video-32d86e0ba98dc6fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/config-video-32d86e0ba98dc6fe.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/federation/actions-7cfffddef3b58d86.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/federation/actions-7cfffddef3b58d86.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/federation/followers-d2d105c342c79f98.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/federation/followers-d2d105c342c79f98.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/hardware-info-4723b20a84e4f461.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/hardware-info-4723b20a84e4f461.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/help-deeb1c0f667c7d75.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/help-deeb1c0f667c7d75.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/index-e0ac83ceaf99b5f0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/index-e0ac83ceaf99b5f0.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/logs-df4b23b85b8ac818.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/logs-df4b23b85b8ac818.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/stream-health-4a811c8adeb950de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/stream-health-4a811c8adeb950de.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/upgrade-1dcaa9f0a72f02f8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/upgrade-1dcaa9f0a72f02f8.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/viewer-info-03fcbea265510389.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/viewer-info-03fcbea265510389.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/pages/webhooks-651cb241952e0e4a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/pages/webhooks-651cb241952e0e4a.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/polyfills-5cd94c89d3acac5f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/polyfills-5cd94c89d3acac5f.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/chunks/webpack-da6d6ade1d5643c2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/chunks/webpack-da6d6ade1d5643c2.js -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/css/7e98ab6b3b660d68.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/css/7e98ab6b3b660d68.css -------------------------------------------------------------------------------- /owncast/static/admin/_next/static/css/e773f9ad06a56dc3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/_next/static/css/e773f9ad06a56dc3.css -------------------------------------------------------------------------------- /owncast/static/admin/access-tokens/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/access-tokens/index.html -------------------------------------------------------------------------------- /owncast/static/admin/actions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/actions/index.html -------------------------------------------------------------------------------- /owncast/static/admin/chat/messages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/chat/messages/index.html -------------------------------------------------------------------------------- /owncast/static/admin/chat/users/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/chat/users/index.html -------------------------------------------------------------------------------- /owncast/static/admin/config-chat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/config-chat/index.html -------------------------------------------------------------------------------- /owncast/static/admin/config-federation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/config-federation/index.html -------------------------------------------------------------------------------- /owncast/static/admin/config-notify/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/config-notify/index.html -------------------------------------------------------------------------------- /owncast/static/admin/config-public-details/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/config-public-details/index.html -------------------------------------------------------------------------------- /owncast/static/admin/config-server-details/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/config-server-details/index.html -------------------------------------------------------------------------------- /owncast/static/admin/config-social-items/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/config-social-items/index.html -------------------------------------------------------------------------------- /owncast/static/admin/config-storage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/config-storage/index.html -------------------------------------------------------------------------------- /owncast/static/admin/config-video/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/config-video/index.html -------------------------------------------------------------------------------- /owncast/static/admin/federation/actions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/federation/actions/index.html -------------------------------------------------------------------------------- /owncast/static/admin/federation/followers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/federation/followers/index.html -------------------------------------------------------------------------------- /owncast/static/admin/fediverse-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/fediverse-white.png -------------------------------------------------------------------------------- /owncast/static/admin/hardware-info/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/hardware-info/index.html -------------------------------------------------------------------------------- /owncast/static/admin/help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/help/index.html -------------------------------------------------------------------------------- /owncast/static/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/index.html -------------------------------------------------------------------------------- /owncast/static/admin/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/logs/index.html -------------------------------------------------------------------------------- /owncast/static/admin/stream-health/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/stream-health/index.html -------------------------------------------------------------------------------- /owncast/static/admin/upgrade/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/upgrade/index.html -------------------------------------------------------------------------------- /owncast/static/admin/viewer-info/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/viewer-info/index.html -------------------------------------------------------------------------------- /owncast/static/admin/webhooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/admin/webhooks/index.html -------------------------------------------------------------------------------- /owncast/static/golive.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/golive.html.tmpl -------------------------------------------------------------------------------- /owncast/static/metadata.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/metadata.html.tmpl -------------------------------------------------------------------------------- /owncast/static/offline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/offline.ts -------------------------------------------------------------------------------- /owncast/static/static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/static/static.go -------------------------------------------------------------------------------- /owncast/test/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /owncast/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/README.md -------------------------------------------------------------------------------- /owncast/test/automated/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | ffmpeg 3 | -------------------------------------------------------------------------------- /owncast/test/automated/api/admin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/api/admin.test.js -------------------------------------------------------------------------------- /owncast/test/automated/api/chat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/api/chat.test.js -------------------------------------------------------------------------------- /owncast/test/automated/api/chatmoderation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/api/chatmoderation.test.js -------------------------------------------------------------------------------- /owncast/test/automated/api/chatusers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/api/chatusers.test.js -------------------------------------------------------------------------------- /owncast/test/automated/api/configmanagement.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/api/configmanagement.test.js -------------------------------------------------------------------------------- /owncast/test/automated/api/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/api/index.test.js -------------------------------------------------------------------------------- /owncast/test/automated/api/integrations.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/api/integrations.test.js -------------------------------------------------------------------------------- /owncast/test/automated/api/lib/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/api/lib/chat.js -------------------------------------------------------------------------------- /owncast/test/automated/api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/api/package-lock.json -------------------------------------------------------------------------------- /owncast/test/automated/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/api/package.json -------------------------------------------------------------------------------- /owncast/test/automated/api/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/api/run.sh -------------------------------------------------------------------------------- /owncast/test/automated/browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/browser/README.md -------------------------------------------------------------------------------- /owncast/test/automated/browser/admin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/browser/admin.test.js -------------------------------------------------------------------------------- /owncast/test/automated/browser/bot-share-search-scrapers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/browser/bot-share-search-scrapers.test.js -------------------------------------------------------------------------------- /owncast/test/automated/browser/chat-embed.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/browser/chat-embed.test.js -------------------------------------------------------------------------------- /owncast/test/automated/browser/jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/browser/jest.config.json -------------------------------------------------------------------------------- /owncast/test/automated/browser/lib/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/browser/lib/errors.js -------------------------------------------------------------------------------- /owncast/test/automated/browser/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/browser/main.test.js -------------------------------------------------------------------------------- /owncast/test/automated/browser/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/browser/package-lock.json -------------------------------------------------------------------------------- /owncast/test/automated/browser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/browser/package.json -------------------------------------------------------------------------------- /owncast/test/automated/browser/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/browser/run.sh -------------------------------------------------------------------------------- /owncast/test/automated/browser/screenshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /owncast/test/automated/browser/tests/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/browser/tests/chat.js -------------------------------------------------------------------------------- /owncast/test/automated/browser/tests/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/browser/tests/video.js -------------------------------------------------------------------------------- /owncast/test/automated/browser/video-embed.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/browser/video-embed.test.js -------------------------------------------------------------------------------- /owncast/test/automated/hls/hls.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/hls/hls.test.js -------------------------------------------------------------------------------- /owncast/test/automated/hls/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/hls/package-lock.json -------------------------------------------------------------------------------- /owncast/test/automated/hls/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/hls/package.json -------------------------------------------------------------------------------- /owncast/test/automated/hls/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/hls/run.sh -------------------------------------------------------------------------------- /owncast/test/automated/test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/automated/test.mp4 -------------------------------------------------------------------------------- /owncast/test/fakeChat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/fakeChat.js -------------------------------------------------------------------------------- /owncast/test/load/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/load/README.md -------------------------------------------------------------------------------- /owncast/test/load/badchatdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/load/badchatdata.js -------------------------------------------------------------------------------- /owncast/test/load/chatLoadTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/load/chatLoadTest.js -------------------------------------------------------------------------------- /owncast/test/load/hls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/load/hls.yaml -------------------------------------------------------------------------------- /owncast/test/load/httpGetTest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/load/httpGetTest.yaml -------------------------------------------------------------------------------- /owncast/test/load/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/load/package-lock.json -------------------------------------------------------------------------------- /owncast/test/load/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/load/package.json -------------------------------------------------------------------------------- /owncast/test/ocTestStream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/ocTestStream.sh -------------------------------------------------------------------------------- /owncast/test/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/package-lock.json -------------------------------------------------------------------------------- /owncast/test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/package.json -------------------------------------------------------------------------------- /owncast/test/userColorsTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/test/userColorsTest.js -------------------------------------------------------------------------------- /owncast/utils/accessTokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/utils/accessTokens.go -------------------------------------------------------------------------------- /owncast/utils/accessTokens_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/utils/accessTokens_test.go -------------------------------------------------------------------------------- /owncast/utils/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/utils/backup.go -------------------------------------------------------------------------------- /owncast/utils/clientId.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/utils/clientId.go -------------------------------------------------------------------------------- /owncast/utils/nulltime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/utils/nulltime.go -------------------------------------------------------------------------------- /owncast/utils/performanceTimer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/utils/performanceTimer.go -------------------------------------------------------------------------------- /owncast/utils/phraseGenerator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/utils/phraseGenerator.go -------------------------------------------------------------------------------- /owncast/utils/restendpointhelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/utils/restendpointhelper.go -------------------------------------------------------------------------------- /owncast/utils/restendpointhelper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/utils/restendpointhelper_test.go -------------------------------------------------------------------------------- /owncast/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/utils/utils.go -------------------------------------------------------------------------------- /owncast/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/utils/utils_test.go -------------------------------------------------------------------------------- /owncast/webroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/favicon.ico -------------------------------------------------------------------------------- /owncast/webroot/img/airplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/airplay.png -------------------------------------------------------------------------------- /owncast/webroot/img/authenticated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/authenticated.svg -------------------------------------------------------------------------------- /owncast/webroot/img/ban-user-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/ban-user-grey.svg -------------------------------------------------------------------------------- /owncast/webroot/img/ban-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/ban-user.svg -------------------------------------------------------------------------------- /owncast/webroot/img/bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/bot.svg -------------------------------------------------------------------------------- /owncast/webroot/img/browser-push-notifications-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/browser-push-notifications-settings.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/Reaper-gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/Reaper-gg.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/Reaper-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/Reaper-hi.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/Reaper-hype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/Reaper-hype.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/Reaper-lol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/Reaper-lol.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/Reaper-love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/Reaper-love.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/Reaper-rage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/Reaper-rage.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/Reaper-rip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/Reaper-rip.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/Reaper-wtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/Reaper-wtf.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/ac-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/ac-box.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/ac-construction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/ac-construction.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/ac-fossil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/ac-fossil.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/ac-item-leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/ac-item-leaf.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/ac-kkslider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/ac-kkslider.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/ac-moneytree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/ac-moneytree.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/ac-mosquito.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/ac-mosquito.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/ac-shirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/ac-shirt.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/ac-song.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/ac-song.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/ac-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/ac-tree.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/ac-turnip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/ac-turnip.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/ac-weeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/ac-weeds.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/alert.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/bananadance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/bananadance.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/bb8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/bb8.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/beerparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/beerparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/bells.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/bells.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/birthdaypartyparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/birthdaypartyparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/blacklightsaber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/blacklightsaber.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/bluelightsaber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/bluelightsaber.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/bluntparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/bluntparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/bobaparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/bobaparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/cakeparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/cakeparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/chewbacca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/chewbacca.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/chillparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/chillparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/christmasparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/christmasparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/coffeeparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/coffeeparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/confusedparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/confusedparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/copparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/copparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/coronavirus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/coronavirus.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/covid19parrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/covid19parrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/cryptoparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/cryptoparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/dabparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/dabparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/dadparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/dadparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/daftpunkparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/daftpunkparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/darkbeerparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/darkbeerparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/darkmodeparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/darkmodeparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/darth_vader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/darth_vader.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/dealwithitparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/dealwithitparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/death_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/death_star.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/discoparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/discoparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/division-gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/division-gg.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/division-hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/division-hi.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/division-hype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/division-hype.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/division-lol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/division-lol.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/division-omg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/division-omg.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/division-rage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/division-rage.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/division-rip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/division-rip.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/division-wtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/division-wtf.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/docparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/docparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/donutparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/donutparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/doom_mad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/doom_mad.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/empire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/empire.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/everythingsfineparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/everythingsfineparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/evilparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/evilparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/explodyparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/explodyparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/fixparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/fixparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/flyingmoneyparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/flyingmoneyparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/footballparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/footballparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/gabe1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/gabe1.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/gabe2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/gabe2.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/gentlemanparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/gentlemanparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/githubparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/githubparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/goomba.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/goomba.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/gothparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/gothparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/hamburgerparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/hamburgerparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/harrypotterparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/harrypotterparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/headbangingparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/headbangingparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/headingparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/headingparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/headsetparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/headsetparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/hmmparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/hmmparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/hypnoparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/hypnoparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/icecreamparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/icecreamparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/illuminatiparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/illuminatiparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/jediparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/jediparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/keanu_thanks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/keanu_thanks.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/laptop_parrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/laptop_parrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/loveparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/loveparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/mandalorian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/mandalorian.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/margaritaparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/margaritaparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/mario.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/mario.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/matrixparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/matrixparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/meldparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/meldparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/metalparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/metalparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/michaeljacksonparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/michaeljacksonparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/moonparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/moonparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/moonwalkingparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/moonwalkingparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/mustacheparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/mustacheparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/nicolas_cage_party.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/nicolas_cage_party.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/nodeparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/nodeparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/norwegianblueparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/norwegianblueparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/opensourceparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/opensourceparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/originalparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/originalparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/owncast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/owncast.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/palpatine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/palpatine.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/papalparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/papalparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/parrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/parrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/parrotnotfound.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/parrotnotfound.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/partyparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/partyparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/phparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/phparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/pirateparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/pirateparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/pizzaparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/pizzaparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/pokeparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/pokeparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/popcornparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/popcornparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/porg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/porg.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/portalparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/portalparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/pumpkinparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/pumpkinparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/quadparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/quadparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/r2d2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/r2d2.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/redenvelopeparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/redenvelopeparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/ripparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/ripparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/rotatingparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/rotatingparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/ryangoslingparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/ryangoslingparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/rythmicalparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/rythmicalparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/sadparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/sadparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/schnitzelparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/schnitzelparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/scienceparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/scienceparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/shipitparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/shipitparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/shufflepartyparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/shufflepartyparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/sintparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/sintparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/sithparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/sithparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/skiparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/skiparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/sleepingparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/sleepingparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/sonic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/sonic.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/spyparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/spyparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/stalkerparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/stalkerparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/starwars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/starwars.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/stayhomeparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/stayhomeparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/storm_trooper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/storm_trooper.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/stormtrooper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/stormtrooper.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/sushiparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/sushiparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/tacoparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/tacoparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/tennisparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/tennisparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/thanks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/thanks.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/thumbsupparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/thumbsupparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/tiedyeparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/tiedyeparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/tpparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/tpparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/transparront.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/transparront.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/twinsparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/twinsparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/upvoteparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/upvoteparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/vikingparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/vikingparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/wesmart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/wesmart.png -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/wfhparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/wfhparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/wineparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/wineparrot.gif -------------------------------------------------------------------------------- /owncast/webroot/img/emoji/yoda.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/emoji/yoda.gif -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/android-icon-144x144.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/apple-icon.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/browserconfig.xml -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /owncast/webroot/img/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /owncast/webroot/img/fediverse-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/fediverse-black.png -------------------------------------------------------------------------------- /owncast/webroot/img/fediverse-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/fediverse-color.png -------------------------------------------------------------------------------- /owncast/webroot/img/fediverse-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/fediverse-white.png -------------------------------------------------------------------------------- /owncast/webroot/img/follow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/follow.svg -------------------------------------------------------------------------------- /owncast/webroot/img/hide-message-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/hide-message-grey.svg -------------------------------------------------------------------------------- /owncast/webroot/img/hide-message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/hide-message.svg -------------------------------------------------------------------------------- /owncast/webroot/img/indieauth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/indieauth.png -------------------------------------------------------------------------------- /owncast/webroot/img/like.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/like.svg -------------------------------------------------------------------------------- /owncast/webroot/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/loading.gif -------------------------------------------------------------------------------- /owncast/webroot/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/logo.png -------------------------------------------------------------------------------- /owncast/webroot/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/logo.svg -------------------------------------------------------------------------------- /owncast/webroot/img/menu-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/menu-filled.svg -------------------------------------------------------------------------------- /owncast/webroot/img/menu-vert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/menu-vert.svg -------------------------------------------------------------------------------- /owncast/webroot/img/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/menu.svg -------------------------------------------------------------------------------- /owncast/webroot/img/moderator-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/moderator-grey.svg -------------------------------------------------------------------------------- /owncast/webroot/img/moderator-nobackground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/moderator-nobackground.svg -------------------------------------------------------------------------------- /owncast/webroot/img/moderator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/moderator.svg -------------------------------------------------------------------------------- /owncast/webroot/img/notification-bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/notification-bell.svg -------------------------------------------------------------------------------- /owncast/webroot/img/owncast-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/owncast-background.png -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/bandcamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/bandcamp.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/default.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/discord.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/donate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/donate.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/facebook.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/fediverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/fediverse.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/follow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/follow.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/github.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/gitlab.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/google.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/instagram.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/keyoxide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/keyoxide.png -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/ko-fi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/ko-fi.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/lbry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/lbry.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/liberapay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/liberapay.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/link.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/linkedin.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/mastodon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/mastodon.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/matrix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/matrix.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/odysee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/odysee.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/patreon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/patreon.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/paypal.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/snapchat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/snapchat.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/soundcloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/soundcloud.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/spotify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/spotify.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/steam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/steam.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/tiktok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/tiktok.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/twitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/twitch.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/twitter.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/xmpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/xmpp.svg -------------------------------------------------------------------------------- /owncast/webroot/img/platformlogos/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/platformlogos/youtube.svg -------------------------------------------------------------------------------- /owncast/webroot/img/repost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/repost.svg -------------------------------------------------------------------------------- /owncast/webroot/img/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/smiley.png -------------------------------------------------------------------------------- /owncast/webroot/img/user-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/user-icon.svg -------------------------------------------------------------------------------- /owncast/webroot/img/user-settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/img/user-settings.svg -------------------------------------------------------------------------------- /owncast/webroot/index-standalone-chat-readonly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/index-standalone-chat-readonly.html -------------------------------------------------------------------------------- /owncast/webroot/index-standalone-chat-readwrite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/index-standalone-chat-readwrite.html -------------------------------------------------------------------------------- /owncast/webroot/index-standalone-chat.html: -------------------------------------------------------------------------------- 1 | index-standalone-chat-readonly.html -------------------------------------------------------------------------------- /owncast/webroot/index-video-only.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/index-video-only.html -------------------------------------------------------------------------------- /owncast/webroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/index.html -------------------------------------------------------------------------------- /owncast/webroot/js/app-standalone-chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/app-standalone-chat.js -------------------------------------------------------------------------------- /owncast/webroot/js/app-video-only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/app-video-only.js -------------------------------------------------------------------------------- /owncast/webroot/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/app.js -------------------------------------------------------------------------------- /owncast/webroot/js/chat/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/chat/register.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/auth-fediverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/auth-fediverse.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/auth-indieauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/auth-indieauth.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/auth-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/auth-modal.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/chat-settings-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/chat-settings-modal.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/chat/chat-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/chat/chat-input.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/chat/chat-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/chat/chat-menu.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/chat/chat-message-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/chat/chat-message-view.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/chat/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/chat/chat.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/chat/content-editable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/chat/content-editable.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/chat/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/chat/message.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/chat/moderator-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/chat/moderator-actions.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/chat/username.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/chat/username.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/external-action-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/external-action-modal.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/federation/followers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/federation/followers.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/fediverse-follow-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/fediverse-follow-modal.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/icons/AuthIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/icons/AuthIcon.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/icons/CaretDownIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/icons/CaretDownIcon.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/icons/ChatIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/icons/ChatIcon.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/icons/CheckIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/icons/CheckIcon.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/icons/CloseIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/icons/CloseIcon.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/icons/EditIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/icons/EditIcon.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/icons/UserIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/icons/UserIcon.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/icons/index.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/latencyCompensator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/latencyCompensator.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/notification.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/platform-logos-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/platform-logos-list.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/player.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/tab-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/tab-bar.js -------------------------------------------------------------------------------- /owncast/webroot/js/components/video-poster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/components/video-poster.js -------------------------------------------------------------------------------- /owncast/webroot/js/metrics/playback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/metrics/playback.js -------------------------------------------------------------------------------- /owncast/webroot/js/notification/registerWeb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/notification/registerWeb.js -------------------------------------------------------------------------------- /owncast/webroot/js/utils/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/utils/chat.js -------------------------------------------------------------------------------- /owncast/webroot/js/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/utils/constants.js -------------------------------------------------------------------------------- /owncast/webroot/js/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/utils/helpers.js -------------------------------------------------------------------------------- /owncast/webroot/js/utils/user-colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/utils/user-colors.js -------------------------------------------------------------------------------- /owncast/webroot/js/utils/websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/utils/websocket.js -------------------------------------------------------------------------------- /owncast/webroot/js/web_modules/@joeattardi/emoji-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/web_modules/@joeattardi/emoji-button.js -------------------------------------------------------------------------------- /owncast/webroot/js/web_modules/@videojs/themes/fantasy/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/web_modules/@videojs/themes/fantasy/index.css -------------------------------------------------------------------------------- /owncast/webroot/js/web_modules/common/_commonjsHelpers-8c19dec8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/web_modules/common/_commonjsHelpers-8c19dec8.js -------------------------------------------------------------------------------- /owncast/webroot/js/web_modules/htm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/web_modules/htm.js -------------------------------------------------------------------------------- /owncast/webroot/js/web_modules/import-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/web_modules/import-map.json -------------------------------------------------------------------------------- /owncast/webroot/js/web_modules/markjs/dist/mark.es6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/web_modules/markjs/dist/mark.es6.min.js -------------------------------------------------------------------------------- /owncast/webroot/js/web_modules/micromodal/dist/micromodal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/web_modules/micromodal/dist/micromodal.min.js -------------------------------------------------------------------------------- /owncast/webroot/js/web_modules/preact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/web_modules/preact.js -------------------------------------------------------------------------------- /owncast/webroot/js/web_modules/preact/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/web_modules/preact/hooks.js -------------------------------------------------------------------------------- /owncast/webroot/js/web_modules/tailwindcss/dist/tailwind.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/web_modules/tailwindcss/dist/tailwind.min.css -------------------------------------------------------------------------------- /owncast/webroot/js/web_modules/videojs/dist/video-js.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/web_modules/videojs/dist/video-js.min.css -------------------------------------------------------------------------------- /owncast/webroot/js/web_modules/videojs/dist/video.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/web_modules/videojs/dist/video.min.js -------------------------------------------------------------------------------- /owncast/webroot/js/web_modules/videojs/video-js.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/js/web_modules/videojs/video-js.min.css -------------------------------------------------------------------------------- /owncast/webroot/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/manifest.json -------------------------------------------------------------------------------- /owncast/webroot/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/serviceWorker.js -------------------------------------------------------------------------------- /owncast/webroot/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/styles/app.css -------------------------------------------------------------------------------- /owncast/webroot/styles/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/styles/chat.css -------------------------------------------------------------------------------- /owncast/webroot/styles/standalone-chat-readonly.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/styles/standalone-chat-readonly.css -------------------------------------------------------------------------------- /owncast/webroot/styles/standalone-chat-readwrite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/styles/standalone-chat-readwrite.css -------------------------------------------------------------------------------- /owncast/webroot/styles/user-content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/styles/user-content.css -------------------------------------------------------------------------------- /owncast/webroot/styles/video-only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/styles/video-only.css -------------------------------------------------------------------------------- /owncast/webroot/styles/video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/webroot/styles/video.css -------------------------------------------------------------------------------- /owncast/yp/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /owncast/yp/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/yp/api.go -------------------------------------------------------------------------------- /owncast/yp/yp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/owncast/yp/yp.go -------------------------------------------------------------------------------- /restart-streaming.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/restart-streaming.sh -------------------------------------------------------------------------------- /sample-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/sample-env -------------------------------------------------------------------------------- /start-streaming.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/start-streaming.sh -------------------------------------------------------------------------------- /stop-streaming.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkatyan/bbb-streaming/HEAD/stop-streaming.sh --------------------------------------------------------------------------------