diff --git a/docs/content/2.components/CldVideoPlayer.md b/docs/content/2.components/CldVideoPlayer.md
index 1350a4c..ca22e07 100644
--- a/docs/content/2.components/CldVideoPlayer.md
+++ b/docs/content/2.components/CldVideoPlayer.md
@@ -137,6 +137,7 @@ Adding a button to select chapters (you can pass `chapters` prop as a boolean if
| pictureInPictureToogle | boolean | - | Enable Picture in Picture mode | true |
| chaptersButton | boolean | - | Enable Chapters button | true |
| chapters | object/boolean | - | Chapters configuration | { 0: 'Chapter 1', 6: 'Chapter 2', 9: 'Chapter 3' } |
+| disableRemotePlayback | boolean | - | Indicate if media element may have a remote playback UI | true |
## Colors Prop
diff --git a/playground/app.vue b/playground/app.vue
index 7db0d69..46919f9 100644
--- a/playground/app.vue
+++ b/playground/app.vue
@@ -1,38 +1,40 @@
-
+
-
+
-
+
Upload
diff --git a/src/runtime/components/CldVideoPlayer.vue b/src/runtime/components/CldVideoPlayer.vue
index 7c8a082..97a1c39 100644
--- a/src/runtime/components/CldVideoPlayer.vue
+++ b/src/runtime/components/CldVideoPlayer.vue
@@ -30,6 +30,7 @@ export interface CloudinaryVideoPlayerOptions {
pictureInPictureToggle?: boolean
chapters?: Record | boolean
chaptersButton?: boolean
+ disableRemotePlayback?: boolean
}
export interface CloudinaryVideoPlayerOptionsColors {
@@ -244,6 +245,7 @@ useHead({
:class="playerClassName"
:width="width"
:height="height"
+ :disableRemotePlayback="disableRemotePlayback"
/>