@zync/zync-screnplay-player 0.1.213 → 0.1.215
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/bundle.js +1 -1
- package/dist/screenplay/RemotionRenderer/components/effects/BrollFullscreen.js +1 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/BrollGreenScreen.js +8 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/BrollSplitScreen.js +6 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/BrollStudioBackdrop.js +6 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/CreatorCollabColdOpen.js +1 -1
- package/dist/screenplay/RemotionRenderer/components/layouts/CreatorCollabColdOpenVisual.js +3 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/CreatorCollabConversationSpine.js +3 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/CreatorCollabDocumentaryInset.js +3 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/CreatorCollabRackFocus.js +3 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/CreatorCollabSplit.js +5 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/CreatorCollabStudioSet.js +4 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/DynamicTriangle.js +3 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/Handoff.js +2 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/IntroVideo.js +6 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/KeyPointOverlayDepth.js +3 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/Keyword.js +5 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/KeywordStudioBackdrop.js +3 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/MotionStill.js +2 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/MotionStillFullScreen.js +2 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/MotionStillGreenScreen.js +5 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/MotionStillGreenScreenV2.js +8 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/MotionStillStudioBackdrop.js +6 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/SimpleFrame.js +2 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/SimpleFrameBroll.js +2 -0
- package/dist/screenplay/RemotionRenderer/components/layouts/TextWithVideo.js +2 -0
- package/dist/screenplay/RemotionRenderer/components/utils/ChromaKeyedVideo.js +3 -1
- package/dist/screenplay/RemotionRenderer/components/utils/FaceCenteredVideo.js +1 -0
- package/dist/screenplay/RemotionRenderer/theme/themes/collabintro/Nametag.js +2 -2
- package/dist/screenplay/RemotionRenderer/theme/themes/collabintro/Title.js +2 -2
- package/package.json +1 -1
|
@@ -70,6 +70,7 @@ var Square = function Square(_ref) {
|
|
|
70
70
|
useAveragePosition: true,
|
|
71
71
|
centerHorizontally: false
|
|
72
72
|
}) : /*#__PURE__*/React.createElement(OffthreadVideo, {
|
|
73
|
+
pauseWhenBuffering: true,
|
|
73
74
|
startFrom: startVideoFrom,
|
|
74
75
|
src: videoUrl,
|
|
75
76
|
muted: true,
|
|
@@ -136,6 +137,7 @@ var Square = function Square(_ref) {
|
|
|
136
137
|
centerHorizontally: false,
|
|
137
138
|
noBackgroundVideoEffects: noBackgroundVideoEffects
|
|
138
139
|
}) : /*#__PURE__*/React.createElement(OffthreadVideo, {
|
|
140
|
+
pauseWhenBuffering: true,
|
|
139
141
|
startFrom: startVideoFrom,
|
|
140
142
|
src: noBackgroundVideoUrl,
|
|
141
143
|
muted: false,
|
|
@@ -231,6 +233,7 @@ var Portrait = function Portrait(_ref2) {
|
|
|
231
233
|
useAveragePosition: true,
|
|
232
234
|
centerHorizontally: false
|
|
233
235
|
}) : /*#__PURE__*/React.createElement(OffthreadVideo, {
|
|
236
|
+
pauseWhenBuffering: true,
|
|
234
237
|
startFrom: startVideoFrom,
|
|
235
238
|
src: videoUrl,
|
|
236
239
|
muted: true,
|
|
@@ -296,6 +299,7 @@ var Portrait = function Portrait(_ref2) {
|
|
|
296
299
|
centerHorizontally: false,
|
|
297
300
|
noBackgroundVideoEffects: noBackgroundVideoEffects
|
|
298
301
|
}) : /*#__PURE__*/React.createElement(OffthreadVideo, {
|
|
302
|
+
pauseWhenBuffering: true,
|
|
299
303
|
startFrom: startVideoFrom,
|
|
300
304
|
src: noBackgroundVideoUrl,
|
|
301
305
|
muted: false,
|
|
@@ -391,6 +395,7 @@ var Landscape = function Landscape(_ref3) {
|
|
|
391
395
|
useAveragePosition: true,
|
|
392
396
|
centerHorizontally: false
|
|
393
397
|
}) : /*#__PURE__*/React.createElement(OffthreadVideo, {
|
|
398
|
+
pauseWhenBuffering: true,
|
|
394
399
|
startFrom: startVideoFrom,
|
|
395
400
|
src: videoUrl,
|
|
396
401
|
muted: true,
|
|
@@ -457,6 +462,7 @@ var Landscape = function Landscape(_ref3) {
|
|
|
457
462
|
centerHorizontally: false,
|
|
458
463
|
noBackgroundVideoEffects: noBackgroundVideoEffects
|
|
459
464
|
}) : /*#__PURE__*/React.createElement(OffthreadVideo, {
|
|
465
|
+
pauseWhenBuffering: true,
|
|
460
466
|
startFrom: startVideoFrom,
|
|
461
467
|
src: noBackgroundVideoUrl,
|
|
462
468
|
muted: false,
|
|
@@ -84,6 +84,7 @@ export var SimpleFrame = function SimpleFrame(_ref) {
|
|
|
84
84
|
filter: !showVirtual && noBackgroundVideoEffects !== null && noBackgroundVideoEffects !== void 0 && noBackgroundVideoEffects.backgroundDim && noBackgroundVideoUrl ? "brightness(0.7)" : undefined
|
|
85
85
|
}
|
|
86
86
|
}, /*#__PURE__*/React.createElement(OffthreadVideo, {
|
|
87
|
+
pauseWhenBuffering: true,
|
|
87
88
|
startFrom: startVideoFrom,
|
|
88
89
|
src: videoUrl,
|
|
89
90
|
muted: muted,
|
|
@@ -156,6 +157,7 @@ export var SimpleFrame = function SimpleFrame(_ref) {
|
|
|
156
157
|
height: "100%"
|
|
157
158
|
}
|
|
158
159
|
}, /*#__PURE__*/React.createElement(OffthreadVideo, {
|
|
160
|
+
pauseWhenBuffering: true,
|
|
159
161
|
startFrom: startVideoFrom,
|
|
160
162
|
src: noBackgroundVideoUrl,
|
|
161
163
|
muted: true,
|
|
@@ -67,6 +67,7 @@ export var SimpleFrameBroll = function SimpleFrameBroll(_ref) {
|
|
|
67
67
|
filter: !showVirtual && noBackgroundVideoEffects !== null && noBackgroundVideoEffects !== void 0 && noBackgroundVideoEffects.backgroundDim && noBackgroundVideoUrl ? "brightness(0.7)" : undefined
|
|
68
68
|
}
|
|
69
69
|
}) : /*#__PURE__*/React.createElement(OffthreadVideo, {
|
|
70
|
+
pauseWhenBuffering: true,
|
|
70
71
|
startFrom: startVideoFrom,
|
|
71
72
|
src: videoUrl,
|
|
72
73
|
muted: muted,
|
|
@@ -131,6 +132,7 @@ export var SimpleFrameBroll = function SimpleFrameBroll(_ref) {
|
|
|
131
132
|
zIndex: 11
|
|
132
133
|
}
|
|
133
134
|
}, /*#__PURE__*/React.createElement(OffthreadVideo, {
|
|
135
|
+
pauseWhenBuffering: true,
|
|
134
136
|
startFrom: startVideoFrom,
|
|
135
137
|
src: noBackgroundVideoUrl,
|
|
136
138
|
muted: true,
|
|
@@ -272,6 +272,7 @@ var TextWithVideoLandscape = function TextWithVideoLandscape(_ref3) {
|
|
|
272
272
|
containerWidth: isPortrait ? width - CHROME_PADDING * 2 : videoWidth,
|
|
273
273
|
containerHeight: isPortrait ? videoHeight : height - CHROME_PADDING * 2
|
|
274
274
|
}) : /*#__PURE__*/React.createElement(OffthreadVideo, {
|
|
275
|
+
pauseWhenBuffering: true,
|
|
275
276
|
startFrom: startVideoFrom,
|
|
276
277
|
src: videoUrl,
|
|
277
278
|
muted: muted,
|
|
@@ -352,6 +353,7 @@ var TextWithVideoLandscape = function TextWithVideoLandscape(_ref3) {
|
|
|
352
353
|
overflow: "hidden"
|
|
353
354
|
}
|
|
354
355
|
}, /*#__PURE__*/React.createElement(OffthreadVideo, {
|
|
356
|
+
pauseWhenBuffering: true,
|
|
355
357
|
startFrom: startVideoFrom,
|
|
356
358
|
src: noBackgroundVideoUrl,
|
|
357
359
|
muted: true,
|
|
@@ -38,7 +38,9 @@ export var ChromaKeyedVideo = function ChromaKeyedVideo(props) {
|
|
|
38
38
|
}
|
|
39
39
|
context.putImageData(imageFrame, 0, 0);
|
|
40
40
|
}, [height, width]);
|
|
41
|
-
return /*#__PURE__*/React.createElement(AbsoluteFill, null, /*#__PURE__*/React.createElement(AbsoluteFill, null, /*#__PURE__*/React.createElement(OffthreadVideo, _extends({
|
|
41
|
+
return /*#__PURE__*/React.createElement(AbsoluteFill, null, /*#__PURE__*/React.createElement(AbsoluteFill, null, /*#__PURE__*/React.createElement(OffthreadVideo, _extends({
|
|
42
|
+
pauseWhenBuffering: true
|
|
43
|
+
}, props, {
|
|
42
44
|
onVideoFrame: onVideoFrame
|
|
43
45
|
}))), /*#__PURE__*/React.createElement(AbsoluteFill, {
|
|
44
46
|
style: {
|
|
@@ -516,6 +516,7 @@ export var FaceCenteredVideo = function FaceCenteredVideo(_ref2) {
|
|
|
516
516
|
isolation: "isolate"
|
|
517
517
|
}, containerStyle)
|
|
518
518
|
}, /*#__PURE__*/React.createElement(OffthreadVideo, _extends({
|
|
519
|
+
pauseWhenBuffering: true,
|
|
519
520
|
src: src,
|
|
520
521
|
style: videoStyle,
|
|
521
522
|
transparent: transparent
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
|
-
import React from
|
|
3
|
-
import { CreatorCollabColdOpenVisual } from
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { CreatorCollabColdOpenVisual } from "../../../components/layouts/CreatorCollabColdOpenVisual";
|
|
4
4
|
export var Nametag = function Nametag(props) {
|
|
5
5
|
var _props$showChrome;
|
|
6
6
|
return /*#__PURE__*/React.createElement(CreatorCollabColdOpenVisual, _extends({}, props, {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
|
-
import React from
|
|
3
|
-
import { CreatorCollabColdOpenVisual } from
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { CreatorCollabColdOpenVisual } from "../../../components/layouts/CreatorCollabColdOpenVisual";
|
|
4
4
|
export var Title = function Title(props) {
|
|
5
5
|
var _props$showChrome;
|
|
6
6
|
return /*#__PURE__*/React.createElement(CreatorCollabColdOpenVisual, _extends({}, props, {
|