├── .DS_Store ├── .babelrc ├── .env ├── .eslintrc.json ├── .github └── workflows │ └── create-release-from-changelog.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── public ├── Logo_white_text.svg ├── favicon.ico ├── logo.svg ├── mic.svg └── video-off.svg ├── src ├── components │ ├── Icons.tsx │ ├── StreamDialog.tsx │ └── UploadSettingsDialog.tsx ├── middleware.ts └── pages │ ├── _app.tsx │ └── index.tsx ├── styles ├── Home.module.css └── globals.css └── tsconfig.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/.DS_Store -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["next/babel"] 3 | } 4 | -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_UPLOAD_TOKEN= -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/create-release-from-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/.github/workflows/create-release-from-changelog.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/package.json -------------------------------------------------------------------------------- /public/Logo_white_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/public/Logo_white_text.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/public/mic.svg -------------------------------------------------------------------------------- /public/video-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/public/video-off.svg -------------------------------------------------------------------------------- /src/components/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/src/components/Icons.tsx -------------------------------------------------------------------------------- /src/components/StreamDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/src/components/StreamDialog.tsx -------------------------------------------------------------------------------- /src/components/UploadSettingsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/src/components/UploadSettingsDialog.tsx -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/recordavideo/HEAD/tsconfig.json --------------------------------------------------------------------------------