Related
I was just wondering if anyone could give everyone(myself included) some tips/pointers/recommendations and maybe your own templates that you've used or would use for these extra Dev options in my picture I've included...If anyone can help with all of the options (Label #1) and/or just the bottom set of options (Label #2) that'd be awesome!! The bottom set(#2) is really making me curious about being able to stream local videos from our PC without any extra help from 3rd party sources/plugins/python-related sources. If you can contribute to this, please feel free! Thanks!
jsdecker10 said:
I was just wondering if anyone could give everyone(myself included) some tips/pointers/recommendations and maybe your own templates that you've used or would use for these extra Dev options in my picture I've included...If anyone can help with all of the options (Label #1) and/or just the bottom set of options (Label #2) that'd be awesome!! The bottom set(#2) is really making me curious about being able to stream local videos from our PC without any extra help from 3rd party sources/plugins/python-related sources. If you can contribute to this, please feel free! Thanks!
Click to expand...
Click to collapse
As for stream local videos, there is already a solution, it been posted before but not explicitly EpicVS used this to make his python script.
For this method you will Only need one additional thing is Mongoose (if you want to stream local files, otherwise you can stream any HTML5 video that is already posted online), you don't need any Python thing.
1)
This is the Backup files/scripts from (googlecast.github.io/cast-chrome/ which is no longer available) http://forum.xda-developers.com/attachment.php?attachmentid=2175295&d=1376004871. Unzip The file to your local drive. I just put it on my desktop
2) WhiteList your Chrome (This step is from Google Them-self)
To permit your Chrome sender application to use the SDK, you must register the application's domain in the Google Cast extension for Chrome.
Be sure you are running Chrome version 28 or later.
If you haven't restarted Chrome in a while you may be running an older version; restarting will update Chrome automatically.
In the Chrome address field, enter chrome://extensions, and check the Developer mode checkbox to enable developer mode.
Install the Chrome extension for Google Cast.
On the Cast extension icon in the browser's upper right corner (next to the address field), right-click and select Options.
The Google Cast extension options page opens in a new tab.
On the blue Cast icon, in the page's upper left corner, click four (4) times.
The Developer Settings appear.
In the Cast SDK additional domains field, enter your application's domain, for example, "www.mydomain.com" and click Add.
Click to expand...
Click to collapse
So the trick is in the SDK additional domains field put: localhost then click add
3) Now go find the folder from step 1. Download this https://code.google.com/p/mongoose/downloads/detail?name=mongoose-3.8.exe and put the mongoose exe in the same folder as step 1
4) Launch Mongoose. (Mongoose will reside in the Taskbar near the clock)
5) Open your chrome browser and type in the address bar localhost:8080. In my case I changed the Mongoose option to port 80. So I only have to type localhost
6) You should be greeted with a webpage now. If you read this post http://forum.xda-developers.com/showthread.php?t=2386604, you should get an idea how this webpage supposed to work.
So the Trick to the original website that Google took down is the Play HTML5 video option. (They took it down so now we have to simulate a webserver to get it back. But there is a benefit NOW. Since you now have an HTML webserver, you can host a local video file.
In my case I move an MP4 movie file or any chromeast compatible video such as MKV into the folder in Step1. And the simple thing to stream that file is in the HTML5 box trick. Now just enter the address "http://yourLocalipAddress:yourmongooseportnumber/yourmoviefile.mkv. So for example mine is http://192.168.1.106/StarTrekSample.mkv since my port is 80, I don't have to put in a port number, it stream great full resolution and everything NO slow down even on a G network
--------------------------------------------------
Optional:
You can convert stuff pretty fast using MkvToMp4_0.223 it is free. (Note: not all MKV or other files required conversion, some MKV sound doesn't work, this program will fix that)
Also I made an improvement to the HTML code that will let you fast forward. In the index.html (you can also rename it anything, I rename my to cast.html so I can view all the file in the HTML folder, including the movie file, so I can just copy the URL and just type in the IP address)
For the fast forward thing:
1) open the index.htm (you can open it just using notepad, nothing fancy)
2) search for <video id="video" src="" autoplay="autoplay"></video>
3) you will see 2 instants of that code, just replace it with: <video id="video" src="" autoplay="autoplay" controls></video>
This will put a control bar underneath the video screen on your computer so you can fast forward (this only work ONCE before you cast it to your TV). You may have to clear the browser cache before this show up
Also sometime the video will not play in the browser windows, but if you cast it to the TV anyway it sometime take up to 30 secs to 45 secs then it will play. This especially true if you stream a video from an online source.
GreenDroidX said:
As for stream local videos, there is already a solution, it been posted before but not explicitly EpicVS used this to make his python script.
For this method you will Only need one additional thing is Mongoose (if you want to stream local files, otherwise you can stream any HTML5 video that is already posted online), you don't need any Python thing.
1)
This is the Backup files/scripts from (googlecast.github.io/cast-chrome/ which is no longer available) http://forum.xda-developers.com/attachment.php?attachmentid=2175295&d=1376004871. Unzip The file to your local drive. I just put it on my desktop
2) WhiteList your Chrome (This step is from Google Them-self)
So the trick is in the SDK additional domains field put: localhost then click add
3) Now go find the folder from step 1. Download this https://code.google.com/p/mongoose/downloads/detail?name=mongoose-3.8.exe and put the mongoose exe in the same folder as step 1
4) Launch Mongoose. (Mongoose will reside in the Taskbar near the clock)
5) Open your chrome browser and type in the address bar localhost:8080. In my case I changed the Mongoose option to port 80. So I only have to type localhost
6) You should be greeted with a webpage now. If you read this post http://forum.xda-developers.com/showthread.php?t=2386604, you should get an idea how this webpage supposed to work.
So the Trick to the original website that Google took down is the Play HTML5 video option. (They took it down so now we have to simulate a webserver to get it back. But there is a benefit NOW. Since you now have an HTML webserver, you can host a local video file.
In my case I move an MP4 movie file or any chromeast compatible video such as MKV into the folder in Step1. And the simple thing to stream that file is in the HTML5 box trick. Now just enter the address "http://yourLocalipAddress:yourmongooseportnumber/yourmoviefile.mkv. So for example mine is http://192.168.1.106/StarTrekSample.mkv since my port is 80, I don't have to put in a port number, it stream great full resolution and everything NO slow down even on a G network
Click to expand...
Click to collapse
Thank you for taking the time to type up all of this valuable info...it works great! Most of my videos are wide screen 720p format. My only gripe so far is that unless I download a video that's in full screen format(not letter-box), it puts it at the top of the screen with a black bar at the bottom of the screen. This can be remedied by just sending a full screen formatted video to the chromecast. It works this way consistent with every single 720p widescreen video I've got. Do you think that if I tried a 1080p video, that it would take up the whole screen? Or at least have the black bar on both the top and bottom of the screen? Just seeing the black bar at the bottom is just quite an annoyance more than anything...I've looked around in my settings on my tv(Sony 51") and can't find anything that'll either make the video take up the entire screen or have the black bars on both the top and bottom of the videos...grrrr
GreenDroidX said:
As for stream local videos, there is already a solution, it been posted before but not explicitly EpicVS used this to make his python script.
For this method you will Only need one additional thing is Mongoose (if you want to stream local files, otherwise you can stream any HTML5 video that is already posted online), you don't need any Python thing.
1)
This is the Backup files/scripts from (googlecast.github.io/cast-chrome/ which is no longer available) http://forum.xda-developers.com/attachment.php?attachmentid=2175295&d=1376004871. Unzip The file to your local drive. I just put it on my desktop
2) WhiteList your Chrome (This step is from Google Them-self)
So the trick is in the SDK additional domains field put: localhost then click add
3) Now go find the folder from step 1. Download this https://code.google.com/p/mongoose/downloads/detail?name=mongoose-3.8.exe and put the mongoose exe in the same folder as step 1
4) Launch Mongoose. (Mongoose will reside in the Taskbar near the clock)
5) Open your chrome browser and type in the address bar localhost:8080. In my case I changed the Mongoose option to port 80. So I only have to type localhost
6) You should be greeted with a webpage now. If you read this post http://forum.xda-developers.com/showthread.php?t=2386604, you should get an idea how this webpage supposed to work.
So the Trick to the original website that Google took down is the Play HTML5 video option. (They took it down so now we have to simulate a webserver to get it back. But there is a benefit NOW. Since you now have an HTML webserver, you can host a local video file.
In my case I move an MP4 movie file or any chromeast compatible video such as MKV into the folder in Step1. And the simple thing to stream that file is in the HTML5 box trick. Now just enter the address "http://yourLocalipAddress:yourmongooseportnumber/yourmoviefile.mkv. So for example mine is http://192.168.1.106/StarTrekSample.mkv since my port is 80, I don't have to put in a port number, it stream great full resolution and everything NO slow down even on a G network
Click to expand...
Click to collapse
Have you tried a divx file just to see what happens? "like a downloaded movie" Not a TV show as they are always encoded in mp4 which is streamable by chrome ext default.
This will stream all video at Native resolution, it will def do 1080p, your network won't have too much problem with it. As for file format this is from Google:
Video codecs: H.264 High Profile Level 4.1, 4.2 and 5, VP8
Audio decoding: HE-AAC, LC-AAC, CELT/OPUS, MP3
Containers: MP4/CENC, WebM, MPEG-DASH, SmoothStreaming
Level 1 DRM support: Widevine, Playready
Click to expand...
Click to collapse
You can convert stuff pretty fast using MkvToMp4_0.223 it is free. (Note: not all MKV or other files required conversion, some MKV sound doesn't work, this program will fix that)
Also I made an improvement to the HTML code that will let you fast forward. In the index.html (you can also rename it anything, I rename my to cast.html so I can view all the file in the HTML folder, including the movie file, so I can just copy the URL and just type in the IP address)
For the fast forward thing:
1) open the index.htm (you can open it just using notepad, nothing fancy)
2) search for <video id="video" src="" autoplay="autoplay"></video>
3) you will see 2 instants of that code, just replace it with: <video id="video" src="" autoplay="autoplay" controls></video>
This will put a control bar underneath the video screen on your computer so you can fast forward (this only work ONCE before you cast it to your TV). You may have to clear the browser cache before this show up
Also sometime the video will not play in the browser windows, but if you cast it to the TV anyway it sometime take up to 30 secs to 45 secs then it will play. This especially true if you stream a video from an online source.
GreenDroidX said:
As for stream local videos, there is already a solution, it been posted before but not explicitly EpicVS used this to make his python script.
For this method you will Only need one additional thing is Mongoose (if you want to stream local files, otherwise you can stream any HTML5 video that is already posted online), you don't need any Python thing.
1)
This is the Backup files/scripts from (googlecast.github.io/cast-chrome/ which is no longer available) http://forum.xda-developers.com/attachment.php?attachmentid=2175295&d=1376004871. Unzip The file to your local drive. I just put it on my desktop
2) WhiteList your Chrome (This step is from Google Them-self)
So the trick is in the SDK additional domains field put: localhost then click add
3) Now go find the folder from step 1. Download this https://code.google.com/p/mongoose/downloads/detail?name=mongoose-3.8.exe and put the mongoose exe in the same folder as step 1
4) Launch Mongoose. (Mongoose will reside in the Taskbar near the clock)
5) Open your chrome browser and type in the address bar localhost:8080. In my case I changed the Mongoose option to port 80. So I only have to type localhost
6) You should be greeted with a webpage now. If you read this post http://forum.xda-developers.com/showthread.php?t=2386604, you should get an idea how this webpage supposed to work.
So the Trick to the original website that Google took down is the Play HTML5 video option. (They took it down so now we have to simulate a webserver to get it back. But there is a benefit NOW. Since you now have an HTML webserver, you can host a local video file.
In my case I move an MP4 movie file or any chromeast compatible video such as MKV into the folder in Step1. And the simple thing to stream that file is in the HTML5 box trick. Now just enter the address "http://yourLocalipAddress:yourmongooseportnumber/yourmoviefile.mkv. So for example mine is http://192.168.1.106/StarTrekSample.mkv since my port is 80, I don't have to put in a port number, it stream great full resolution and everything NO slow down even on a G network
Click to expand...
Click to collapse
I did exactly as described above using winodws 8.The video plays locally , but when click on chromecast it goes to the TV and I get a blank screen. I get the following error while trying to cast the video. Can you please help me resolve this ...Thanks
Error:
{"eventSequenceId":1,"activityId":"9jpopqye07td","state":2,"contentId":"http://localhost/Burfi.mp4","title":"http://localhost/Burfi.mp4","imageUrl":null,"timeProgress":true,"position":5.507666,"duration":0,"volume":0.8,"muted":false,"contentInfo":null,"mediaTracks":[],"error":null,"hasPause":true}
Thanks once again
rajnallan said:
I did exactly as described above using winodws 8.The video plays locally , but when click on chromecast it goes to the TV and I get a blank screen. I get the following error while trying to cast the video. Can you please help me resolve this ...Thanks
Error:
{"eventSequenceId":1,"activityId":"9jpopqye07td","state":2,"contentId":"http://localhost/Burfi.mp4","title":"http://localhost/Burfi.mp4","imageUrl":null,"timeProgress":true,"position":5.507666,"duration":0,"volume":0.8,"muted":false,"contentInfo":null,"mediaTracks":[],"error":null,"hasPause":true}
Thanks once again
Click to expand...
Click to collapse
your thing is the localhost you need to translate that to your local ip address (you can probably find that in the network center of windows 8, I am still refusing to upgrade to windows 8, so I am on win 7) or simply access your router
For example mine local IP address is 192.168.1.153, to get the video to play you need to put this as your url
http://localhost/Burfi.mp4 -> http://192.168.1.153/Burfi.mp4 (so this way when the URL go to chromecast it know what the heck localhost is)
Oh by the way, that msg is always there. It is sort of a debug msg left in by the original coder, I am guessing it was the Google Team that did it.
GreenDroidX said:
your thing is the localhost you need to translate that to your local ip address (you can probably find that in the network center of windows 8, I am still refusing to upgrade to windows 8, so I am on win 7) or simply access your router
For example mine local IP address is 192.168.1.153, to get the video to play you need to put this as your url
http://localhost/Burfi.mp4 -> http://192.168.1.153/Burfi.mp4 (so this way when the URL go to chromecast it know what the heck localhost is)
Oh by the way, that msg is always there. It is sort of a debug msg left in by the original coder, I am guessing it was the Google Team that did it.
Click to expand...
Click to collapse
Thanks for your response. I did try the url as you suggested. But the video plays on the computer. But when I try to cast in to TV I get a blank screen on TV. Waited for more than two minutes. May be somewhere I am doing something wrong.
Just to add when I checked on the chromecast icon in Chrome browser it shows the movie as running on chromecast but nothing on TV.
rajnallan said:
Thanks for your response. I did try the url as you suggested. But the video plays on the computer. But when I try to cast in to TV I get a blank screen on TV. Waited for more than two minutes. May be somewhere I am doing something wrong.
Just to add when I checked on the chromecast icon in Chrome browser it shows the movie as running on chromecast but nothing on TV.
Click to expand...
Click to collapse
Strange, well first use another computer with chrome that is on the same network. Try to enter that url into the browser, if that play then the file could be seen. If not then you have a network problem.
Second try to enter a url of a video that is already online. Like the http://media.w3.org/2010/05/sintel/trailer.mp4 see if that will cast. Just to see if chromecast have a problem
Sent from my Nexus 7 using Tapatalk 4
GreenDroidX said:
Strange, well first use another computer with chrome that is on the same network. Try to enter that url into the browser, if that play then the file could be seen. If not then you have a network problem.
Second try to enter a url of a video that is already online. Like the http://media.w3.org/2010/05/sintel/trailer.mp4 see if that will cast. Just to see if chromecast have a problem
Sent from my Nexus 7 using Tapatalk 4
Click to expand...
Click to collapse
I did try the url of a video http://media.w3.org/2010/05/sintel/trailer.mp4 and it works. Chromecast is definitely OK. I can see the movie with the url like the one specified by you play on the computer but when I cast it I see the message on the chromecast icon on the chrome browser showing the movie is running but the tv which switches to the Chromecast hdmi port shows blank on the TV. May be I will try on my daughter's computer...
rajnallan said:
I did try the url of a video http://media.w3.org/2010/05/sintel/trailer.mp4 and it works. Chromecast is definitely OK. I can see the movie with the url like the one specified by you play on the computer but when I cast it I see the message on the chromecast icon on the chrome browser showing the movie is running but the tv which switches to the Chromecast hdmi port shows blank on the TV. May be I will try on my daughter's computer...
Click to expand...
Click to collapse
Also firewall can be a problem too good luck. Also try different files
rajnallan said:
I did exactly as described above using winodws 8.The video plays locally , but when click on chromecast it goes to the TV and I get a blank screen. I get the following error while trying to cast the video. Can you please help me resolve this ...Thanks
Error:
{"eventSequenceId":1,"activityId":"9jpopqye07td","state":2,"contentId":"http://localhost/Burfi.mp4","title":"http://localhost/Burfi.mp4","imageUrl":null,"timeProgress":true,"position":5.507666,"duration":0,"volume":0.8,"muted":false,"contentInfo":null,"mediaTracks":[],"error":null,"hasPause":true}
Thanks once again
Click to expand...
Click to collapse
I'm not sure if you've figured out your problem yet or not, but just by looking at your post, it looks to me like you have input the wrong "Address" information before the filename. You need to include the port# right after your internal ip address. Such as... http://192.168.1.101:8080/drinkingbuddies.mp4 . You can re-read his instructions below..These are the instructions he outlined above, but I just typed them out in my own words...just don't forget to include the port in the address and you should be good to go!!
1. Rename your video file to something easy like for example... "Chrome.Cast.720p.H.264.2013.WideScreen.Cam.xda-Devs-Rockz.mp4" to something a little easier to remember and easier to type back in such as "chromecast720p.mp4" or simply "cc.mp4" --just for simplicity sake...name it whatever you wanna!
2.. Make sure the .mp4, .mkv, or whatever Chromecast supported video file, has been moved into the same folder/directory as the "mongoose-3.8.exe" , "cast.py" , "angular.min.js" , "index.html" , "demo_app.js" files. I think there's a couple more files in that folder, but you get my drift...
3 Run(double-click) the mongoose-3.8.exe file in that folder. It should start running in the background without any visual GUI popping up in your face. You really don't have to change any settings in mongoose, but if you want to change the port# you can. if you leave all settings the same, I believe the default port# is set to Port# 8080.
4. Locate your INTERNAL IP ADDRESS. This is the IP Address that your router assigns each individual pc/phone/tablet/Chromecast, etc... Mine happens to be 192.168.1.101 . Yours will more than likely be something different than mine, but it will probably be something between the range of: 192.168.1.100 - 192.168.1.149
5. This is assuming you just double-clicked on mongoose-3.8.exe & did't change ANY settings from within the mongoose server... Open up a tab in Chrome and in the address bar you wanna type this exactly, but without the quotes ---> "localhost:8080"
6. That'll open up the simplified Chromecast testing page...at least if you did everything right so far it should open that page... from this page, click that first little drop down box at the top of the page and select the HTML5 option.
7. In the filename input box that pops up below it, you wanna type "http://yourLOCALipaddresshere:8080/videofilename.extension" . Mine for example, happens to be http://192.168.1.101:8080/drinkingbuddies.mp4
8. Assuming you did everything so far exactly as we've told you, your video should start playing in the tab.
9. Right below your video, you want to click and select your chromecast... after choosing your chromecast, the video from within your chrome browser will more than likely either go blank or it will just look like it's paused. Don't worry though. From my understanding, that's totally normal...
10. Ok, cool...now if everything has been done correctly, you should be able to see the movie playing on your TV. This may take up to a minute to show up on your tv in some instances, due to your router, pc,network traffic, etc...
These steps that I outlined are pretty much the same thing as in earlier posts, just put into my own words. It works just fine for me, I'm just still getting the black bar across the bottom of the TV, unless i change the movie to a full-screen movie. Full-screen movies seem to work just fine and of course, they take up the entire screen. I for some reason still can't get ANY widescreen videos to display properly...there's always a black bar at the bottom and NO black bar at the top. It's like they're "Half-ass wide-screen" format. lol
I get the same error message but the video plays fine. I guess he's got a different problem. I noticed that you need to manually stop the current video in the browser window so chromecast goes to "ready to cast" screen before you can start a new video.
When I first got my Chromecast, I was able to play a video (on hulu for example) in fullscreen mode, then alt tab back to Chrome so I could still use my laptop while casting to the TV in full screen.
In the past week, it no longer works. When I alt tab, it automatically goes out of full screen mode. So now I have to have my laptop playing the video in fullscreen if I want to cast it in fullscreen to the TV.
I can't find anything in my searches about this happening to anyone else when I google the problem. Has anyone else run across this issue?
Thanks
swillard said:
When I first got my Chromecast, I was able to play a video (on hulu for example) in fullscreen mode, then alt tab back to Chrome so I could still use my laptop while casting to the TV in full screen.
In the past week, it no longer works. When I alt tab, it automatically goes out of full screen mode. So now I have to have my laptop playing the video in fullscreen if I want to cast it in fullscreen to the TV.
I can't find anything in my searches about this happening to anyone else when I google the problem. Has anyone else run across this issue?
Thanks
Click to expand...
Click to collapse
Sorry, it works fine for me, and I have the latest update. Maybe reinstall?
aiiee said:
Sorry, it works fine for me, and I have the latest update. Maybe reinstall?
Click to expand...
Click to collapse
What do I reinstall? I've reinstalled the cast extension and that didn't fix it. I have the most current version of Chrome. I can only thing to uninstall and reinstall Chrome to see if that fixes the problem.
swillard said:
What do I reinstall? I've reinstalled the cast extension and that didn't fix it. I have the most current version of Chrome. I can only thing to uninstall and reinstall Chrome to see if that fixes the problem.
Click to expand...
Click to collapse
I don't know, I don't have the problem.
What about Flash?
swillard said:
When I first got my Chromecast, I was able to play a video (on hulu for example) in fullscreen mode, then alt tab back to Chrome so I could still use my laptop while casting to the TV in full screen.
In the past week, it no longer works. When I alt tab, it automatically goes out of full screen mode. So now I have to have my laptop playing the video in fullscreen if I want to cast it in fullscreen to the TV.
I can't find anything in my searches about this happening to anyone else when I google the problem. Has anyone else run across this issue?
Thanks
Click to expand...
Click to collapse
My guess is this is related to the Flash Player or the player on the site that you are using. I have seen this happen on my two monitor setup where when I go to the second screen it breaks out of full screen mode on the first monitor. I'm pretty sure all i had to do was restart my machine. But I would try reinstalling Flash, clearing cache, cookies, etc.
Do you see the same behavior when you are not using Chromecast?
Good luck.
srgibbs99 said:
My guess is this is related to the Flash Player or the player on the site that you are using. I have seen this happen on my two monitor setup where when I go to the second screen it breaks out of full screen mode on the first monitor. I'm pretty sure all i had to do was restart my machine. But I would try reinstalling Flash, clearing cache, cookies, etc.
Do you see the same behavior when you are not using Chromecast?
Good luck.
Click to expand...
Click to collapse
It happens with any video, whether casting or not. I used to be able to watch Hulu.com in fullscreen and cast it to the tv, then I could alt tab to another tab to check FB or something. Now it doesn't work. I've tried hulu, youtube, and some other video sites and they all the the same thing. When you hit Alt they immediately go back to the small screen page. I've rebooted my computer and reinstalled the Cast extension. Wondering if I need to reinstall Chrome. It did crash one me a few times this weekend, though not in the past couple of days.
swillard said:
It happens with any video, whether casting or not. I used to be able to watch Hulu.com in fullscreen and cast it to the tv, then I could alt tab to another tab to check FB or something. Now it doesn't work. I've tried hulu, youtube, and some other video sites and they all the the same thing. When you hit Alt they immediately go back to the small screen page. I've rebooted my computer and reinstalled the Cast extension. Wondering if I need to reinstall Chrome. It did crash one me a few times this weekend, though not in the past couple of days.
Click to expand...
Click to collapse
I have had a similar issue. I received mine on Tuesday and the first day full screen worked for espn and I was able to Alt+Tab to continue browsing. Last night, I tried to do the same thing but It would only display a picture of the tab with the embedded video (when I would go to full screen, the embedded video was black with the tab content around it. when I would exit full screen the embedded video began playing again.) Essentially, I can no longer go into full screen mode for any flash based video (tried with NFL network too). Mine did an update first thing when I turned it on yesterday. I didn't write down the original version I had nor what it updated to. My flash player also updated recently but I think that was before I tried it for the first time. I did not try to reboot my machine or reinstall flash / chrome but I did attempt to do it from 2 different computers on my network and both suffered from the same issue.
m2cool2go said:
I have had a similar issue. I received mine on Tuesday and the first day full screen worked for espn and I was able to Alt+Tab to continue browsing. Last night, I tried to do the same thing but It would only display a picture of the tab with the embedded video (when I would go to full screen, the embedded video was black with the tab content around it. when I would exit full screen the embedded video began playing again.) Essentially, I can no longer go into full screen mode for any flash based video (tried with NFL network too). Mine did an update first thing when I turned it on yesterday. I didn't write down the original version I had nor what it updated to. My flash player also updated recently but I think that was before I tried it for the first time. I did not try to reboot my machine or reinstall flash / chrome but I did attempt to do it from 2 different computers on my network and both suffered from the same issue.
Click to expand...
Click to collapse
I found a post on another forum that helped me resolve the issue. In your google chrome browser (assuming that's what you are using), type in about://plugins. Click on the Details icon (+) on the far right of the Plugins title bar. Look for Adobe flash and you probably have 2 plugins listed. Look for pepflashplayer.dll . It should be listed in the location section. Click on disable. You may need to restart the browser. Try your fullscreen again.
That fixed it for me, so I hope it fixes it for you.
I just found a pretty neat trick to do fullscreen.
Install the "Chrome Toolbox" which allows you to open flash videos by themselves, separate from anything else on that webpage.
Go to the page with the flash video you are playing. Cast that tab. Hover over the video and an icon will appear to allow you to put it on its own window. Chromecast will now only show the video, same as if you went fullscreen. Video quality seems better when the window is not minimized.
hpcolombia said:
I just found a pretty neat trick to do fullscreen.
Install the "Chrome Toolbox" which allows you to open flash videos by themselves, separate from anything else on that webpage.
Go to the page with the flash video you are playing. Cast that tab. Hover over the video and an icon will appear to allow you to put it on its own window. Chromecast will now only show the video, same as if you went fullscreen. Video quality seems better when the window is not minimized.
Click to expand...
Click to collapse
Thanks for the tip but I can't get it to work. I have Chrome Toolbox installed, went to Hulu and cast that tab and not getting anything when I hover over the view to pop it out as a separate window.
swillard said:
Thanks for the tip but I can't get it to work. I have Chrome Toolbox installed, went to Hulu and cast that tab and not getting anything when I hover over the view to pop it out as a separate window.
Click to expand...
Click to collapse
i have the same problem. Cant switch tab by using alt+tab
Does anyone has another solution?
ps: i am using mac
swillard said:
Thanks for the tip but I can't get it to work. I have Chrome Toolbox installed, went to Hulu and cast that tab and not getting anything when I hover over the view to pop it out as a separate window.
Click to expand...
Click to collapse
It's working now. Thanks for the tip. I can use this trick to cast to the TV and still use my laptop for other stuff.
Toolbox Pop-out link??
Hi guys!
Any chance of a link to the Chrome Toolbox in the app store? The one I'm looking at is probably not the one I'm looking for.
BTW, Alt-Tab is working for me, but the full-screen video is playing in the background so I can see it in place of the Windows taskbar. I can move about the desktop though
hpcolombia said:
I just found a pretty neat trick to do fullscreen.
Install the "Chrome Toolbox" which allows you to open flash videos by themselves, separate from anything else on that webpage.
Go to the page with the flash video you are playing. Cast that tab. Hover over the video and an icon will appear to allow you to put it on its own window. Chromecast will now only show the video, same as if you went fullscreen. Video quality seems better when the window is not minimized.
Click to expand...
Click to collapse
Unfortunately Chrome Toolbox doesn't work on Windows 8? And isn't available anymore anyway?
This is really annoying. Just got Chromecast.
But when casting a tab of full screen video on certain websites and I move from the tab it reverts to its original frame.
Basically I just want to be able to play full screen content from sites like BBC's iPlayer while doing other things on the computer.
Fiddling with flash plugins doesn't seem to change it. I looked for other possibly relevant extensions in the web store but none really worked.
This seems to me a fundamental but should be pretty simple problem for Google to fix.
Any other ideas now?
Thanks, Tom
tomwood said:
Unfortunately Chrome Toolbox doesn't work on Windows 8? And isn't available anymore anyway?
This is really annoying. Just got Chromecast.
But when casting a tab of full screen video on certain websites and I move from the tab it reverts to its original frame.
Basically I just want to be able to play full screen content from sites like BBC's iPlayer while doing other things on the computer.
Fiddling with flash plugins doesn't seem to change it. I looked for other possibly relevant extensions in the web store but none really worked.
This seems to me a fundamental but should be pretty simple problem for Google to fix.
Any other ideas now?
Thanks, Tom
Click to expand...
Click to collapse
Not sure about Windows 8, but in 7 I am pretty sure I can hit the Windows key + D which will minimize the browser and allow me to continue what I am doing.
Obskure said:
BTW, Alt-Tab is working for me, but the full-screen video is playing in the background so I can see it in place of the Windows taskbar. I can move about the desktop though
Click to expand...
Click to collapse
I like that "feature" - my old ATI TV tuner card used to have that.
tomwood said:
But when casting a tab of full screen video on certain websites and I move from the tab it reverts to its original frame.
Basically I just want to be able to play full screen content from sites like BBC's iPlayer while doing other things on the computer.
Click to expand...
Click to collapse
It seems to depend on how the player achieves full-screen. Some sites have a full-screen option from the browser level, and that seems to behave differently (also sometimes different resolution) than using the full-screen/zoom option in the player.
Good example is www.BabyFirstTV.com
The blue-background full-screen button just full-screens the video in the tab and shows the Exit Fullscreen button when casted.
The full-screen button in the player window (bottom right corner) make the video full-desktop size (and replaces my desktop background), and doesn't show the (annoying) Exit Fullscreen button. The bottom does get cut off, likely because my desktop is 1920x1200 so I'm losing the bottom 180 pixels.
For me at least, either method allows me to Alt-Tab to another application without messing up the Chromecast playback though.
bhiga said:
It seems to depend on how the player achieves full-screen. Some sites have a full-screen option from the browser level, and that seems to behave differently (also sometimes different resolution) than using the full-screen/zoom option in the player.
Click to expand...
Click to collapse
Thanks, unfortunately though for me when using that browser-level full screen video, and I move from the tab, it reverts to its original frame.
I'm using Windows 8 x64 with Chrome Beta 32.
Obskure said:
Hi guys!
Any chance of a link to the Chrome Toolbox in the app store?
Click to expand...
Click to collapse
https://chrome.google.com/webstore/detail/google-cast/boadgeojelhgndaghljhdicfkmllpafd
Also found another interesting Chrome App....
Turns your Browser into a Chromecast Target that you can stream to!
https://chrome.google.com/webstore/detail/cr-cast/acmfmindblghbicdipoakcolegkcddbk
tomwood said:
Thanks, unfortunately though for me when using that browser-level full screen video, and I move from the tab, it reverts to its original frame.
Click to expand...
Click to collapse
Can you try it on www.babyfirsttv.com ? I'm guessing any browser/tab-level zoom will depend on how the site is coded.
bhiga said:
Can you try it on babyfirsttv? I'm guessing any browser/tab-level zoom will depend on how the site is coded.
Click to expand...
Click to collapse
Yeah, if it takes up just the tab it's ok, but when going completely full screen it doesn't stay like that if I move... And unfortunately many sites with video, like the ones I want to use, only have that option.
Hello,
I hab get my chromecast. But i cannot mirror my screen.
I have a LG G2 and a Note 10.1 2014.
Miracast (LG) cannot find the chromecast.
Screen mirroring (Samsung) cannot find the chromecast.
On YouTube i Haß no problem. Everthing okay.
But screen mirroring doesnot work.
Can anyone help me?
Chromecast does not support miracast.
Sent from my SAMSUNG-SGH-I747 using Tapatalk
Nor AllShare Cast.
Answered your first post.
brunok21 said:
Hello,
I hab get my chromecast. But i cannot mirror my screen.
I have a LG G2 and a Note 10.1 2014.
Miracast (LG) cannot find the chromecast.
Screen mirroring (Samsung) cannot find the chromecast.
On YouTube i Haß no problem. Everthing okay.
But screen mirroring doesnot work.
Can anyone help me?
Click to expand...
Click to collapse
CCast is capable of mirroring but it does not use Miracast to do so and currently Google has not supported the feature yet.
We KNOW it is capable of doing it as it does it on the PC side in the Googlecast Ext for chrome.
I do expect they will support it in the future and if not them then some 3rd Party Dev will make it and Google will hopefully white list it.
Mirroring has some concerns over Privacy and I'm sure Google doesn't want to allow an unsecure implementation that could get the bad rep of being a privacy problem and send the concept into the scrap heap.
Asphyx said:
CCast is capable of mirroring but it does not use Miracast to do so and currently Google has not supported the feature yet.
We KNOW it is capable of doing it as it does it on the PC side in the Googlecast Ext for chrome.
I do expect they will support it in the future and if not them then some 3rd Party Dev will make it and Google will hopefully white list it.
Mirroring has some concerns over Privacy and I'm sure Google doesn't want to allow an unsecure implementation that could get the bad rep of being a privacy problem and send the concept into the scrap heap.
Click to expand...
Click to collapse
If anybody would use this thing called google search you would see that Google is working on enabling it for android
Sent from my iPad using Tapatalk
cannondaleV2000 said:
If anybody would use this thing called google search you would see that Google is working on enabling it for android
Click to expand...
Click to collapse
LOL it's hard enough to get people to read and search for previous posts that have solved their problem here... you expect them to start using Google too?
Just FYI to everyone....we KNOW the CCast can do Mirroring as the GoogleCast Ext for chrome does this already on the PC. Unfortunately the holdup on seeing this on the Android side is not the Chromecast but Chrome itself!
The Mobile versions of Chrome do not at this point support Chrome Extensions which means you can't run the Googlecast extension at this time.
If you have a PC click on the Googlecast icon, Look in the upper right hand corner of the menu it presents click on the little down arrow, and see that you can Cast an Entire Screen (noted as Experimental).
So the CCast has this capability!
Just a matter of creating an App for Android and iOS that does this, Making it secure for Privacy concerns, and Whitelisting it.
The fact they are experimenting with it on a PC tells you everything you need to know about Google's Intentions regarding Mirroring.
It's coming the only thing we don't know is when!
Asphyx said:
LOL it's hard enough to get people to read and search for previous posts that have solved their problem here... you expect them to start using Google too?
Just FYI to everyone....we KNOW the CCast can do Mirroring as the GoogleCast Ext for chrome does this already on the PC. Unfortunately the holdup on seeing this on the Android side is not the Chromecast but Chrome itself!
The Mobile versions of Chrome do not at this point support Chrome Extensions which means you can't run the Googlecast extension at this time.
If you have a PC click on the Googlecast icon, Look in the upper right hand corner of the menu it presents click on the little down arrow, and see that you can Cast an Entire Screen (noted as Experimental).
So the CCast has this capability!
Just a matter of creating an App for Android and iOS that does this, Making it secure for Privacy concerns, and Whitelisting it.
The fact they are experimenting with it on a PC tells you everything you need to know about Google's Intentions regarding Mirroring.
It's coming the only thing we don't know is when!
Click to expand...
Click to collapse
Google is working on enabling android screen mirroring like the Apple TV and an ipad can do butu know for androidones
Sent from my iPad using Tapatalk
phone to pc then pc to tv mirror threesome
sooo. while we (im)patiently wait for googhell to implement mirroring for android, i just mirror to pc and then mirror pc to chromecast.. but its laggy because of the 3 device wifi bridge.. hope this helps
Get it whilst its hot.
Stream all those mp4 clips of 'nature' and documentaries with ease.. Definitely not porn. No.
Good stuff. :good:
Bonus! sky sports web videos now playback in non flash mode.. If u wait a second the vget icon appears top left of video.. Pleased
Sent from my Nexus 7
This is so full of win it's not even funny.
Works great.
Tried and works great. Streams seem to be more stable than with both Avia or BubbleUPnP for some reason.
So, on which sites would this be useful? I tried it on amazon prime, it didn't work. I wanted to see if it would work on byutv.org, it didn't work. Any suggestions on where I might use this?
primetime34 said:
So, on which sites would this be useful? I tried it on amazon prime, it didn't work. I wanted to see if it would work on byutv.org, it didn't work. Any suggestions on where I might use this?
Click to expand...
Click to collapse
You can use it to watch clips on hulu.com (not plus) and if you like searching archives (I do, it's an acquired taste) there's a ton of stuff on the Internet Archive.
https://archive.org/details/dick_tracy_detctive (be sure to use the mp4 link in the table)
It's jumpy, it's cheesy but it's the original **** Tracy.
Some good and all but lost stuff in there.
https://archive.org/details/EyesInTheNight720p1942
I'm sure you'll run across things for your tastes at other sites if you're not interested in that sort of thing. There's a lot of gems squirreled away on the net.
I'm just not getting how to use VGet with Chrome to cast an internet stream. Can someone explain it to me?
I have the VGet downloader extension and the VGet casting extension installed in Chrome on my PC.
I see a VGet icon on my toolbar.
If I start an internet video stream (like the **** Tracy example), I can can click on the VGet icon and it gives me the options to download or cast to Chromecast.
I click on Chromecast, and says it's searching for a DLNA renderer on my network (why does it need one?).
I have to turn on an Android based DLNA client like BubbleUpNP on my Android table, or it won't find anything and it won't proceed. My TV DLNA clients on Samsung or Roku aren't detected.
If I select my Android tablet as the DLNA renderer, I get a small VGet play window that looks like its trying to play something, but nothing happens. It never asks me anything about which Chromecast to use, and my Chromecast shows nothing. The BubbleUpNP client on the Android tablet shows a blank screen.
What's supposed to happen? I don't quite understand the relationship between VGet and the DLNA renderer and the Chromecast.
I'm using the vGet app for Android. On that, if you turn off desktop/Flash mode and turn on Chromecast, select an mp4, it'll cast. With desktop/Flash mode on, you get to choose - Stream (to your selected Android media player, MoboPlayer is good here), Download, or DLNA.
I didn't know that they made a desktop Chrome extension.
PS - when I said it works great - I'm using it with low quality videos that don't look worse via vGet/casting vs. any other methods I use to watch those, but it's very convenient so that's great for me.
VGet appears to work for the Webisodes Network website which is nice.
Would be even nicer if vGet had a functional back button in their internal browser. If I navigate into a site and then press the Android back button, it just bumps me out of the app.
Sent from my Nexus 5 using Tapatalk
cmstlist said:
VGet appears to work for the Webisodes Network website which is nice.
Would be even nicer if vGet had a functional back button in their internal browser. If I navigate into a site and then press the Android back button, it just bumps me out of the app.
Click to expand...
Click to collapse
Odd. Must be device or Android version dependent. I get the previous page.
The problem with the app that I noticed last night is that once my phone has gone to sleep, it sometimes forgets that it's casting and remote control is lost.
Are you seeing any of that?
PS - thanks for the tip on Webisodes.
Could be version dependent. This is a Nexus 7 2012 running 4.4. The bad back button may be a quirk of the new Chromium Web view.
Sent from my Nexus 5 using Tapatalk
Eyeonanime.com tried, tested, and verified to work.
Tried a few more experiments with the PC Chrome extension and with the Android app to answer my own questions about vGet since nobody else seems to have the answers.
As far as I can tell, the vGet extension for PC Chrome does not currently support the Chromecast, although it uses the Chromecast icon. When I click the cast icon and it prompts for a "DLNA renderer", it's looking for a playback client. But it doesn't detect the Chromecast as a valid client, nor does it detect my Roku (even if it's running the DLNA client), nor my Samsung Blu-Ray player (even if it's running the DLNA client). The only thing it detects is Android-based DLNA clients on the network, like BubbleUPnP on my tablet - and it can't cast successfully to that client either, although it tries.
I can get the Android vGet app to work and cast a stream like the **** Tracy video to the Chromecast, but it's really flaky. Most of the time I just get the cast icon in the middle of the screen on the Chromecast when vGet connects, and no stream starts. A few times I got sound but no video. It takes a couple of tries to get a proper video stream to start, and as soon as it does, vGet crashes Android immediately, causing a reboot - but the stream keeps playing on the Chromecast, so it's obviously receiving it directly. If I attempt to restart vGet after Android reboots, it just crashes and reboots Android again immediately as long as the Chromecast continues to play. Only after I turn off the Chromecast will vGet start again without crashing the Android tablet.
Too bad vGet on Android isn't more robust. I'd guess it cares about the version or something. I've used it quite a bit already without those issues. Hopefully they'll fix it.
Vget forma Android is great. But only with DLNA devices.
giuliastro said:
Vget forma Android is great. But only with DLNA devices.
Click to expand...
Click to collapse
My mileage is the exact opposite.
On vGet Android, I uncheck desktop/Flash, select Cast, then tap the desired mp4 link and I'm in business.
My TV tends to suck at dealing with DLNA video.
On my TV, I'm stuck with this -
Compatible files: DLNA-supported file types and extensions are listed below.
Music – MP3 (.mp3)
Photos – JPEG (.jpg, .jpeg)
Video – MPEG1 (.mpg, .mpeg) MPEG2 (.mpg, .mpeg, .trp, .ts, .tp) DIVX (.mpg, .mpeg, .avi)
MPEG4 AVC (.mpg, .mpeg)
Click to expand...
Click to collapse
Between vGet, LocalCast, and RealPlayer Cloud, I'm pretty much done with DLNA.
It's fabulous when it works though, I agree.
And now it's US$5 for vGet.
EarlyMon said:
And now it's US$5 for vGet.
Click to expand...
Click to collapse
Since when? I have it for free, so if you got it free you dont have to buy a premium version or anything?
Sent from my Nexus 10 using Tapatalk
impulse101 said:
Since when? I have it for free, so if you got it free you dont have to buy a premium version or anything?
Click to expand...
Click to collapse
Since now.
If you update to 0.4.3 or newly install it, you get two weeks free, after that it's $5. I understand that one can earn more free time through a new referral plan.
0.4.2 was the last free version.
People responded with unhappiness in the Play Store comments, the dev replied -
schibum February 27 said:
We are truly sorry for those that cannot afford to spend a few bucks and have no Facebook or real live friends to refer. But basically it's simple: Developing and maintaining an App costs money. This money has to come from somewhere. For some very popular Apps, Ads may be able to pay it for you . They cannot for vGet - we tried that initially.
Click to expand...
Click to collapse
I got the price by asking in another thread.
It's not listed in the Play Store - it simply says that an in-app purchase is added.
The thread title is exactly what I want to know...is there some way to get byutv.org content streamed to my chromecast without having to do tab casting?
Whether I figure out a way to cast from my computer with a chrome add-on, or from the android app, I'd love to know how. Thanks!
Look of couple of threads down the forum to http://forum.xda-developers.com/showthread.php?t=2672797 (WebCast extension for Chrome). It works with BYUTV.org.
DJames1 said:
Look of couple of threads down the forum to http://forum.xda-developers.com/showthread.php?t=2672797 (WebCast extension for Chrome). It works with BYUTV.org.
Click to expand...
Click to collapse
I tried that extension but the icon never appears for me to be able to use it. It works on other sites, but I can't get it to work on BYUTV.org. Any specific video you used it on that actually worked for you?
Writing to you on a tablet, I mention this as I tried last night but I guess it timed out and it never posted. It was way to lengthy to try again...but I've had some sleep and will copy before posting incase it happens again.
There is a way, but at best it is convoluted and very tech heavy. Honestly, you might be better off waiting to see of byutv starts to support Chromecast... I've seen many forums requesting that from them so it might be better to wait and see...but if you absolutely MUST have it..there's only one way I've been able to divine.
You'll need serviio and aVia. Serviio is a free - with option to pay for - dlna server. Everyone should know what aVia is by now. I can not say with 100% certainty, but I'd hazard a guess the video is rtmp which is why vGet doesn't recognize it.. if I'm right you'll need to install a rtmp sniffer..there's about a billion of them, most free, others not. If it's not rtmp then I can't figure why vGet doesn't see it...but you could use something like getflv or something more free...the whole purpose is to get the url the video is pulling from. Armed with that you can head over to serviio and add it to the online media tab.
Confused? Good, cause it gets worse. Chances are this video may not be compatible with Chromecast and if that's the case, you're going to need to get serviio to encode it on the fly...which is simple, however, serviio does not a profile built in for Chromecast. Do a Google search for Serviio Chromecast Profile AllCast, that will get you to the profile you'll need to add. With the profile, you're now going to need to get serviio to "see" the Chromecast. It doesn't do this by default as Chromecast it's not a dlna device. Instead, you'll need to assign a static ip address to something..say your computer. Let serviio cache that ip (it'll stay cached until you remove or upgrade serviio), then manually assign that ip address to your Chromecast. Once done, in the profiles page you need to change the profile of both your android device running aVia and the Chromecast to the AllCast profile I mentioned earlier.
It will work this way, android with tell serviio, via aVia, to play the online media. Serviio with download and encode the media so that's it's compatible with Chromecast, and then serviio with send the media to Chromecast which will then display it.
In this manner ANY online media is technically playable through Chromecast but...the set up and execution takes a flare of mad cap genius and elbow grease.
Not claiming that there might not be an easier way..God knows maybe bubble, playon, plex, etc might be able to do it in a simple straight forward manner.. just saying that this one will work....and not just for byutv, but for anything. Good luck! Personally, . I'd wait hahaha (edited to mention that it did happen)
primetime34 said:
I tried that extension but the icon never appears for me to be able to use it. It works on other sites, but I can't get it to work on BYUTV.org. Any specific video you used it on that actually worked for you?
Click to expand...
Click to collapse
I just clicked on a couple at random (not being a regular user of that site), and the WebCast icon appeared for me.
DJames1 said:
I just clicked on a couple at random (not being a regular user of that site), and the WebCast icon appeared for me.
Click to expand...
Click to collapse
I think the issue is that there is a commercial before the show. Would you mind clicking on the webcast icon and see if a full episode plays, or just a 30 second ad only? Thanks.
primetime34 said:
I think the issue is that there is a commercial before the show. Would you mind clicking on the webcast icon and see if a full episode plays, or just a 30 second ad only? Thanks.
Click to expand...
Click to collapse
Yes, I think you're right - it plays the ad and then quits when it gets to the start of the show.