Michael
Michael

Reputation: 524

Stream Audio from Android to Chromecast

I have a music player in Android, which uses android.media.MediaPlayer to play music from the SD card.

I would like to add the ability to cast the music to a Chromecast device.

I have played around with the democastplayer demo app. Specifically I tried to get the MediaRouteSelector to work with a 'live audio' route, but the 'cast' action button didn't show (suggesting live audio is not supported perhaps?). I also tried a few other things, but had no luck getting democastplayer to send MP3 audio to Chromecast.

Is streaming/sending local SD MP3 files to Chromecast even possible? If so, are there any sample apps or open source projects I can refer to?

Thanks in advance.

Upvotes: 2

Views: 4448

Answers (2)

siva
siva

Reputation: 375

Yes, Possible to stream your MP3 files by sending file url to chromecast device you can be using remote media player to load the media file. Refer this sample https://github.com/ovingalafsal/ChromeCastSampleApp it might be helpful

Upvotes: 1

Ali Naddaf
Ali Naddaf

Reputation: 19044

You need to add/write a small web server to your android application so it can serve the local media. Then have your sender application send the url of the media (that your local server is serving) to chromecast so it can play the music directly served from your phone.

Upvotes: 4

Related Questions