├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── src └── index.js └── test └── basic.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test/sample.webm -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-mullen/fluent-ffmpeg-multistream/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-mullen/fluent-ffmpeg-multistream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-mullen/fluent-ffmpeg-multistream/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-mullen/fluent-ffmpeg-multistream/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-mullen/fluent-ffmpeg-multistream/HEAD/src/index.js -------------------------------------------------------------------------------- /test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-mullen/fluent-ffmpeg-multistream/HEAD/test/basic.js --------------------------------------------------------------------------------