Stream video with GridStoreAdapter (implements byte-range requests) (#2437)

* Stream video with GridStoreAdapter

* fixing nits. Removing test(Range not accepted as header)

* nit

* Changed names. Added function to check if stream-requirements is fulfilled.
This commit is contained in:
Brage G. Staven
2016-08-12 21:58:18 +02:00
committed by Florent Vilmart
parent 122c3fd1a3
commit e690b73bb5
3 changed files with 128 additions and 11 deletions

View File

@@ -82,6 +82,10 @@ export class FilesController extends AdaptableController {
expectedAdapterType() {
return FilesAdapter;
}
getFileStream(config, filename) {
return this.adapter.getFileStream(filename);
}
}
export default FilesController;