https://github.com/guerrerocarlos/node-airplay-xbmc
https://github.com/guerrerocarlos/node-airplay-xbmc
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/guerrerocarlos/node-airplay-xbmc
- Owner: guerrerocarlos
- Created: 2014-07-30T07:16:23.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-11-28T16:43:45.000Z (over 10 years ago)
- Last Synced: 2025-04-18T13:36:14.177Z (about 1 month ago)
- Language: JavaScript
- Size: 8.52 MB
- Stars: 3
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
node-airplay-xbmc
=================node-airplay-xbmc is a client library for Apple's AirPlay remote playback protocol.
## Installation
From npm:
npm intall airplay-xbmc
From source:
git clone https://github.com/guerrerocarlos/node-airplay-xbmc.git
npm link## Usage
``` javascript
// remote video
var browser = require( 'airplay-xbmc' ).createBrowser();
browser.on( 'deviceOn', function( device ) {
device.play( 'http://remotehost/video.mp4', 0, function() {
console.info( 'video playing...' );
});
});
browser.start();
```