Last active
May 10, 2020 18:22
-
-
Save brandonaaskov/d71a986d2fd05ff6fa634c4572d0fbe2 to your computer and use it in GitHub Desktop.
Activating AirPlay via Javascript Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>AirPlay Javascript Demo</title> | |
<script> | |
document.addEventListener('DOMContentLoaded', () => { | |
const player = document.querySelector("#player") | |
const button = document.querySelector("#airplay-button") | |
let isAirPlayAvailable = false | |
player.addEventListener("webkitplaybacktargetavailabilitychanged", event => { | |
if (event.availability === "available") { | |
isAirPlayAvailable = true | |
} | |
}) | |
button.addEventListener("click", () => { | |
if (isAirPlayAvailable) { | |
player.webkitShowPlaybackTargetPicker() | |
} | |
}) | |
}) | |
</script> | |
</head> | |
<body> | |
<button id="airplay-button">Activate AirPlay Menu</button> | |
<video | |
id="player" | |
width="640" | |
height="360" | |
controls | |
src="https://cdn.jsdelivr.net/npm/[email protected]/video.mp4" | |
> | |
</video> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment