@remotion/player 4.0.261 → 4.0.262
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/dist/cjs/use-player.js +1 -1
- package/dist/esm/index.mjs +1 -1
- package/package.json +3 -3
package/dist/cjs/use-player.js
CHANGED
|
@@ -56,7 +56,7 @@ const usePlayer = () => {
|
|
|
56
56
|
* Play audios and videos directly here so they can benefit from
|
|
57
57
|
* being triggered by a click
|
|
58
58
|
*/
|
|
59
|
-
audioAndVideoTags.current.forEach((a) => a.play());
|
|
59
|
+
audioAndVideoTags.current.forEach((a) => a.play('player play() was called and playing audio from a click'));
|
|
60
60
|
imperativePlaying.current = true;
|
|
61
61
|
setPlaying(true);
|
|
62
62
|
playStart.current = frameRef.current;
|
package/dist/esm/index.mjs
CHANGED
|
@@ -585,7 +585,7 @@ var usePlayer = () => {
|
|
|
585
585
|
if (audioContext && audioContext.numberOfAudioTags > 0 && e) {
|
|
586
586
|
audioContext.playAllAudios();
|
|
587
587
|
}
|
|
588
|
-
audioAndVideoTags.current.forEach((a) => a.play());
|
|
588
|
+
audioAndVideoTags.current.forEach((a) => a.play("player play() was called and playing audio from a click"));
|
|
589
589
|
imperativePlaying.current = true;
|
|
590
590
|
setPlaying(true);
|
|
591
591
|
playStart.current = frameRef.current;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/player"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/player",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.262",
|
|
7
7
|
"description": "React component for embedding a Remotion preview into your app",
|
|
8
8
|
"main": "dist/cjs/index.js",
|
|
9
9
|
"types": "dist/cjs/index.d.ts",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
],
|
|
29
29
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"remotion": "4.0.
|
|
31
|
+
"remotion": "4.0.262"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"react": ">=16.8.0",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"webpack": "5.96.1",
|
|
44
44
|
"zod": "3.22.3",
|
|
45
45
|
"eslint": "9.19.0",
|
|
46
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
46
|
+
"@remotion/eslint-config-internal": "4.0.262"
|
|
47
47
|
},
|
|
48
48
|
"keywords": [
|
|
49
49
|
"remotion",
|