google-cast

Unselecting route because it is no longer selectable chromecast Android Sender

我是研究僧i 提交于 2020-01-07 09:03:06
问题 Chromecast is causing this error only sometimes when trying to connect to a device on my network, but i am not sure why when the same build works on other devices. Can someone please help me? "unselecting the current device "07-18 15:22:20.592: I/MediaRouter(3628): Unselecting the current route because it is no longer selectable: MediaRouter.RouteInfo{ uniqueId=com.google.android.gms/.cast.media.CastMediaRouteProviderService:35b39330e73d45f54bf12f20a90529a2, name=old reliable, description

Controlling multiple Chromecast Receivers from one Sender?

|▌冷眼眸甩不掉的悲伤 提交于 2020-01-06 19:34:54
问题 Is it possible to write a Chrome extension (or Android app) that creates multiple Senders, each connecting to a different Receiver? In other words, I need to build an interface from which an operator can control the streams on multiple different Chromecasts in the vicinity - each will be playing a different video stream. I understand from other posts that the chrome.cast API does not allow for this - that the Chrome extension may acts as a single Sender only? This restriction seems arbitrary

Does v3 Google Cast receiver parse alternative audio tracks from an hls master playlist automatically or do I have to define them in the sender?

柔情痞子 提交于 2020-01-04 14:04:06
问题 I'm trying to get a multi-audio HLS stream working on a v3 Google Cast custom receiver app. The master playlist of the stream refers to several video renditions of different resolution and two alternative audio tracks: #EXTM3U #EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="aac",LANGUAGE="de",NAME="TV Ton",DEFAULT=YES, AUTOSELECT=YES,URI="index_1_a.m3u8" #EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="aac",LANGUAGE="de",NAME="Audiodeskription",DEFAULT=NO, AUTOSELECT=NO,URI="index_2_a.m3u8" #EXT-X-STREAM-INF:AUDIO="aac"

How to style GCKUIMiniMediaControlsViewController in iOS?

牧云@^-^@ 提交于 2020-01-04 09:22:01
问题 I'm upgrading current Cast SDK to V3 and want to use build-in UI components and remove deprecated functions. Currently, the GCKUIMiniMediaControlsViewController has a white/light theme but I'd like to change it to a darker theme. However, I couldn't find any function/propert/protocol that I can use to change the style. The document Add Advanced Cast v3 Features to your iOS App says: The Cast framework widgets supports the Apple UIAppearance Protocol in UIKit to change the appearance of the

skipNext skipPrevious Google Cast greyed out

人盡茶涼 提交于 2020-01-03 03:00:07
问题 As it pertains to How to add/use GCKMediaQueue in Swift? I have added the skip buttons on AppDelegate, and they do appear on the expanded controller screen. But they are greyed out. If I let a video end, then it will play the next in the queue. But then why are the buttons greyed out? That usually means that they are not available to use. But I have 50 videos in the queue, so what am I missing? func addvideos2queue() { for indexloop in 1 ... 50 { debugPrint("**** Attempting #" + String

Can Chromecast cast .m3u8 live stream on default receiver?

倾然丶 夕夏残阳落幕 提交于 2020-01-02 10:16:34
问题 I have tried casting .mp4 on default receiver. It works great. Used the same setting to play m3u8 and metadata comes but video doesn't play. Want to know if I can cast .m3u8 as well on the default receiver. If so what MIME type should I use and additional setting should I set? 回答1: HLS (if that is what is in your m38u playlist) is supported. You need to make sure CORS requirements are satisfied (something that is not required for plain mp4). Look at the docs under https://developers.google

Unable to find enum descriptor PBFieldDescriptorProto_Label while unit testing

眉间皱痕 提交于 2020-01-02 08:40:06
问题 After adding the GoogleCast framework to the unit test target I'm getting the following exception right before the tests start to run. Apart from that the SDK is fully functional. I'd appreciate any ideas! 2014-02-25 18:03:08.475 otest[3786:303] Unknown Device Type. Using UIUserInterfaceIdiomPhone based on screen size 2014-02-25 18:03:08.593 otest[3786:303] *** Assertion failure in -[GCKPB_PBFieldDescriptor initWithFieldDescription:rootClass:], /Volumes/BuildData/pulse-data/agents/wpye22.hot

Does the Chromecast support casting videos from Reddit? (HLS and Dash videos)

自闭症网瘾萝莉.ら 提交于 2020-01-02 04:51:10
问题 Called proxy with URL http://192.168.xx.xx:8080/3hyw7hwoajn21/HLSPlaylist.m3u8 Called proxy with URL http://192.168.xx.xx:8080/3hyw7hwoajn21/HLS_540_v4.m3u8 Called proxy with URL http://192.168.xx.xx:8080/3hyw7hwoajn21/HLS_AUDIO_160_K_v4.m3u8 Called proxy with URL http://192.168.xx.xx:8080/3hyw7hwoajn21/HLS_224_v4.m3u8 Here's an example Reddit video: https://www.reddit.com/r/me_irl/comments/b3vrs4/me_irl Looking through the JSON, it has a few options for video sources: "reddit_video": { "dash

What does “queue segment (1796152) as segment duration will go beyond buffer limit” mean?

末鹿安然 提交于 2019-12-25 07:26:28
问题 Recently I started getting user complaints while playing m3u8 videos. On everyone of those cases the symptoms are that the Chromecast sits there attempting to load the video and it never loads. On the Chromecast console I see this error for every single one of the videos the users have sent to me: media_player.js:23 [ 11.182s] [cast.player.core.SegmentManager] 0: queue segment (1796152) as segment duration will go beyond buffer limit What does that error mean? Also why is it happening all of

Chromecast sample sender application CastHelloText-chrome ends with error when trying to get session

◇◆丶佛笑我妖孽 提交于 2019-12-25 01:55:43
问题 I have problem with launching Google-Cast application similar to sample CastHelloText-chrome . I slightly modified example code for my specific purposes. The goal for creating this application is to send and show image data directly in Chromecast device . Particularly the difference between official sample and my code is in message format and its content, sent by sender application. Sender application took png image coded by base64 and send through message bus with custom namespace. Receiver