expo-libvlc-player 7.0.41 → 7.0.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -11
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -299,21 +299,13 @@ The current workaround selects the video track back but causes a brief black scr
|
|
|
299
299
|
|
|
300
300
|
https://code.videolan.org/videolan/VLCKit/-/issues/743
|
|
301
301
|
|
|
302
|
-
#### Audio delay
|
|
303
|
-
|
|
304
|
-
On iOS, the `VLCKit` player experiences a small audio delay when resuming or muting media playback.
|
|
305
|
-
|
|
306
|
-
This might be related to the internal clock used by the library core causing inaccurate time values.
|
|
307
|
-
|
|
308
|
-
https://code.videolan.org/videolan/VLCKit/-/issues/233
|
|
309
|
-
|
|
310
302
|
#### Local network
|
|
311
303
|
|
|
312
|
-
On iOS, the `VLCKit` player
|
|
304
|
+
On iOS, the `VLCKit` player interacts with the local network to discover media servers by default.
|
|
313
305
|
|
|
314
|
-
A
|
|
306
|
+
A custom message can be provided for the `NSLocalNetworkUsageDescription` key in the Info.plist file.
|
|
315
307
|
|
|
316
|
-
https://
|
|
308
|
+
https://code.videolan.org/videolan/vlc-ios/-/issues/893
|
|
317
309
|
|
|
318
310
|
## Disclaimer
|
|
319
311
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-libvlc-player",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.42",
|
|
4
4
|
"description": "LibVLC Player for Expo",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@types/react": "^19.2.15",
|
|
35
35
|
"eslint": "^9.39.4",
|
|
36
36
|
"eslint-config-universe": "^15.2.0",
|
|
37
|
-
"expo": "~55.0.
|
|
37
|
+
"expo": "~55.0.27",
|
|
38
38
|
"husky": "^9.1.7",
|
|
39
39
|
"lint-staged": "^16.4.0",
|
|
40
40
|
"prettier": "^3.8.3",
|
|
@@ -45,5 +45,8 @@
|
|
|
45
45
|
"expo": "*",
|
|
46
46
|
"react": "*",
|
|
47
47
|
"react-native": "*"
|
|
48
|
+
},
|
|
49
|
+
"allowScripts": {
|
|
50
|
+
"fsevents@2.3.3": true
|
|
48
51
|
}
|
|
49
52
|
}
|