mirror of
https://github.com/iv-org/videojs-quality-selector.git
synced 2024-10-01 06:35:49 -04:00
8feeafbf00
When the HTML5 preload attribute is set to 'none' or when using Safari (even when the preload attribute is not 'none'), the video does not resume playing after the quality is changed using the quality selector menu. The quality selector plugin was listening for the 'loadeddata' event in order to know when to resume playback, but the 'loadeddata' event does not fire when the preload attribute is set to 'none', and Safari does not fetch enough data to emit a 'loadeddata' event.
57 lines
1.6 KiB
JSON
57 lines
1.6 KiB
JSON
{
|
|
"name": "silvermine-videojs-quality-selector",
|
|
"version": "1.1.1",
|
|
"description": "video.js plugin for selecting a video quality or resolution",
|
|
"main": "src/js/index.js",
|
|
"scripts": {
|
|
"prepublish": "grunt build",
|
|
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec 'tests/**/*.test.js'"
|
|
},
|
|
"author": "Jeremy Thomerson",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/silvermine/videojs-quality-selector.git"
|
|
},
|
|
"keywords": [
|
|
"video.js",
|
|
"videojs",
|
|
"plugin",
|
|
"resolution",
|
|
"quality"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/silvermine/videojs-quality-selector/issues"
|
|
},
|
|
"homepage": "https://github.com/silvermine/videojs-quality-selector#readme",
|
|
"devDependencies": {
|
|
"autoprefixer": "7.1.1",
|
|
"coveralls": "2.13.1",
|
|
"eslint": "4.0.0",
|
|
"eslint-config-silvermine": "1.3.0",
|
|
"expect.js": "0.3.1",
|
|
"grunt": "1.0.1",
|
|
"grunt-browserify": "5.0.0",
|
|
"grunt-contrib-uglify": "3.0.1",
|
|
"grunt-contrib-watch": "1.0.0",
|
|
"grunt-eslint": "20.0.0",
|
|
"grunt-postcss": "0.8.0",
|
|
"grunt-sass": "2.0.0",
|
|
"grunt-sass-lint": "0.2.2",
|
|
"istanbul": "0.4.5",
|
|
"mocha": "3.4.2",
|
|
"mocha-lcov-reporter": "1.3.0",
|
|
"rewire": "2.5.2",
|
|
"sass-lint-config-silvermine": "1.0.1",
|
|
"silvermine-serverless-utils": "git+https://github.com/silvermine/serverless-utils.git#910f1149af824fc8d0fa840878079c7d3df0f414",
|
|
"sinon": "2.3.5"
|
|
},
|
|
"peerDependencies": {
|
|
"video.js": "6.x"
|
|
},
|
|
"dependencies": {
|
|
"class.extend": "0.9.2",
|
|
"underscore": "1.8.3"
|
|
}
|
|
}
|