All Questions
Tagged with google-cast audio
9 questions
0
votes
1
answer
129
views
How to show a Chromecast introduction screen?
I am developing an audio app for Android with Java as the language.
The guide from Google says
A Show a Cast introduction screen the first time Web Receivers are available
B Visually highlight the ...
0
votes
0
answers
96
views
Chromecast access raw video/audio data in receiver application
How can I access/modify the raw data of a video or audio stream in a Chromecast receiver application without rooting the device?
1
vote
1
answer
911
views
In android, how to implement 'Multi-track Audio Support' using Chromecast?
I need to implement Multi-track Audio Support feature in Sender application. Means, When user casts any video/movie on TV using Chromecast, then on sender application, user should be able to see all ...
1
vote
1
answer
664
views
Android Chromecast: Casting local audio file fails
I'm trying to cast a local device audio file to the Chromecast device.
I have a URI, for example content://settings/system/alarm_alert and when casting it to Chromecast it simply does not work - ...
2
votes
1
answer
1k
views
Stream Audio to Google Cast Audio from Raspberry Pi
I'd like to send audio directly from a Raspberry Pi to a Google Cast Audio device.
I'm happy to do this via a fileserver hosted on the Pi (or similar) but no external services can be used- no ...
2
votes
0
answers
179
views
Google Cast CastRemoteDisplayLocalService Audio Lag
I am working with CastRemoteDisplayLocalService and CastPresentation to do remote display in my app. The app can be pretty graphics heavy at times but when a user is playing audio the cast can become ...
2
votes
1
answer
2k
views
Cast SDK - using local files
I'm building an app and I wanted to use the Cast SDK.
I set everything up, But then I realized that the files I want to cast must be online (using URL) and I can't use my phone local files.
Does ...
1
vote
1
answer
558
views
Play Audio from receiver website
I'm trying to get my receiver to play an mp3 file hosted on the server with the following function
playSound_: function(mp3_file) {
var snd = new Audio("audio/" + mp3_file);
snd.play();
},
...
2
votes
1
answer
1k
views
Launching audio on TV from my android phone app using Google Chromecast
I want to use Google Chrome-cast API in one of my Music application.
I want to do following:
1)Connect My Android device with Google chrome-cast receiver.
2)When i click on song from application it ...