├── .github └── workflows │ ├── create-documentation-pr.yml │ ├── create-release-from-changelog.yml │ ├── release.yml │ ├── test.yml │ └── update-documentation.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── doc └── UploaderStaticWrapper.md ├── package.json ├── sample ├── index.html └── progressive.html ├── src ├── abstract-uploader.ts ├── index.ts ├── progressive-video-uploader.ts ├── promise-queue.ts ├── static-wrapper.ts └── video-uploader.ts ├── test ├── abstract-uploader.ts ├── package-lock.json ├── package.json ├── progressive-video-uploader.test.ts ├── tsconfig.json └── video-uploader.test.ts ├── tsconfig.json ├── tslint.json └── webpack.config.js /.github/workflows/create-documentation-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/.github/workflows/create-documentation-pr.yml -------------------------------------------------------------------------------- /.github/workflows/create-release-from-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/.github/workflows/create-release-from-changelog.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update-documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/.github/workflows/update-documentation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/README.md -------------------------------------------------------------------------------- /doc/UploaderStaticWrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/doc/UploaderStaticWrapper.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/package.json -------------------------------------------------------------------------------- /sample/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/sample/index.html -------------------------------------------------------------------------------- /sample/progressive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/sample/progressive.html -------------------------------------------------------------------------------- /src/abstract-uploader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/src/abstract-uploader.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/progressive-video-uploader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/src/progressive-video-uploader.ts -------------------------------------------------------------------------------- /src/promise-queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/src/promise-queue.ts -------------------------------------------------------------------------------- /src/static-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/src/static-wrapper.ts -------------------------------------------------------------------------------- /src/video-uploader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/src/video-uploader.ts -------------------------------------------------------------------------------- /test/abstract-uploader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/test/abstract-uploader.ts -------------------------------------------------------------------------------- /test/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/test/package-lock.json -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/test/package.json -------------------------------------------------------------------------------- /test/progressive-video-uploader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/test/progressive-video-uploader.test.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/video-uploader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/test/video-uploader.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-uploader/HEAD/webpack.config.js --------------------------------------------------------------------------------