Advertisement
Guest User

Untitled

a guest
Jul 30th, 2014
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. if (session) {
  2. var mediaInfo = new chrome.cast.media.MediaInfo("http://localhost/tom_www/CastTom/music.mp3", "audio/mpeg");
  3. var request = new chrome.cast.media.LoadRequest(mediaInfo);
  4. session.loadMedia(
  5. request,
  6. onMediaDiscovered.bind(this, 'loadMedia'),
  7. onMediaError
  8. );
  9. } else {
  10. console.log("No session available, connect first");
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement