Skip to content

Instantly share code, notes, and snippets.

@sagar-gavhane
Created April 9, 2020 16:51
Show Gist options
  • Save sagar-gavhane/efef5c3d8d462870f9daf17ee49ff63f to your computer and use it in GitHub Desktop.
Save sagar-gavhane/efef5c3d8d462870f9daf17ee49ff63f to your computer and use it in GitHub Desktop.
Picture in picture API in all browsers that support it
const getPictureInPicture = () => {
if (typeof document === "undefined") return { supported: false };
const video = document.createElement("video");
// if browser is chrome: https://developers.google.com/web/updates/2018/10/watch-video-using-picture-in-picture
if (document.pictureInPictureEnabled && !video.disablePictureInPicture) {
return {
supported: true,
request: (video) => video.requestPictureInPicture(),
exit: (video) => document.exitPictureInPicture(),
isActive: (video) => video === document.pictureInPictureElement,
};
}
// if browser is safari: https://developer.apple.com/documentation/webkitjs/adding_picture_in_picture_to_your_safari_media_controls
if (typeof video.webkitSetPresentationMode === "function") {
return {
supported: true,
request: (video) => video.webkitSetPresentationMode("picture-in-picture"),
exit: (video) => video.webkitSetPresentationMode("inline"),
isActive: (video) =>
video.webkitPresentationMode === "picture-in-picture",
};
}
// if browser is firefox: https://github.com/mozilla/standards-positions/issues/72
return {
supported: false,
};
};
export default getPictureInPicture;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment