react-native-video/package.json

42 lines
1.1 KiB
JSON
Raw Normal View History

2015-03-30 23:07:55 -06:00
{
2017-08-16 13:19:51 -06:00
"name": "react-native-video",
2023-02-12 13:21:32 -07:00
"version": "6.0.0-alpha.5",
2017-08-16 13:19:51 -06:00
"description": "A <Video /> element for react-native",
"main": "Video.js",
"license": "MIT",
2022-05-29 03:38:21 -06:00
"author": "Community Contributors",
2022-10-04 05:18:23 -06:00
"homepage": "https://github.com/react-native-video/react-native-video#readme",
"test": "",
2017-08-16 13:19:51 -06:00
"repository": {
"type": "git",
"url": "git@github.com:react-native-video/react-native-video.git"
},
2017-08-16 13:19:51 -06:00
"devDependencies": {
2020-07-09 20:57:34 -06:00
"@react-native-community/eslint-config": "^0.0.5",
"eslint": "^6.5.1",
"react": "16.9.0",
"react-native": "0.61.5",
"react-native-windows": "^0.61.0-0"
2017-08-16 13:19:51 -06:00
},
"dependencies": {
"deprecated-react-native-prop-types": "^2.2.0",
2018-12-31 23:04:04 -07:00
"keymirror": "^0.1.1",
2022-06-22 12:09:01 -06:00
"prop-types": "^15.7.2"
2017-08-16 13:19:51 -06:00
},
"scripts": {
"lint": "yarn eslint .",
"xbasic": "yarn --cwd examples/basic"
},
2018-12-31 23:04:04 -07:00
"files": [
2018-09-12 14:01:28 -06:00
"android",
"ios",
"windows",
2018-11-21 10:21:15 -07:00
"FilterType.js",
Add iOS and Android basic DRM support (#1445) This PR adds support for DRM streams on iOS (Fairplay) and Android (Playready, Widevine, Clearkey) I am neither Android nor iOS developer, so feel free to provide feedback to improve this PR. **Test stream for ANDROID:** ``` testStream = { uri: 'http://profficialsite.origin.mediaservices.windows.net/c51358ea-9a5e-4322-8951-897d640fdfd7/tearsofsteel_4k.ism/manifest(format=mpd-time-csf)', type: 'mpd', drm: { type: DRMType.PLAYREADY, licenseServer: 'http://test.playready.microsoft.com/service/rightsmanager.asmx?cfg=(persist:false,sl:150)' } }; ``` or ``` { uri: 'https://media.axprod.net/TestVectors/v7-MultiDRM-SingleKey/Manifest_1080p.mpd', drm: { type: 'widevine', //or DRMType.WIDEVINE licenseServer: 'https://drm-widevine-licensing.axtest.net/AcquireLicense', headers: { 'X-AxDRM-Message': 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ2ZXJzaW9uIjoxLCJjb21fa2V5X2lkIjoiYjMzNjRlYjUtNTFmNi00YWUzLThjOTgtMzNjZWQ1ZTMxYzc4IiwibWVzc2FnZSI6eyJ0eXBlIjoiZW50aXRsZW1lbnRfbWVzc2FnZSIsImZpcnN0X3BsYXlfZXhwaXJhdGlvbiI6NjAsInBsYXlyZWFkeSI6eyJyZWFsX3RpbWVfZXhwaXJhdGlvbiI6dHJ1ZX0sImtleXMiOlt7ImlkIjoiOWViNDA1MGQtZTQ0Yi00ODAyLTkzMmUtMjdkNzUwODNlMjY2IiwiZW5jcnlwdGVkX2tleSI6ImxLM09qSExZVzI0Y3Iya3RSNzRmbnc9PSJ9XX19.FAbIiPxX8BHi9RwfzD7Yn-wugU19ghrkBFKsaCPrZmU' }, } } ``` **Test stream for iOS:** Sorry but I can not provide free streams to test. If anyone can provide test streams, or found some we can use, please let me know to also test them. It has been tested with a private provider and they work, at least with the `getLicense` override method. (An example implementation is provided in the README)
2020-08-12 19:56:21 -06:00
"DRMType.js",
2018-09-12 14:01:28 -06:00
"TextTrackType.js",
2018-11-21 10:21:15 -07:00
"VideoResizeMode.js",
"react-native-video.podspec",
"docs"
2018-09-12 14:01:28 -06:00
]
}