Currently I'm trying to make some kind of airplay server, but failed. The problem is that the airplay button doesn't appears on my ios device. I've followed this link, and I'm stuck at part where I need to register the airplay service. I'm using
dns-sd -R MyAirplayService _airplay._tcp local 22555 command, service shows as registrated, but no button for me. Tried to change port to 7000 or 7100, but same result. Can you show me, where am I wrong?
How to make AirPlay button to appear?
3.2k Views Asked by Bicycle Repair Man At
1
There are 1 best solutions below
Related Questions in AIRPLAY
- AVPlayer: AirPlay button shows up in control center even though allowsExternalPlayback is set to NO
- Share data between two UIWindows
- How to Screenshare of my iPad on Mac
- iOS External Display Incorrect Orientation
- Split audio route in active VoiceChat AVAudioSession to play at AirPlay but record using a device
- Setting bitrate for the AirPlay
- Airplay audio only with Safari
- iOS background Airplay
- YouTube embed AirPlay UIWebView
- Simulating a resizeable airplay display
- How to make AirPlay button to appear?
- Implement Airplay Software Receiver in Android OS
- locate media source of playing medie wp
- AirPlay - programatically disconnect before switching the other device
- MPVolumeView Airplay only touches when mirroring
Related Questions in MDNS
- Using apple mdns service in android
- How to make AirPlay button to appear?
- Need more ideas: How to check if iPhone is in Wifi
- socket sendto get the error 22 during udp packets
- JmDNS on Android
- Change domain "local" in avahi and and use a hostname with multiple labels
- how to parse MDNS response?
- mDNSResponder compilation on MinGW
- Could I use avahi to publish service across subnetworks?
- What happens to DNS queries in adhoc network?
- android resolve .local (mDNS)
- Mdns packets not received by avahi
- React-Native - Zeroconf - cannot read property 'scan' of null
- react-native-zeroconf - mdns discovery in android emulator
- Is it possible to advertise an mDNS service with invalid name / type?
Related Questions in DNS-SD
- How to make AirPlay button to appear?
- How to query TXT and SRV records from Windows?
- dns-sd Registration Not Appearing in Browse After Being Accepted
- Referring to DNSSDObjects in dns_sd.h and DNSServiceResolve in MonoTouch
- Which domain to register a service name with DNS-SD when domain is assigned by DHCP server?
- OPC UA Multicast Discovery
- Regarding mDNS observations on Wireshark
- Bonjour DNS-SD callback not being called, where's a mistake in my code?
- passing integer as * void in objective-c/cocoa
- How exactly does mDNS resolve addresses?
- DNS-SD on client-side javascript
- I am trying to generate dns-sd query for _universal._sub._ipp.tcp.local, is there a way to request sub query
- Is there any reliable way to discover microcontroler in LAN in iOS / Android / Windows / Linux / macOS?
- cmd or PowerShell equivalent to macOS' dns-sd command?
- Zeroconfig/Bonjour/dns-sd: How to translate local. hostname into IP address
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You also need to register a corresponding
_raop._tcpservice.By corresponding, I mean the mac addresses (aka device ids) need to match.
For more details on what the announcements should look like, see http://nto.github.io/AirPlay.html
It used to be that only registering the
_airplay._tcpwas enough, but that has since changed...