Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to find FreeBox Player (AirPlay device) #42

Open
AnAkkk opened this issue Jul 14, 2015 · 1 comment
Open

Unable to find FreeBox Player (AirPlay device) #42

AnAkkk opened this issue Jul 14, 2015 · 1 comment

Comments

@AnAkkk
Copy link

AnAkkk commented Jul 14, 2015

Freebox Player is an AirPlay device provided by the French ISP named "Free", you can stream media content to it and it'll show on the TV.
It works fine with mdns (https://www.npmjs.com/package/mdns), but node-mdns-js doesn't detect it.

Here's the script I used on mdns:

var mdns = require('mdns');
var browser = mdns.createBrowser(mdns.tcp('airplay'));
browser.on('serviceUp', function(service) {
console.log("service up: ", service);
});
browser.on('serviceDown', function(service) {
console.log("service down: ", service);
});
browser.start();

And the result:

service up: { interfaceIndex: 2,
type:
{ name: 'airplay',
protocol: 'tcp',
subtypes: [],
fullyQualified: true },
replyDomain: 'local.',
flags: 2,
name: 'Freebox Player',
networkInterface: 'REMOVED',
fullname: 'Freebox\032Player._airplay._tcp.local.',
host: 'Freebox-Player.local.',
port: 7000,
rawTxtRecord: REMOVED,
txtRecord:
{ vv: '1',
flags: '0x4',
srcvers: '160.10',
model: 'FreeboxPlayer1,1',
features: '0x2203abb',
deviceid: 'REMOVED' },
addresses: [ 'REMOVED', 'REMOVED' ] }

I'm on Linux, the avahi daemon is running, and avahi-browse -a shows the airplay device as well.
EDIT: Actually I don't think it's limited to airplay, it doesn't see any services from the Freebox Player at all.

Uncommenting "mdns.excludeInterface('0.0.0.0');" makes no difference.

@kmpm
Copy link
Collaborator

kmpm commented Sep 4, 2015

Probably related to #45

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants