We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c64fb7d commit 1f6b67eCopy full SHA for 1f6b67e
packages/triple-media/src/triple-media.tsx
@@ -47,6 +47,7 @@ export default function Media({
47
sourceUrl,
48
title,
49
description,
50
+ videoInitiallyMuted,
51
} = media
52
53
if (type && type === 'video' && video) {
@@ -60,6 +61,7 @@ export default function Media({
60
61
cloudinaryId={cloudinaryId}
62
autoPlay={autoPlay}
63
loop={loop}
64
+ muted={videoInitiallyMuted}
65
hideControls={!!hideControls}
66
showNativeControls={showNativeControls}
67
/>
packages/type-definitions/src/image.ts
@@ -62,4 +62,6 @@ export interface ImageMeta {
href: string
label?: string
}
+ /* 어드민에서 설정하는 값으로 영상 재생시 소리를 음소거 해주는 기능 */
+ videoInitiallyMuted?: boolean
0 commit comments