Google Chromecast.

Slides:



Advertisements
Similar presentations
The purpose of this PowerPoint presentation, is to help the user make the connection between a SmartPhone (iPhone or Droid) and software games written.
Advertisements

PAYware Mobile Android Comparison June Discussion Topics Obtaining the App PAYware Mobile App.
TRIRIGA Anywhere 10.4 Beta Registration Steps
Introduction to CLL App. CLL App is the service to give patients instant and remote access to their reports on their smartphones.
This course is designed to give you a basic introduction to the ins and outs of using tablet and smartphone technology. By and large, you will learn the.
ADVANCED CONCEPTS IN GOOGLE CALENDAR Advanced Session By Information Technology Services itservices.uncc.edu.
HCare access on an iPad hCare access is the remote access to PGH. The steps for installing vary from the Mac somewhat. This will guide you. Installation.
IPhone app with QuickBooks Online. What is QuickBooks Online for iPhone and how it works  QuickBooks Online for iPhone is a mobile application that keeps.
1 Tradedoubler & Mobile Mobile web & app tracking technical overview.
Downloading Lumi Show on Android Devices Through our technology, people gain insight, instantly.
Thanks for being a Hero Customer!
Bharathi.S. Intel® Pentium® 4, 3.6 GHz or equivalent AMD processor 500 MB free hard disk space 2 GB RAM 1 available USB 2.0 port and USB cable Microsoft®
DSM-260. Features Streaming Stream photos and videos from a mobile device, laptop, or network storage drive Stream music to your audio system Stream your.
HOW TO USE for Audio Diaries click for teacher instructions click for student instructions for smartphone instructions.
1. On your smartphone or tablet, visit the Apple App Store or the Google Play Store. Search for: In Case of Crisis Education OR, with the QR code reader.
 Computer News  Chromecast  One meeting a month (2 nd Wednesday)  Website &  
Convenience product security Collin Busch. What is a convenience product? A convenience product is a device or application that makes your life easier.
 Social Media Apps  Business Apps  Women & Kids Apps  Apps for Specific Industries  Most Downloaded Apps Of 2013.
1 Copyright © 2015 Pexus LLC Network shares and media shares from your Patriot PS Personal.
PAYware Mobile Android Comparison June 2013 For Internal Use Only.
DIFFERENT WAYS IN WHICH YOU CAN STREAM LOCAL MEDIA FILES TO CHROMECAST You can visit www Google com Chromecast setup to identify different ways in which.
Downloading the App 1 Go to the right store. Access the App Store on iOS devices, the Play Store on Android, and for a.
Technology Requirements for Online Testing Training Module Copyright © 2014 American Institutes for Research. All rights reserved.
Developing for Chromecast Cast Companion Library & Custom Receiver Application.
APP DESIGN AND DEVELOPMENT WITH THE IONIC FRAMEWORK Chuck Leone
SMART TV HELPLINE ROKU ROKU APP IS NOW AVAILABLE FOR WINDOWS 10 IN CANADA AND THE UNITED KINGDOM.
CHROMECAST OR CHROMECAST ULTRA WHICH SHOULD YOU GO FOR? FOR MORE INFORMATION TOLL FREE 1(855)
NOTE: To change the image on this slide, select the picture and delete it. Then click the Pictures icon in the placeholder to insert your own image. Now.
Streaming and Mirroring the content from PC to Google chromecast Setup For More Details Visit Our Website
GST Helpline - A Complete GST App TO RESOLVE GST INDIA QUERIES
FOR TROUBLESHOOTING TIPS, CALL MOZILLA FIREFOX HELPLINE NUMBER | | TOLL FREE USA Firefox Focus- A New Private Browser for Android & iOS.
REDCap Mobile Application
Downloading and Installing
ETS Inside Product Launch
Quick Start for Apple iPhone/Ipad February 2017
Use Google PlayStore and download apps
Network Access on Android
Browsers and Web Platforms
ASA hybrid AGM 11.15am, Wednesday 10 May 2017
APK Downloader
Google Cast for Education
How To Enjoy Different Movies And Shows On Your Hulu Plus App? for more details visit our website
Training Document.
Hulu Channel On Tv Screen with Different Ways. For more details visit
Roku Com Link Call (Toll- Free) Visit Our Website
Setting Up Chatter on Mobile devices
How to use a Smartphone as a Netflix Remote Control For More details Visit
TOLL FREE The Firefox Developer Edition Tech Support Toll Free.
Enjoy Hulu Plus On Vizio TV Smart Tv Help Line Toll Free ( )
Get Best Roku Technical Support Services
Roku.Com/Link Page Comes Out To Be Blank Smart Tv Help Line Toll Free ( )
MIT App Inventor By Hans Yip.
2016 Minnesota Assessment Conference
Officeinstall-setup.com Technical expert studying and writing helpful articles on antivirus and other security products.
Call to Fix HP Printer Installation Error Code 1603
Operation instructions for soundbar WiFi
TRUST KEY (DONGLE / PEN DRIVE)
Download OriginMobile
Always Connected introduces Tigo SMART 3.1 This guide is interactive!
Where does Netflix save downloads on my device? iOS Android PC Mac
Benefits and Wellness – MDLIVE
Managing and Monitoring Screen Time
Learn on the Move with the Moodle Mobile App
How to create an Itunes account to your computer
Unfortunately, Amazon Prime Video is not compatible with Chromecast. However, you can use the casting feature to watch Amazon Prime Video on your TV with.
How to Download And Install McAfee Mobile Security on iOS?
SETUP ALEXA APP Setup Alexa on your favorite device and control your smart device with the help of Alexa.
ConnecTV User Support and Troubleshooting
Presentation transcript:

