chromecast

What of HTML5 and the Browser DOM is supported in Chromecast

感情迁移 提交于 2019-12-10 21:21:50
问题 The documnentation says that Chromecast is using a "Scaled down" version of the Chrome Browser. Is there somewhere a list of supported HTML5 tags and supported JavaScript DOM actions? I like to build a UX in HTML5 for Chromecast that I can remote control from a mobile phone or desktop browser. Video is only secondary in this solution 回答1: I am not aware of a comprehensive list like that. You need to keep in mind that Chromecast devices are geared toward consumption of media, so there is a

Do the latest Android updates disable the battery optimization whitelist?

醉酒当歌 提交于 2019-12-10 13:58:33
问题 TL;DR Did the 'June 5, 2017' security updates for Android 7.1.2 cause Android to start ignoring the battery optimization whitelist (i.e. the thing that's meant to let an app disable Doze mode)? And if so, how can an app now programmatically disable Doze mode if it has a use-case that requires the CPU and wifi be kept continuously active? Context I have an Android app which supports casting local audio files to a networked Chromecast receiver (using an embedded HTTP server to stream the file

Cast image (photo) to Chromecast

为君一笑 提交于 2019-12-10 12:45:42
问题 I'm following these (1, 2) guides to create a sender Android application for Chromecast and I'm only interested in sending pictures. There are a lot of informaton and samples how to cast Text , Audio and Video . But not a single word how to that with Pictures . I belive in power of stackoferflow and someone should've faced such problem. Please give some good sample or tutorial. All I need is guide to cast fullscreen picture using Media Router and its features. Thats how I was sending text

Seeking / start media at desired position on Chromecast from Android from my own webserver

时间秒杀一切 提交于 2019-12-10 11:54:46
问题 I am currently developing a media application for Android that can cast it's media to a Google Chromecast. This application is not meant to be published so some of the unorthodox choices I have made (web server, local files etc.) isn't part of the discussion. The problem is that when I load a media stream to the Chromecast, or seek in the stream, it doesn't change. The callback says it succeeds, but the movie keeps playing from scratch (when I load with initial position) and doesn't change

Streaming .m3u8 format using Chromecast [closed]

老子叫甜甜 提交于 2019-12-10 11:33:45
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 10 months ago . Hi i developed the application to cast my videos to TV via Chromecast.Now trying to play m3u8 videos via Chromecast is it possible as m3u8 videos buffering is good and control is good compare to mp4 any links will also do i cannot find how to stream m3u8 using Chromecast. 回答1: The .m3u8 format is for HLS (HTTP

Does google chromecast iOS SDK support lock screen controls?

自作多情 提交于 2019-12-10 08:04:37
问题 I've tried to implement lock screen controls for google Chromecast video streaming app with the latest GoogleCast framework for iOS (2.1.0). I've corrected the example Chromecast app - https://github.com/googlecast/CastVideos-ios Have added UIBackgroundModes row to the Info.plist Added MediaPlayer framework. And added the following code to ChromecastDeviceController.m #import <MediaPlayer/MPNowPlayingInfoCenter.h> #import <MediaPlayer/MPMediaItem.h> ....... - (BOOL)loadMedia:(NSURL *)url

Google Cast SDK 2.3.0 for iOS doesn't support 64-bit

时光总嘲笑我的痴心妄想 提交于 2019-12-09 19:43:30
问题 It seems like the 2.3.0 version of the Google Cast SDK for iOS stopped supporting the arm64 architecture (it does support x86_64 though, making it work in the 64-bit simulator) λ: cd GoogleCast.framework λ: file GoogleCast GoogleCast: Mach-O universal binary with 5 architectures GoogleCast (for architecture cputype (16777228) cpusubtype (0)): current ar archive GoogleCast (for architecture armv7): current ar archive random library GoogleCast (for architecture armv7s): current ar archive

Google Cast custom receiver timing out

我与影子孤独终老i 提交于 2019-12-09 16:46:17
问题 Using the Google CAF Receiver SDK, how do we prevent the receiver from timing out and automatically killing the cast session when we're not using the receiver player? The standard Google Cast use case is to send media from a device to the cast receiver and have the receiver render the media using a player. The CAF receiver SDK provides this functionality in a beautiful, simple way using the element cast-media-player . But for those instances when we want to cast from a device and render

Styled Receiver and Remote Display from the same sender app (Chromecast Android app)?

被刻印的时光 ゝ 提交于 2019-12-08 10:42:52
问题 I am building a Chromecast Android sender app that needs to have two receiver apps, one of type Default / Styled Receiver App and the other as Remote Display . I am setting the CastOptionsProvider for my app in my AndroidManifest.xml as : <meta-data android:name="com.google.android.gms.cast.framework.OPTIONS_PROVIDER_CLASS_NAME" android:value="com.myapp.CastOptionsProvider" /> CastOptionsProvider.xml class CastOptionsProvider : OptionsProvider { override fun getCastOptions(context: Context):

Sending custom UIViewController by Chromecast

廉价感情. 提交于 2019-12-08 08:45:18
问题 I'm trying to get started with Chromecast as well as Airplay, and I'm a bit stuck : is it possible to send directly a UIViewController to the Chromecast-connected device? From what I looked, it seems I am only able to send basic media (image, text, video) to the device. So, if I understand, the only solution would be to "re-create" the interface by sending the components one by one? (is that even possible? or can you display only one media at once?) Thanks 回答1: You can create custom channels