Questions tagged [airplay]

Airplay is a streaming technology made by Apple to stream media to multiple devices wirelessly or to the Airplay SDK that offers deployment to many platforms.

Airplay?

Airplay is a Streaming Technology made by Apple Inc to stream media to multiple devices wirelessly or to the Airplay SDK that offers deployment to many platforms including iOS, macOS, tvOS, watchOS, Windows, Linux, Android, Symbian, and more recently, through the Airplay Arcade, all major consoles and handheld devices.


Apple added Airplay in Safari

In 2015 Apple added Airplay for HTML5 Video *default player, And a API for JavaScript Presentation mode, for those who wanna use their own video player.

This can be done by using the following code:

// Safari 9+
if (window.WebKitPlaybackTargetAvailabilityEvent) {
    video.addEventListener('webkitplaybacktargetavailabilitychanged', function(event) {
        switch (event.availability) {
            case "available":
                airPlay.style.display = 'block';
                break;
            default:
                airPlay.style.display = 'none';
        }
        airPlay.addEventListener('click', function() {
            video.webkitShowPlaybackTargetPicker();
        });
    });
}

NOTE: Airplay can be use for both Audio and Video.


In 2016 They added Picture In Picture to the default HTML5 Player, its also use Javascript Presentation mode API.

453 questions
-1
votes
2 answers

Some questions about airplay technology license

Q: If company wants to develop STB with embedded airplay technology, how to get related airplay technology SDK and apply airplay license (as same as MFi license ?) ? As question 1, What is its license/royalty fee ? -Frank-
-1
votes
1 answer

Record audio + AirPlay

I'm making an app that allows you to do this: speaking and while you speak it share what you said to the AppleTV using AirPlay. The problem is that to record audio I use AVAudioRecorder and I pick the recorded audio from a path, which doesn't update…
user2099335
-4
votes
1 answer

is there any open source library or code project to implement the airplay in android?

is there any open source library or code project to implement the airplay in the android ? I want to make android as a server (Airplay receiver).
V-Xtreme
  • 7,230
  • 9
  • 39
  • 79
1 2 3
30
31