Is anyone of you getting Netflix in HD in your tab s2? I installed the app and realised it only supports 480p streaming which is really poor on this screen... I know it has something to do with widevine drm certification, but I don't see why the tab s2 shouldn't when the note 4 with the exynos 5433 gets hd Netflix... The tab s definitely supports it, do you know if this will be upgraded later? Kind of a deal breaker for me because 480p videos are awful on 10 inch tablets .
Chenxiaolong has found a solution to it posting his instructions here http://forum.xda-developers.com/showpost.php?p=65001865&postcount=12 feel free to hit the thanks button for letting us all know.
Gesendet von meinem SM-T810 mit Tapatalk
I also have Netflix on my S2 and it streams and shows beautifully in HD. Do you have HD enabled in your subscription? The standard subscription (in Germany) is not HD as far as I know. I have HD enabled with 2 simultaneous devices and it works beautifully.
Sent from my SM-T810 using Tapatalk
Thanks for your reply! Yeah we even have the 4 devices plan because my while family uses Netflix. Are you on 5.0.2 or on 5.1.1? Did you confirm that it was really HD? You can See it by watching this Video: Check out "Example Short 23.976" on Netflix
www.netflix.com/title/70136810?source=android
Which bitrate and Resolution do you get?
USA, my plan is 2 screens + HD.
SM-T810 with 5.1.1
Bitrate: 1750 kbps
Resolution: 720 x 480
Sent from my SM-T810 using Tapatalk
Yeah that's what I thought. That's the standard resolution Netflix supports on every android device, while 1080p and 720p are the actual hd resolutions. I know it has something to do with Drm certification, which could be just a ROM thing or it could actually be something hardware specific.
The content providers which give Netflix the rights to stream their series want certain Drm technology like widevine, hdcp etc. to protect their content from piracy, which depends on the hardware to support decoding and encoding the content viewed but also on the libraries as I understand which are implemented in the ROM. So I thought ok, this is a new flagship tablet looking to contend with the ipad air 2, it should support HD streaming, but since I don't know much about the exynos 5433 and whether it is a ROM or software issue, I thought maybe they added support in 5.1.1, which doesn't seem to be the case
Gesendet von meinem SM-T810 mit Tapatalk
Agree with you 100%
Sent from my SM-T810 using Tapatalk
So after researching a little more, I realized even Google play movies doesn't show hd, although the drm info app shows the tab s2 supports widevine L1. It has to be the unlocked bootloader that keeps Netflix from certifying. Is there a way to make it seem like the bootloader is locked, or is it even possible to lock the bootloader on the tab s2?
HD works fine here. Watch loads of Netflix and Amazon prime. Both show in HD.
Sent from my SM-T810 using Tapatalk
Fritzy62 said:
HD works fine here. Watch loads of Netflix and Amazon prime. Both show in HD.
Sent from my SM-T810 using Tapatalk
Click to expand...
Click to collapse
Did you check with the Video link above? What resolutions do you get? Is your tab S2 locked through a carrier?
searched a little on the internet and found this: http://mbox.co.za/forum/viewtopic.php?f=51&t=403
someone with his rooted tab s2 mind adding this property to his build.prop, rebooting and checking if GPlay Movies or Netflix then goes HD?
This device is more than able to run HD video on netflix and hulu. However I ran across an issue where I had to delete the following file for hulu to work at all. Worth a try for those of you who are rooted. Just make a backup first.
I deleted this file and hulu works.
/system/lib/liboemcrypt.so
Got HD Netflix working on my Tab S2! Proof first, explanation second:
From what I can tell, this tablet completely supports Widevine L1 (w/hardware backed DRM). However, the Netflix servers are sending a device configuration file that blocks Widevine L1 (and thus HD) when requested from the Tab S2. In particular, when the Tab S2 (SM-T810) requests the device configuration, the HTTP response contains:
Code:
"enableWidevineL1": false,
"disable_widevine": true,
"enableWidevineL3": false,
When my Galaxy S6 Edge+ (SM-G928T), which natively supports Netflix HD, requests the device configuration, the HTTP response contains:
Code:
"enableWidevineL1": true,
"disable_widevine": false,
"enableWidevineL3": false,
The differences between the complete requests and responses can be found here: https://www.diffchecker.com/w3etqdvq
So what can be done about that? Well, the app can be modified to report the device model as one of the officially supported HD devices, but it is far easier to simply ignore "enableWidevineL1" from the JSON response and always set it to true. Note that this does NOT disable DRM nor does it let you view HD content without an HD subscription. In fact, it enables the strongest Widevine DRM method.
I will not be providing a patched apk for various reasons (country I live in, employment, etc.), but it's an easy one-liner change for those who are familiar with editing smali. Just make the method return true instead of querying the deserialized JSON data.
-----
EDIT: Here are instructions for patching the apk. Note that this whole procedure must be done for each Netflix app update and the app will no longer automatically update from the Play Store. This same trick can also be done with Xposed, but my device isn't rooted, so I won't be writing a module to do that.
Again, I want to stress that:
This does not bypass DRM. This simply tells Netflix to use Widevine L1 DRM on devices where they didn't officially enable its usage. Videos are still fully encrypted and protected.
This does not let you watch HD content if you didn't pay for an HD subscription.
These instructions are for Linux, but it should be similar for other OS's.
Install adb and apktool on your computer
Install Netflix from Google Play and copy the apk to your computer
Code:
adb pull /data/app/com.netflix.mediaclient-1/base.apk
# ^ Might be "-2", "-3", etc. if the app was updated
Decompile the apk using apktool:
Code:
apktool d -r base.apk
Edit base/smali/com/netflix/mediaclient/service/webclient/model/leafs/DeviceConfigData.smali and look for the following line:
Code:
.method public isWidevineL1Enabled()Z
Just a few lines below that, change the following line:
Code:
iget-boolean v0, p0, Lcom/netflix/mediaclient/service/webclient/model/leafs/DeviceConfigData;->enableWidevineL1:Z
to
Code:
const/4 v0, 0x1
This causes Netflix to always enable Widevine L1 DRM. Note that the modified apk will not work on any other device that doesn't support Widevine L1.
Rebuild the apk
Code:
apktool b base
Sign the apk
Code:
jarsigner -keystore ~/.android/debug.keystore -storepass android -keypass android -sigalg MD5withRSA -digestalg SHA1 -sigfile CERT -signedjar base/dist/base.apk base/dist/base-signed.apk androiddebugkey
Zipalign the apk
Code:
zipalign -f 4 base/dist/base-signed.apk base/dist/base-signed-zipaligned.apk
Uninstall the official Netflix app and install base/dist/base-signed-zipaligned.apk
Code:
adb shell pm uninstall com.netflix.mediaclient
adb install -r base/dist/base-signed-zipaligned.apk
Thank you so much kind sir! You will be remembered until eternity and my thankfulness will always seek you but never reach you :victory: :highfive:
Since chenxiaolong decided to share his instructions, some usefull links you might be interested in:
adb http://forum.xda-developers.com/showthread.php?t=2317790
apktool https://ibotpeaches.github.io/Apktool/
how to use apktool http://forum.xda-developers.com/showthread.php?t=2617435
apk-signer https://shatter-box.com/knowledgebase/android-apk-signing-tool-apk-signer/
how to use apk-signer http://forum.xda-developers.com/showthread.php?t=2617435
and dont forget that for signing apks you will need the JDK
Hope someone posts a guide for newbies like me
thanks for sharing your instructions, i went with the DeviceConfiguration.smali and changed enableWidevineL1(), this should also work(?) at least i get in the test video the same results and other streams also look HD and you get the HD mark near the title subscription.
Rhala said:
thanks for sharing your instructions, i went with the DeviceConfiguration.smali and changed enableWidevineL1(), this should also work(?) at least i get in the test video the same results and other streams also look HD and you get the HD mark near the title subscription.
Click to expand...
Click to collapse
That will work as well, but if you have the LTE model of the tablet, you won't be able to turn on the Data Saver option to disable HD on mobile data
Tab S2s are now HD enabled by Netflix, according to https://help.netflix.com/en/node/23939
Alright boys and girls, so spamming the Netflix and samsung customer service worked! Maybe with that we will get support for amazon instant video, too.
quickk said:
Tab S2s are now HD enabled by Netflix, according to https://help.netflix.com/en/node/23939
Click to expand...
Click to collapse
Still capped at 1750 for me no HD.
This is working for people?
try logging out and logging back in.
Related
So I'm sure by now we have all seen that amazon instant video was released for the LG TVs released in 2012.
My question:
Is there any way we can do a device id change to be able to download the amazon instant video app from the play store?
Then if that is a real possibility, is there a way we could make it work on a nexus 7 while retaining access to all the available content to the nexus 7 and not only seeing Google TV content?
I'm guessing the answer to this is no, but I wasn't sure if there was a way to temporarily spoof a device id.
Thanks for taking the time to read and respond.
Best regards,
Downsay
Sent from my Nexus 7 using Tapatalk HD
Well, will this work? I can get prime videos to play through mobile firefox, but that is as far as I've gotten. I've tried but I don't know that I am using it right. Is there some way, with the new apps, to get Amazon Prime video streaming from my phone/tablet to my chromecast?
primetime34 said:
Well, will this work? I can get prime videos to play through mobile firefox, but that is as far as I've gotten. I've tried but I don't know that I am using it right. Is there some way, with the new apps, to get Amazon Prime video streaming from my phone/tablet to my chromecast?
Click to expand...
Click to collapse
I'm betting for now that the answer is NO...But there may be ways with a Hacked Rooted CCast.
I would be guessing but I expect there to be DRM in those that requires a player that can decode the DRM stream.
Netflix has one for the CCast and until Amazon supports CCast natively I wouldn't expect it to work without direct streaming whatever is on the Tablet screen directly to the CCast via Allcast or some other app that requires a Rooted CCast..
You can use vget with the full version of Avia
Sent from my EndeavorU using Tapatalk 2
drivenby said:
You can use vget with the full version of Avia
Sent from my EndeavorU using Tapatalk 2
Click to expand...
Click to collapse
I have the full version of Avia. How can I use it with Amazon prime videos?
Sent from my GT-N8013 using Tapatalk 4
primetime34 said:
I have the full version of Avia. How can I use it with Amazon prime videos?
Sent from my GT-N8013 using Tapatalk 4
Click to expand...
Click to collapse
You probably can't, I'm guessing it has some kind of drm.
I meant using vget for sites like putlocker or other storage sites.
What I do is use vget as a dlna server and read it through avia.
Works as a charm MOST times.
For some reason some files won't play through dlna or streaming, and I have to download them with vget
Sent from my EndeavorU using Tapatalk 2
As far as I know...Anything that can only be played through a proprietary portal and their proprietary software (This includes NetFlix, GPlay, and Amazon) are most likely protected with DRM so that they can only be played on their proprietary player.
Which means it is pretty much up to them to incorporate Casting to CCast before you can cast those content items.
No way around it that I can think of.
Netflix activates an app on the CCast that knows how to decode their DRM encryption to play.it's streams.
It's a safe bet GPlay does this too and Amazon will need to create the same system they use.
While we all want Screen Mirroring and Local casting...The truth is the DIAL technology was always meant to be used in the way NetFlix uses it.
Thankfully it is flexible enough that we can get those other things as well.
Asphyx said:
As far as I know...Anything that can only be played through a proprietary portal and their proprietary software (This includes NetFlix, GPlay, and Amazon) are most likely protected with DRM so that they can only be played on their proprietary player.
Which means it is pretty much up to them to incorporate Casting to CCast before you can cast those content items.
No way around it that I can think of.
Netflix activates an app on the CCast that knows how to decode their DRM encryption to play.it's streams.
It's a safe bet GPlay does this too and Amazon will need to create the same system they use.
While we all want Screen Mirroring and Local casting...The truth is the DIAL technology was always meant to be used in the way NetFlix uses it.
Thankfully it is flexible enough that we can get those other things as well.
Click to expand...
Click to collapse
That makes sense. I just hope that sooner, rather than later, Amazon decides to open up their videos to all the android users...I mean for crying out loud, there is an app for the Wii and nothing for Android yet. Ridiculous.
primetime34 said:
That makes sense. I just hope that sooner, rather than later, Amazon decides to open up their videos to all the android users...I mean for crying out loud, there is an app for the Wii and nothing for Android yet. Ridiculous.
Click to expand...
Click to collapse
Yeah, I'm waiting for Amazon too... can already do it on my TV, but my TV's interface is klunky.
I think they will get there but it's a huge company whose software divisions are pretty much focused on their Kindle and Internal stuff.
Unfortunately I don't see them listed under the Dial Registry Database at all right now...
http://www.dial-multiscreen.org/dial-registry/namespace-database
Now that posting could be out of date and it may not mean they aren't working on it just that they haven't registered their Name yet.
They may be waiting for the public release of the SDK. Not sure how close they are with Google as far as development goes to be right on top of it.
I tend to avoid buying any music or content with DRM. I would rather buy the disc and rip it into a DRM free format so I can keep it on the Media Server or NAS.
Asphyx said:
I tend to avoid buying any music or content with DRM. I would rather buy the disc and rip it into a DRM free format so I can keep it on the Media Server or NAS.
Click to expand...
Click to collapse
Totally my attitude as well though recent life changes have pushed me to more of a "wherever, however" methodology, heh. Still won't pay for DRMed stuff as I've been burned too many times in the past, but I'll rent/subscribe for streaming now. Scary. I finally subscribed to Netflix... but mainly because I had the code from Chromecast. Nice bonus, the $8.99 1-month DVD+streaming gift card I bought years ago redeemed for two months of streaming service ($15.98 value). :victory:
bhiga said:
Totally my attitude as well though recent life changes have pushed me to more of a "wherever, however" methodology, heh. Still won't pay for DRMed stuff as I've been burned too many times in the past, but I'll rent/subscribe for streaming now. Scary. I finally subscribed to Netflix... but mainly because I had the code from Chromecast. Nice bonus, the $8.99 1-month DVD+streaming gift card I bought years ago redeemed for two months of streaming service ($15.98 value). :victory:
Click to expand...
Click to collapse
Netflix is a pretty good value when you get right down to it. I just signed up for the first time last month as well. Not sure I'll keep it but at the time Plex didn't support CCast! LOL
Truth is I got it as much for my Mother to use the account as for me! I may only keep as long as the MidSeason Break is on because there is nothing but crap on until January! LOL
Netflix is worth every penny imho.
Well, American Netflix. The other ones ain't so hot but if you have an open mind, there's plenty to watch.
If you are more of a 'up to date' guy, then Hulu might be the better alternative.
Sent from my EndeavorU using Tapatalk 2
Is the Nexus 6 going to get Miracast? If so any ETA?
It has cast built in but I'm not sure you'll see it get miracast.
Sent from my Nexus 6 using Tapatalk
So mirscast is not currently supported? Our only option is Chromecast?
Smallsmx3 said:
So mirscast is not currently supported? Our only option is Chromecast?
Click to expand...
Click to collapse
Yeah, I'm pretty upset about this. Every miracast page I visit says ALL android devices with 4.2 and above are supported. So why not android 5.0 on Nexus 6? Is Google really forcing Nexus 6 owners to use chromecast only?!? What if we don't have, or want to use, wifi? I just want to mirror my brand new Nexus 6 to my TV, not stream content. The google support page lists the Nexus 6 & 9 as supported chromecast devices, but not for miracast.
Any possibility of a someone enabling this option? Please help!?! I think the proper hardware is there.
I find it very hard to believe that the Nexus 6 doesn't support Wifi Direct or Miracast at the hardware level. It's probably just disabled in the factory images.
A custom rom should be able to use it. If not, there's something profoundly wrong with the phone.
Then again, there's still suspiciously no Wi-Fi Alliance certification for the Nexus 6.
try build.prop hack to enabling Miracast, AT YOUR OWN RISK!
https://github.com/kensuke/How-to-Miracast-on-AOSP/wiki/config_enableWifiDisplay#buildprop
I don't have N6.
Sent from my GT-I9305 using XDA Free mobile app
LLStarks said:
I find it very hard to believe that the Nexus 6 doesn't support Wifi Direct or Miracast at the hardware level. It's probably just disabled in the factory images.
A custom rom should be able to use it. If not, there's something profoundly wrong with the phone.
Then again, there's still suspiciously no Wi-Fi Alliance certification for the Nexus 6.
Click to expand...
Click to collapse
The Nexus 6 does have WiFi Direct, but not miracast. Are these the same? Should I be able to use a miracast device with my Nexus 6 without WiFi?
---------- Post added at 03:44 AM ---------- Previous post was at 03:34 AM ----------
s107ken said:
try build.prop hack to enabling Miracast, AT YOUR OWN RISK!
I don't have N6.
Sent from my GT-I9305 using XDA Free mobile app
Click to expand...
Click to collapse
Please explain further. What do I need to do to enable Miracast? I'm a bit of a noob. Do I modify build.prop? I am unlocked and rooted.
Thanks
Problem solved traded in my Nexus 6 for a Note 4. This feature was important to me. Hopefully Lollipop will be available soon and Miracast will still work.
ryan4a said:
The Nexus 6 does have WiFi Direct, but not miracast. Are these the same? Should I be able to use a miracast device with my Nexus 6 without WiFi?
---------- Post added at 03:44 AM ---------- Previous post was at 03:34 AM ----------
Please explain further. What do I need to do to enable Miracast? I'm a bit of a noob. Do I modify build.prop? I am unlocked and rooted.
Thanks
Click to expand...
Click to collapse
Miracast uses WiFi Direct
Code:
// connected device to PC via adb (usb)
$ adb root
$ adb remount
$ adb pull /system/build.prop
(add persist.debug.wfd.enable=1 to build.prop using text editor)
(Build Prop Editor app)
$ adb push build.prop /system/
$ adb shell chmod 644 /system/build.prop
$ adb reboot
Edited. Initially this didn't look like it worked however that's not entirely true. I am now able to connect to my push2tv adapter however I'm have stability issues. In did notice there was a WiFi network going in and out which has caused me problems in the past (this setup is in my car). I'll try again out in the open and report back.
This is a real pain in the ass, so if I want to mirror my screen at my gfs house, what are my options?
Connect the chromecast to her wifi? There's no other direct connection way?
After modifying the build.prop I was able to get miracast working without WiFi on my Nexus 6 (thanks s107ken)! It mirrors my screen perfectly and plays web videos and youtube. However, it will NOT play Netflix or Hulu videos. The sound works and the controls show up, but no video. Just a black screen. I thought this may be because of a HDCP or DRM issue.
Any thoughts or workarounds? Maybe the EZCast app? Please help!
Thanks
ryan4a said:
After modifying the build.prop I was able to get miracast working without WiFi on my Nexus 6 (thanks s107ken)! It mirrors my screen perfectly and plays web videos and youtube. However, it will NOT play Netflix or Hulu videos. The sound works and the controls show up, but no video. Just a black screen. I thought this may be because of a HDCP or DRM issue.
Any thoughts or workarounds? Maybe the EZCast app? Please help!
Thanks
Click to expand...
Click to collapse
What's your receiver?
italia0101 said:
What's your receiver?
Click to expand...
Click to collapse
For miracasting, I'm using the Microsoft Wireless Display Adapter. My TV is a Samsung (non-smart TV).
ryan4a said:
For miracasting, I'm using the Microsoft Wireless Display Adapter. My TV is a Samsung (non-smart TV).
Click to expand...
Click to collapse
Thanks, it does sound like a DRM issue on Netflix and Hulu.
Is the video decent quality? Smooth playback?
I'm planning to use it for plex if so
italia0101 said:
Thanks, it does sound like a DRM issue on Netflix and Hulu.
Is the video decent quality? Smooth playback?
I'm planning to use it for plex if so
Click to expand...
Click to collapse
Yes, it is smooth on what I'm able to play. I just desperately want to be able to mirror Netflix, Hulu, Amazon Prime, etc. Any suggestions for a fix? Please help!
Interesting. I'll update my ptv3000 firmware and if that doesn't work I'll try the ms version.
ryan4a said:
Yes, it is smooth on what I'm able to play. I just desperately want to be able to mirror Netflix, Hulu, Amazon Prime, etc. Any suggestions for a fix? Please help!
Click to expand...
Click to collapse
Do you have any other sources you could try? Like media from the phone or plex... Just trying to see if it's a DRM thing or something else.
buffalowolff said:
Interesting. I'll update my ptv3000 firmware and if that doesn't work I'll try the ms version.
Click to expand...
Click to collapse
Have you tried the build.prop fix?
Hello there,
Netflix refuses to play nice even on a systemless root, the only root app installed is supersu. I tried disabling supersu and that still didn't cut it. Anyone have any suggestions?
I am aware of liboemcrypto.so which if renamed/removed can break drm for other services that don't fall back on alternatives. I am aware of the CM patch for exynos 4 that works for this exynos 5 device.
I'm trying to find out if I'm missing something and if anyone would be willing to share with me how they are using netflix with the described scenario.
SM-T710 5.1.1 BOL6 with TWRP & SuperSU in system-less mode.
Thanks!! :silly:
Have you deleted su/xbin_bind?
ashyx said:
Have you deleted su/xbin_bind?
Click to expand...
Click to collapse
The act of even flashing TWRP trips the netflix drm, presumably windvine. I think this goes hand and hand with the systemless root identification. This is simply unacceptable.
This kind of abuse is why people circumvent overbearing DRM because it becomes too difficult to get content through appropriate means. Cavemen banging rocks together to fight the tide and punish paying customers.
I'll be writing emails to windvine, google and netflix to explain why this is unacceptable behavior. This is MY $ 400 tablet, I will not be subjected to nanny knows best mode because some pencil pusher thinks that people will steal video content on android. I mean really, there's far better platforms to do that sort of thing on. I don't think so... homie don't play that.
I encourage everyone to also get in touch with them and let them know why truly owning the device you paid for is your right and why they are taking video on demand back into the stone ages.
wirelesskebab said:
Hello there,
Netflix refuses to play nice even on a systemless root, the only root app installed is supersu. I tried disabling supersu and that still didn't cut it. Anyone have any suggestions?
I am aware of liboemcrypto.so which if renamed/removed can break drm for other services that don't fall back on alternatives. I am aware of the CM patch for exynos 4 that works for this exynos 5 device.
I'm trying to find out if I'm missing something and if anyone would be willing to share with me how they are using netflix with the described scenario.
SM-T710 5.1.1 BOL6 with TWRP & SuperSU in system-less mode.
Thanks!! :silly:
Click to expand...
Click to collapse
Can you explain more about SuperSU in system-less mode? Is it a setting in SuperSU or you just need to flash latest stable SuperSU with TWRP and you will get that systemless root?
mk89pwnz said:
Can you explain more about SuperSU in system-less mode? Is it a setting in SuperSU or you just need to flash latest stable SuperSU with TWRP and you will get that systemless root?
Click to expand...
Click to collapse
As long as you have 5.1.1 >> and use supersu v2.6x then root will be system less as long as you don't make any modifications to the system partition.
netflix is ok on my rooted t715.
It only plays 720p which is annoying but fine otherwise.
also, .. weirdest non informative post title ever award goes to ...
you.
wirelesskebab said:
......
I'll be writing emails to windvine, google and netflix to explain why this is unacceptable behavior. This is MY $ 400 tablet, I will not be subjected to nanny knows best mode because some pencil pusher thinks that people will steal video content on android. I mean really, there's far better platforms to do that sort of thing on. I don't think so... homie don't play that.
.....
Click to expand...
Click to collapse
So because you own a $400 tablet Netflix should change THEIR policy and make THEIR service work on your tablet?
Entitled much? Don't like Netflix's policy, stop using their service.
Sent from my E6683 using Tapatalk
jarayn said:
netflix is ok on my rooted t715.
It only plays 720p which is annoying but fine otherwise.
also, .. weirdest non informative post title ever award goes to ...
you.
Click to expand...
Click to collapse
I'm glad that it works rooted for you, but my thread is not necessarily to be "informative" but to ask the community if they had any alternative solutions to allowing HD netflix content to play despite windvine; barring wiping my tablet. I'm only getting 420p, it was also not okay rooted/custom recovery and was completely disabled if not for workarounds. (This is the true intention of windvine, there is not meant to be a workaround otherwise the functionality wouldn't have been disabled just reduced quality.) Granted my topic title was a manifestation from days of frustration related to trying to find a solution.
_Dennis_ said:
So because you own a $400 tablet Netflix should change THEIR policy and make THEIR service work on your tablet?
Entitled much? Don't like Netflix's policy, stop using their service.
Sent from my E6683 using Tapatalk
Click to expand...
Click to collapse
It's interesting that you condone DRM that punishes paying customers. You're entitled to your opinion although I'm not sure why you've decided to make it about your feelings rather than the facts.
Your quote is incomplete; My message is about encouraging everyone to also get in touch with them and let them know why truly owning the device you paid for is your right and why they are taking video on demand back into the stone ages. The more people who contact them the more likely that change can happen.
You should take note that even one of the largest cable operators "XFINITY" or "COMCAST" doesn't even resort to such draconian measures to protect their content and on that note they have some of the newest content, even releasing episodes before they air on TV same day via their web streaming/xfinity tv go app.
wirelesskebab said:
I'm glad that it works rooted for you, but my thread is not necessarily to be "informative" but to ask the community if they had any alternative solutions to allowing HD netflix content to play despite windvine; barring wiping my tablet. I'm only getting 420p, it was also not okay rooted/custom recovery and was completely disabled if not for workarounds. (This is the true intention of windvine, there is not meant to be a workaround otherwise the functionality wouldn't have been disabled just reduced quality.) Granted my topic title was a manifestation from days of frustration related to trying to find a solution.
It's interesting that you condone DRM that punishes paying customers. You're entitled to your opinion although I'm not sure why you've decided to make it about your feelings rather than the facts.
Your quote is incomplete; My message is about encouraging everyone to also get in touch with them and let them know why truly owning the device you paid for is your right and why they are taking video on demand back into the stone ages. The more people who contact them the more likely that change can happen.
You should take note that even one of the largest cable operators "XFINITY" or "COMCAST" doesn't even resort to such draconian measures to protect their content and on that note they have some of the newest content, even releasing episodes before they air on TV same day via their web streaming/xfinity tv go app.
Click to expand...
Click to collapse
my quote was incomplete, notice the ellipse (...) before and after?
You pay ~$9 a month for a service, you paid $400 for a tablet, you root the $400 item, then get mad that the service doesn't work, even though you knew going into rooting it wouldn't work. I'm sorry but you can be mad, you can ask for help, but at the end of the day you have three real options, don't root, root and live with low res, or cancel Netflix.
I'm not trying to be mean, I am trying manage expectations.
If XFINITY doesn't do it, use them (that's how a free market works). I understand the frustration, and the desire to find a way around the restrictions, but to claim Samsung or Netflix owes you something that you knew wasn't going to happen is entitled. You do own your tablet (though if you read the agreement you agreed to when opening the tablet you would know you don't own the software) but you do not own any of the content on Netflix, and so you have no right to demand Netflix comply with your demands. A grassroots effort is cool, though likely not to amount to much since the number of people who will stop service over this is small compared to the sway the content providers have over Netflix.
None of this is my feelings, it's based on facts. You own the hardware, Samsung owns the software, Netflix owns the service (and some of the original content), the content owners own the content.
_Dennis_ said:
my quote was incomplete, notice the ellipse (...) before and after?
You pay ~$9 a month for a service, you paid $400 for a tablet, you root the $400 item, then get mad that the service doesn't work, even though you knew going into rooting it wouldn't work. I'm sorry but you can be mad, you can ask for help, but at the end of the day you have three real options, don't root, root and live with low res, or cancel Netflix.
I'm not trying to be mean, I am trying manage expectations.
If XFINITY doesn't do it, use them (that's how a free market works). I understand the frustration, and the desire to find a way around the restrictions, but to claim Samsung or Netflix owes you something that you knew wasn't going to happen is entitled. You do own your tablet (though if you read the agreement you agreed to when opening the tablet you would know you don't own the software) but you do not own any of the content on Netflix, and so you have no right to demand Netflix comply with your demands. A grassroots effort is cool, though likely not to amount to much since the number of people who will stop service over this is small compared to the sway the content providers have over Netflix.
None of this is my feelings, it's based on facts. You own the hardware, Samsung owns the software, Netflix owns the service (and some of the original content), the content owners own the content.
Click to expand...
Click to collapse
The purpose of this thread is to ask others if they have any means of accessing HD content via Netflix on their rooted/custom recovery devices. Your replies have not been conducive or relevant to the original post. If you've got something helpful to contribute, please do. Thanks.
Just change device name to SM-T810 using buildprop, worked for me
Exactly which value did you modify? Nothing that I changed to the above suggestion would prompt Netflix to start playback for me.
Sent from my SM-T810
Grobou said:
Just change device name to SM-T810 using buildprop, worked for me
Click to expand...
Click to collapse
disturbd1 said:
Exactly which value did you modify? Nothing that I changed to the above suggestion would prompt Netflix to start playback for me.
Sent from my SM-T810
Click to expand...
Click to collapse
I'm using an SM-T710, I have no modified kernel nor am I using a custom rom. Are you saying you changed the buildprop on your SM-T810 using a custom rom etc?
I cannot get netflix to play with so much as even a custom recovery on my SM-T710 without a workaround which only provides 420p, are you stating you're getting HD content as well?
Eagerly awaiting your reply, thanks. :good:
I tried changing the device name to the model and that didn't make any difference, what did you explicitly change and what rom are you running?/firmware?
Didn't mean to revive a dead thread, but I'd really like some answers regarding this problem, too. I recently rooted my T-710, and installed the neked nook ROM on it. However, Netflix only plays at 480p. I tried several settings suggested to me:
1. modify build.prop
2. delete or rename liboemcrypto
3. modify APK to enable widevine DRM, thus allowing Netflix to stream HD content
None of these solutions have worked. Is this the case for anyone that roots their device?
troyraf said:
Didn't mean to revive a dead thread, but I'd really like some answers regarding this problem, too. I recently rooted my T-710, and installed the neked nook ROM on it. However, Netflix only plays at 480p. I tried several settings suggested to me:
1. modify build.prop
2. delete or rename liboemcrypto
3. modify APK to enable widevine DRM, thus allowing Netflix to stream HD content
None of these solutions have worked. Is this the case for anyone that roots their device?
Click to expand...
Click to collapse
Same problem, using a systemless root on my T710, with stock kernel, 5.1.1. and TWRP installed. I can get Netflix to work, but nothing seems to work to get it to HD instead of 480p. I'm wondering if the folks who get HD on rooted T710s are running 5.0.2?
rogerinnyc said:
Same problem, using a systemless root on my T710, with stock kernel, 5.1.1. and TWRP installed. I can get Netflix to work, but nothing seems to work to get it to HD instead of 480p. I'm wondering if the folks who get HD on rooted T710s are running 5.0.2?
Click to expand...
Click to collapse
I tried this on the stock 5.0.2 ROM, but to no avail. I've exhausted every resource I could find on the subject over the past couple of weeks, and I couldn't find a solution to this. Just removing root doesn't help either, as having even a custom recovery will disallow you from watching HD Netflix. I'm guessing perhaps the issue has something to do with messing around with the bootloader.
I wiped the tablet clean a couple of days ago and went back to stock. The bloatware sucks, but its the price to pay to get Netflix and Google Play videos working in HD again.
troyraf said:
I wiped the tablet clean a couple of days ago and went back to stock. The bloatware sucks, but its the price to pay to get Netflix and Google Play videos working in HD again.
Click to expand...
Click to collapse
Wow. That IS a heavy price. I can't give up Xposed or GMD Gesture Control, so I guess I'm living with 480p. Sigh. Thanks for your efforts (saving me some of that process!)
Some weird stuff with this device once you flash TWRP and root. Also just found out that Microsoft Office apps, notwithstanding that they come pre-loaded on the device, won't load. Uninstall, wipe data, etc. and go to Play Store to re-install and I get the message that the app (e.g., Word, Excel, Powerpoint) is not compatible with my device! Had to sideload apks from my phone (or you can also change your device ID).
Wonder what else I'll find out in the days ahead?
rogerinnyc said:
Wow. That IS a heavy price. I can't give up Xposed or GMD Gesture Control, so I guess I'm living with 480p. Sigh. Thanks for your efforts (saving me some of that process!)
Some weird stuff with this device once you flash TWRP and root. Also just found out that Microsoft Office apps, notwithstanding that they come pre-loaded on the device, won't load. Uninstall, wipe data, etc. and go to Play Store to re-install and I get the message that the app (e.g., Word, Excel, Powerpoint) is not compatible with my device! Had to sideload apks from my phone (or you can also change your device ID).
Wonder what else I'll find out in the days ahead?
Click to expand...
Click to collapse
RE: Office apps, that's the other head scratching thing I happened to come upon when I first got the tablet. Although GPlay Store will say that the apps need updating, it won't actually allow you to do so - this needs to be done via Galaxy Apps. It makes no sense considering the device is listed as compatible for these apps, and the apps come pre-installed. Its definitely an issue if you have a ROM that removes all the bloatware. Its also a bit frustrating because these "Galaxy Apps" are slower to update than their GPlay counterparts.
If you don't mind me asking, what ROM are you currently using? Have you also tried GPlay videos to see if they play in HD?
Also, do bump this thread if you happen to find any fixes. It will be much appreciated.
Sheesh. I hadn't even tried GPlay movies before your post. Upon testing, I can't get them to play in ANY resolution on my rooted tab S2! Renamed liboemcrypt.so without luck. Edited my boot.prop file to identify as a Nexus 10. No go. Tried Root Cloak. Ixnay. Any other thoughts?
I'm on stock 5.11, with systemless root using Su 2.71.
Also particularly bizarre that there is no problem with Google Play Movies on my rooted Tab S 10.5 (running stock 5.0.2) or on my rooted Note 4 (running stock 5.1.1). What's with this new Tab S2?
rogerinnyc said:
Sheesh. I hadn't even tried GPlay movies before your post. Upon testing, I can't get them to play in ANY resolution on my rooted tab S2! Renamed liboemcrypt.so without luck. Edited my boot.prop file to identify as a Nexus 10. No go. Tried Root Cloak. Ixnay. Any other thoughts?
I'm on stock 5.11, with systemless root using Su 2.71.
Also particularly bizarre that there is no problem with Google Play Movies on my rooted Tab S 10.5 (running stock 5.0.2) or on my rooted Note 4 (running stock 5.1.1). What's with this new Tab S2?
Click to expand...
Click to collapse
Try deleting liboemcrypto.so, see if that works. Suggest backing a copy up first. Seems like some get GPlay videos to work by renaming the file, and some by deleting it.
I went thru the root process again, and realized these devices already come with the bootloader unlocked, so the issue isn't the bootloader. I'm stumped. Having no root is so limiting.
Hello, I'm new here. I've recently received my (2) Remix Minis, one in use as a desktop PC, the other as a set top box for streaming video to my TV. While I've had no problems generally streaming video using Netflix or Hulu, I can't make Amazon Video work. The thread containing all working apps says to load the Amazon App Store first and then Amazon Video, but Amazon has done away with direct loads of the App Store in favor of something called Amazon Underground. So supposedly, according to Amazon's own instructions you first download Amazon Underground and then the Amazon Video app.
This is where I run into problems. Amazon Video will not download to the mini due to Amazon's copyright protection. The message I get says that I can't use Amazon Video because of the country in which I am located. As I'm in the U.S. this should not happen. I contacted Amazon for an explanation and they said the device I'm using does not conform to their copyright protection, i.e., it's not HDCP (High-bandwidth Digital Content Protection) compliant.
Is there a fix for this or has anyone found a way around this? Thanks in advance for your answers.
Looking into this issue
Your Jide Ambassador is here!!!
https://m.apkpure.com/amazon-prime-video/com.amazon.avod.thirdpartyclient
u have to side load it off of chrome. it worked 4 me. mini restarted after install.
Thank you so much AmoraRei; that worked perfectly! :good::good::good:
This link for the Amazon video apk is dead. Is there a new one available?
New Link
Bilbo90 said:
This link for the Amazon video apk is dead. Is there a new one available?
Click to expand...
Click to collapse
Paste this in your browser, removing the spaces:
https: // apkpure.com / amazon-prime-video / com.amazon.avod.thirdpartyclient