I heard that Netflix is trying to transition to using HTML5 to play videos. There's also some plugin allow this on Chromebooks.Google's Chromebook FAQ page says Java won't be supported, which ties into what it says about client software.
It also says that Silverlight won't be supported, even though Chromebooks are said to be Netflix-ready.
That was my first thought when I heard Chromebooks are going to be Netflix-ready. HTML5 is some pretty awesome stuff...I heard that Netflix is trying to transition to using HTML5 to play videos.
Yes but HTML5 doesn't have support for DRM which means you could right click save as...and download the movie...if that happens Studio's kill Watch Now.Html5 uses JavaScript! It is the Ogg file, that works in Firefox, Opera and Chrome and not the MPEG4 and WebM. Netflix needs to write there code like this.
<video width="320" height="240" controls="controls">
<source src="movie.ogg" type="video/ogg" />
<source src="movie.mp4" type="video/mp4" />
<source src="movie.webm" type="video/webm" />
Your browser does not support the video tag.
</video>
Simple fix! Not Chromebook problem. Microsoft just thinks they can bully everyone has to do everything there way
al
Authentication is not the same thing as encryption.<!DOCTYPE html>
<html>
<head>
<title>Netflix Chrome Book Log-in</title>
</head>
<section>
<embed src="https://signup.netflix.com/Login?country=1&rdirfdc=true" width="900" height="780" />
</section>
</html>
Netflix puts a link in there log-in page to this Page above "Netflix Chrome Book Log-in". The whole netflix site becomes embedded in the above html5 page. I imagine background API that that streams to IOS and Android would now streams to Chrome Book. Silverlight sucks. Your logic alludes me, if the Netflix site is running on HTML5 how would encrypted DRM work?
My point is if your put this above page on your own domain you could login in to netflix and watch movies on your Chrome Book too. This is the power of the embed tag in html5.
In Chrome Book the movie runs in Ram and gets nowhere near the hard drive. The hard drive is only 16GB and a movie would fill like a ¼ of it. The movie only running in Ram is the beauty of Chrome Book making it a nature media for Netflix.
That may be true, but if Netflix can't be sure you're running a chromebook and not a desktop pc with an enormous disk, torrent server and chrome browser.
I'm sure it is possible, and I'm sure netflix and others are working on it, but it is not as simple as using the <video> tag. Correct me if I'm wrong here, but that <embed> tag in your earlier example is a reference to a JAVA object, no? JAVA doesn't work on Chromeos.“The encryption for movie playback, together with advanced stuff like automatically switching the stream quality based on your connection speed is hard and not in the HTML5 standard.”
If I can embed a PhP site running a server side SQL data base into a virtual seamless window running with HTML5; I most certainly can embed ““The encryption for movie playback, together with advanced stuff like automatically switching the stream quality based on your connection speed in to the HTML5”.
Ha ha - that's not Netflix's problem. It's yours. They have no way of telling how much your connection is costing, and no interest in finding out. The only thing they can detect is the connection speed, and adjust the quality of your stream to suit. Managing your internet billing is your problem. Managing your child's internet billing is your problem too.The only downside to all this is: the going rate of wireless cellular data is about 10 dollars a gigabyte up to 5 gigabytes after which thing start getting expensive. Thus Netflix may block movies to be run on wireless cellular connection, but allow them on a unlimited WiFi connection.
Not to long ago some Kid racked up a 20,000 dollar bill in one month, on his cellular account, watching movies.
JavaScript is code - Java is client software. They're not the same thing entirely.Html5 uses JavaScript! It is the Ogg file, that works in Firefox, Opera and Chrome and not the MPEG4 and WebM. Netflix needs to write there code like this.
<video width="320" height="240" controls="controls">
<source src="movie.ogg" type="video/ogg" />
<source src="movie.mp4" type="video/mp4" />
<source src="movie.webm" type="video/webm" />
Your browser does not support the video tag.
</video>
Simple fix! Not Chromebook problem. Microsoft just thinks they can bully everyone has to do everything there way
al