[split] Movies Anywhere - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32) +--- Forum: Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=26) +---- Forum: Requests (https://forum.kodi.tv/forumdisplay.php?fid=251) +---- Thread: [split] Movies Anywhere (/showthread.php?tid=353522) Pages:
1
2
|
RE: [split] Movies Anywhere - izprtxqkft - 2023-03-13 if you want to capture SSL traffic @27hectormanuel you need more than raw packets see - https://www.charlesproxy.com proxying the connections you can see the ssl traffic IF: the ssl cert is installed on the android device newer android devices need to have the cert installed to system as user certs are not used by apps (as of android 7-8 i think) unless those apps are compiled to use user certs, see - https://gist.github.com/luciopaiva/aa9cb30863804fb2ac3ed1ccd11c95c7 in order to install the cert to the "system" certs you will need to be root you can set a system proxy on android via adb like this adb shell settings put global http_proxy <proxyserver>:8008 adb shell settings put global global_http_proxy_host <proxyserver> adb shell settings put global global_http_proxy_port 8008 to completely disable proxy settings adb shell settings delete global http_proxy adb shell settings delete global global_http_proxy_host adb shell settings delete global global_http_proxy_port adb shell settings delete global global_http_proxy_username adb shell settings delete global global_http_proxy_password adb shell settings delete global global_http_proxy_exclusion_list adb shell settings delete global global_proxy_pac_url RE: [split] Movies Anywhere - 27hectormanuel - 2023-03-13 I'll see what I do RE: [split] Movies Anywhere - 27hectormanuel - 2023-03-16 I found a possible way to get 1080p streaming for our movies but the problem is the site is asking for "-com.widevine.alpha update" in browser and the auth key is not working with kodi. @peak3d I'd appreciate some help. RE: [split] Movies Anywhere - 27hectormanuel - 2023-03-19 So far what is holding me back is HD playback. I get this error. The SD playback works fine RE: [split] Movies Anywhere - 27hectormanuel - 2023-03-20 @Paco8 The same method applied to PEACOCK could be applied here temporarily? Grabbing the login from the your cookies and make the json work? RE: [split] Movies Anywhere - izprtxqkft - 2023-03-20 that likely has to do with the platform you are running on, 720p is probably L3 and 1080p requiring L1 or something have you tried it on an L1 certified device? send your code somewhere and i can test it RE: [split] Movies Anywhere - 27hectormanuel - 2023-03-20 (2023-03-20, 02:59)jepsizofye Wrote: that likely has to do with the platform you are running on, 720p is probably L3 and 1080p requiring L1 or somethingDo you have any MA compatible movies? I can explain the process of getting everything set using this RE: [split] Movies Anywhere - izprtxqkft - 2023-03-20 in fact i have 277 movies in my movies anywhere RE: [split] Movies Anywhere - 27hectormanuel - 2023-03-20 @jepsizofye ok open your browser dev tools on any desired movie to test and look for presentation.mpd and getlicense? url would look something like this: 'name': 'InputStream Adaptive - Dash with Widevine', 'type': 'ia_widevine', 'url': 'https://media-ma-disney.akamaized.net/... ', 'license_key':'https://apollo.moviesanywhere.com/... RE: [split] Movies Anywhere - izprtxqkft - 2023-03-20 i see what youve got going on, let me see what i can put together but im already working on several other things atm for the moment if you trace back what the slyguy test addon is doing it's really nothing special its inside slyguy common see here - https://github.com/xbmc/inputstream.adaptive/wiki/Integration RE: [split] Movies Anywhere - 27hectormanuel - 2023-03-20 Try and get HD working. MA only does HD officially on Safari or Android. First I discovered the source of the HD movie by switching user agents to the latest MacBook/Safari. You replace the sd with hd (720p) or hdp for (1080p) Personally I could not get playback with android. @jepsizofye |