├── .gitignore ├── .prettierrc ├── README.md ├── docz ├── assets │ └── CLIUsage.png └── index.html ├── doczrc.js ├── package.json └── src ├── api ├── auth.js ├── config.js ├── endpoints.mdx ├── frontendDevelopment.mdx ├── index.js ├── library.js └── stream.js ├── frontendsAndNotableProjects.mdx ├── generate ├── FAQ.mdx ├── config.mdx ├── generate.js ├── template │ ├── audio │ │ ├── Aviscerall - Just Livin' - 05 Unhappy.mp3 │ │ ├── Aviscerall - Lp's and Love Songs - 01 I Am a Fool for Beauty.mp3 │ │ ├── Aviscerall - Nostalgia Infinite - 04 Scattered Dreams.mp3 │ │ ├── Miata feat Of The Other Time.mp3 │ │ └── nestedDirectoriesWork │ │ │ ├── Aviscerall - Cruisin' - 01 Sanctuary.mp3 │ │ │ └── Aviscerall - Just Livin' - 07 Ascension feat. Groovy Godzilla.mp3 │ ├── config.json │ ├── fonts │ │ └── Lato-Regular.ttf │ ├── interludes │ │ ├── audio │ │ │ ├── nestedDirectoriesWork │ │ │ │ └── tapeDeckSound.mp3 │ │ │ └── tapeDeckSound.mp3 │ │ └── video │ │ │ └── example 1.gif │ ├── live-stream-radio-overlay-image.png │ └── video │ │ ├── nestedDirectoriesWork │ │ └── publicDomainEarth.webm │ │ └── publicDomainEarth.mp4 └── tips.mdx ├── history.service.js ├── index.js ├── index.mdx ├── raspberryPi.mdx ├── stream ├── gettingstarted.mdx ├── gif.js ├── index.js ├── overlayText.js ├── randomFile.js ├── safeStrings.js ├── stream.js └── usage.mdx └── supportedFileTypes.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/README.md -------------------------------------------------------------------------------- /docz/assets/CLIUsage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/docz/assets/CLIUsage.png -------------------------------------------------------------------------------- /docz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/docz/index.html -------------------------------------------------------------------------------- /doczrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/doczrc.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/package.json -------------------------------------------------------------------------------- /src/api/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/api/auth.js -------------------------------------------------------------------------------- /src/api/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/api/config.js -------------------------------------------------------------------------------- /src/api/endpoints.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/api/endpoints.mdx -------------------------------------------------------------------------------- /src/api/frontendDevelopment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/api/frontendDevelopment.mdx -------------------------------------------------------------------------------- /src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/api/index.js -------------------------------------------------------------------------------- /src/api/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/api/library.js -------------------------------------------------------------------------------- /src/api/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/api/stream.js -------------------------------------------------------------------------------- /src/frontendsAndNotableProjects.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/frontendsAndNotableProjects.mdx -------------------------------------------------------------------------------- /src/generate/FAQ.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/generate/FAQ.mdx -------------------------------------------------------------------------------- /src/generate/config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/generate/config.mdx -------------------------------------------------------------------------------- /src/generate/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/generate/generate.js -------------------------------------------------------------------------------- /src/generate/template/audio/Aviscerall - Just Livin' - 05 Unhappy.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/generate/template/audio/Aviscerall - Just Livin' - 05 Unhappy.mp3 -------------------------------------------------------------------------------- /src/generate/template/audio/Aviscerall - Lp's and Love Songs - 01 I Am a Fool for Beauty.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/generate/template/audio/Aviscerall - Lp's and Love Songs - 01 I Am a Fool for Beauty.mp3 -------------------------------------------------------------------------------- /src/generate/template/audio/Aviscerall - Nostalgia Infinite - 04 Scattered Dreams.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/generate/template/audio/Aviscerall - Nostalgia Infinite - 04 Scattered Dreams.mp3 -------------------------------------------------------------------------------- /src/generate/template/audio/Miata feat Of The Other Time.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/generate/template/audio/Miata feat Of The Other Time.mp3 -------------------------------------------------------------------------------- /src/generate/template/audio/nestedDirectoriesWork/Aviscerall - Cruisin' - 01 Sanctuary.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/generate/template/audio/nestedDirectoriesWork/Aviscerall - Cruisin' - 01 Sanctuary.mp3 -------------------------------------------------------------------------------- /src/generate/template/audio/nestedDirectoriesWork/Aviscerall - Just Livin' - 07 Ascension feat. Groovy Godzilla.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/generate/template/audio/nestedDirectoriesWork/Aviscerall - Just Livin' - 07 Ascension feat. Groovy Godzilla.mp3 -------------------------------------------------------------------------------- /src/generate/template/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/generate/template/config.json -------------------------------------------------------------------------------- /src/generate/template/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/generate/template/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /src/generate/template/interludes/audio/nestedDirectoriesWork/tapeDeckSound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/generate/template/interludes/audio/nestedDirectoriesWork/tapeDeckSound.mp3 -------------------------------------------------------------------------------- /src/generate/template/interludes/audio/tapeDeckSound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/generate/template/interludes/audio/tapeDeckSound.mp3 -------------------------------------------------------------------------------- /src/generate/template/interludes/video/example 1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/generate/template/interludes/video/example 1.gif -------------------------------------------------------------------------------- /src/generate/template/live-stream-radio-overlay-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/generate/template/live-stream-radio-overlay-image.png -------------------------------------------------------------------------------- /src/generate/template/video/nestedDirectoriesWork/publicDomainEarth.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/generate/template/video/nestedDirectoriesWork/publicDomainEarth.webm -------------------------------------------------------------------------------- /src/generate/template/video/publicDomainEarth.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/generate/template/video/publicDomainEarth.mp4 -------------------------------------------------------------------------------- /src/generate/tips.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/generate/tips.mdx -------------------------------------------------------------------------------- /src/history.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/history.service.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/index.mdx -------------------------------------------------------------------------------- /src/raspberryPi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/raspberryPi.mdx -------------------------------------------------------------------------------- /src/stream/gettingstarted.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/stream/gettingstarted.mdx -------------------------------------------------------------------------------- /src/stream/gif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/stream/gif.js -------------------------------------------------------------------------------- /src/stream/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/stream/index.js -------------------------------------------------------------------------------- /src/stream/overlayText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/stream/overlayText.js -------------------------------------------------------------------------------- /src/stream/randomFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/stream/randomFile.js -------------------------------------------------------------------------------- /src/stream/safeStrings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/stream/safeStrings.js -------------------------------------------------------------------------------- /src/stream/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/stream/stream.js -------------------------------------------------------------------------------- /src/stream/usage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/stream/usage.mdx -------------------------------------------------------------------------------- /src/supportedFileTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torch2424/live-stream-radio/HEAD/src/supportedFileTypes.js --------------------------------------------------------------------------------