Google Chromecast

Competition similar products

smartphone as remote control

HDMI - CEC ready device

chromecast already connected to tv message on tv chromecast already connected to tv

https://cast.google.com/chromecast/setup/ Download APP https://cast.google.com/chromecast/setup/

App Launched

Same Chromecast code on TV

and change chromecast’s name Insert Wifi PaSSword and change chromecast’s name

chromecast icon to look for Setup is done chromecast icon to look for

Install ExtenSSion for Google Chrome

select the tab you want to cast in Google Chrome Cast TAB select the tab you want to cast in Google Chrome

Chromecast APP STORE Located at http://www.google.ro/intl/en/chrome/devices/chromecast/apps.html

Android, iOS, website (Google Chrome) 3 TypeS OF CASTING Android, iOS, website (Google Chrome)

Sender apps Android Sender Applications iOS Sender Applications Chrome Sender Applications

Application ID For Android apps: For Chrome apps: For iOS apps: CastMediaControlIntent.DEFAULT_MEDIA_RECEIVER_APPLICATION_ID For Chrome apps: chrome.cast.media.DEFAULT_MEDIA_RECEIVER_APP_ID For iOS apps: kGCKMediaDefaultReceiverApplicationID

Initialization Initialization: <script type="text/javascript" src=“https://www.gstatic.com/cv/js/sender/v1/cast_sender.js"></script> Namespace: chrome.cast.* Initialization: if (!chrome.cast || !chrome.cast.isAvailable) { setTimeout(initializeCastApi, 1000); } initializeCastApi = function() { var sessionRequest = new chrome.cast.SessionRequest(applicationID); var apiConfig = new chrome.cast.ApiConfig(sessionRequest, sessionListener, receiverListener); chrome.cast.initialize(apiConfig, onInitSuccess, onError); };

Launch app chrome.cast.requestSession(onRequestSessionSuccess, onLaunchError); function onRequestSessionSuccess(e) { session = e; }

Device selection function receiverListener(e) { if( e === chrome.cast.ReceiverAvailability.AVAILABLE) { }

Media control var mediaInfo = new chrome.cast.media.MediaInfo(currentMediaURL); var request = new chrome.cast.media.LoadRequest(mediaInfo); session.loadMedia(request, onMediaDiscovered.bind(this, 'loadMedia'), onMediaError); function onMediaDiscovered(how, media) { currentMedia = media; } PLAY/RESUME: currentMedia.play(null, success, error); PAUSE: currentMedia.pause(null, success, error); STOP: currentMedia.stop(null, success, error); SEEK: currentMedia.seek(null, success, error);

Media status function onMediaDiscovered(how, media) { media.addUpdateListener(onMediaStatusUpdate); }

Session management function sessionListener(e) { session = e; if (session.media.length != 0) { onMediaDiscovered('onRequestSessionSuccess', session.media[0]); }

Termination function stopApp() { session.stop(onSuccess, onError); }

on a smartphone screen

Recommended ICONS

Receiver apps Default Media Receiver Styled Media Receiver Custom Receiver

The Chromecast is basically a device that runs a stripped-down version of ChromeOS (some say it’s actually more a stripped-down Android OS) and a Chrome browser.

Hacking Chromecast

Iframe https://ec2.mgateway.com:8080/ewd/chromecastrx/index.html

Thank YOU adrianvmois@gmail.com