VideoHelp Forum


Try StreamFab Downloader and download from Netflix, Amazon, Youtube! Or Try DVDFab and copy Blu-rays!


Try StreamFab Downloader and download streaming video from Youtube, Netflix, Amazon! Download free trial.


+ Reply to Thread
Results 1 to 23 of 23
Thread
  1. Is there a way to find 1080p stream url in browser for this site

    HTML Code:
    https://www.mytvsuper.com/en/programme/sinisterbeings20001_140728/Sinister-Beings-2/
    I tried with android app and it still returned 720p stream

    I have keys, I just want to know how to find 1080p url on this site

    Free videos need Hong Kong IP to watch
    Quote Quote  
  2. Education Student (Grad.) CrymanChen's Avatar
    Join Date
    Apr 2022
    Location
    Mainland China
    Search Comp PM
    Even if I bought their plans, it still returned a 720p...
    twitter @Cryman_Chen
    email crymanchen@gmail.com
    Quote Quote  
  3. Originally Posted by CrymanChen View Post
    Even if I bought their plans, it still returned a 720p...
    yes, me too.
    Don't know how they find 1080p links
    Quote Quote  
  4. so,there is four quality choice I find in the browser ,but none of them are 1080p url
    HTML Code:
    "profiles": [
            {
                "quality": "high",
                "streaming_path": "https://wowza-rr-vod-2.edgeware.tvb.com/cencmdrmv/_definst_/smil:vipo/mytvsuper15/65049/6504824/mps_000005122465.smil/manifest.mpd?sig=06232d76b37c7e461c01e0b4a8711fbd&ext_start_limit=1713163291&int_start_limit=1713163291&ts=1713163291&c=715880729"
            },
            {
                "quality": "medium",
                "streaming_path": "https://wowza-rr-vod-2.edgeware.tvb.com/cencmdrmv/_definst_/smil:vipo/mytvsuper15/65049/6504824/mps_000005122462.smil/manifest.mpd?sig=fd856fcce652d84bc9493b32f8a201ee&ext_start_limit=1713163291&int_start_limit=1713163291&ts=1713163291&c=715880729"
            },
            {
                "quality": "low",
                "streaming_path": "https://wowza-rr-vod-11.edgeware.tvb.com/cencmdrmv/_definst_/smil:vipo/mytvsuper15/65049/6504824/mps_000005122461.smil/manifest.mpd?sig=fab5a957e0bc027dbdec0b8b9747c0fc&ext_start_limit=1713163291&int_start_limit=1713163291&ts=1713163291&c=715880729"
            },
            {
                "quality": "auto",
                "streaming_path": "https://wowza-rr-vod-7.edgeware.tvb.com/cencmdrmv/_definst_/smil:vipo/mytvsuper15/65049/6504824/mps_6504824_mobile_auto.smil/manifest.mpd?sig=bea0358cdab31a2c462601429588fe66&ext_start_limit=1713163291&int_start_limit=1713163291&ts=1713163291&c=715880729"
            }
    Quote Quote  
  5. Education Student (Grad.) CrymanChen's Avatar
    Join Date
    Apr 2022
    Location
    Mainland China
    Search Comp PM
    Just talked to their customer support, and they replied that 1080p is only available on TV.
    twitter @Cryman_Chen
    email crymanchen@gmail.com
    Quote Quote  
  6. Originally Posted by CrymanChen View Post
    Just talked to their customer support, and they replied that 1080p is only available on TV.
    I was be able to find 1080p path based on this post
    https://forum.videohelp.com/threads/397710-mpd-protected-with-DRM#post2614691

    but I don't think I can generate sig which you need.
    Quote Quote  
  7. params = {
    'platform': 'android_tv',
    'video_id': video_id,
    }
    response = requests.get(url='https://user-api.mytvsuper.com/v1/video/checkout',
    params=params, headers=headers)
    this api
    https://wowza-rr-vod-6.edgeware.tvb.com/cencmdrmv/_definst_/smil:vipo/mytvsuper15/6487...21&c=140006740

    aff9aacd7317e294fce9e88f8c308367:51e6fadde525adcb3 666ba710aa1c8d7
    Quote Quote  
  8. Education Student (Grad.) CrymanChen's Avatar
    Join Date
    Apr 2022
    Location
    Mainland China
    Search Comp PM
    Originally Posted by Novia View Post
    params = {
    'platform': 'android_tv',
    'video_id': video_id,
    }
    response = requests.get(url='https://user-api.mytvsuper.com/v1/video/checkout',
    params=params, headers=headers)
    this api
    https://wowza-rr-vod-6.edgeware.tvb.com/cencmdrmv/_definst_/smil:vipo/mytvsuper15/6487...21&c=140006740

    aff9aacd7317e294fce9e88f8c308367:51e6fadde525adcb3 666ba710aa1c8d7
    Thanks @novia.

    It turned out to be "android_tv" instead of "tv"!

    No wonder I can't get the response.
    twitter @Cryman_Chen
    email crymanchen@gmail.com
    Quote Quote  
  9. Originally Posted by Novia View Post
    params = {
    'platform': 'android_tv',
    'video_id': video_id,
    }
    response = requests.get(url='https://user-api.mytvsuper.com/v1/video/checkout',
    params=params, headers=headers)
    this api
    https://wowza-rr-vod-6.edgeware.tvb.com/cencmdrmv/_definst_/smil:vipo/mytvsuper15/6487...21&c=140006740

    aff9aacd7317e294fce9e88f8c308367:51e6fadde525adcb3 666ba710aa1c8d7
    thanks,I can find 1080p url now.
    Quote Quote  
  10. What headers do you use?
    Quote Quote  
  11. Originally Posted by madcat_ninja View Post
    What headers do you use?
    if you know how to get info from api, you dont know use what headers? that is so strange. but any way(only tested on free account).

    drm_token = 'eyJxxxxxxxxxxxxx.............'

    for getting manifest, you need Bearer token in headers:

    Code:
        headers = {
            'authorization': f'Bearer {drm_token}',
        }
    for getting keys, you need same token but no need 'Bearer':

    Code:
        headers = {
            'x-service-id': 'super',
            'x-user-token': drm_token,
        }

    thanks to @Novia
    Quote Quote  
  12. Thanks. Do you know how to get 4K mpd?
    Quote Quote  
  13. Originally Posted by madcat_ninja View Post
    Thanks. Do you know how to get 4K mpd?
    4K need L1
    at least for livetv
    Quote Quote  
  14. Sure, curious, do you know the parameters to capture 4K mpd?
    Quote Quote  
  15. Originally Posted by madcat_ninja View Post
    Sure, curious, do you know the parameters to capture 4K mpd?
    you can capture love&nature 4k channel mpd using code above
    I think for 4k programs,you must request from a verified tv box.
    and again after checking ,I didn't think 4k require L1 (tvb jade 4k)
    Image
    [Attachment 78467 - Click to enlarge]
    Last edited by z1269925944; 18th Apr 2024 at 09:11.
    Quote Quote  
  16. Originally Posted by Novia View Post
    params = {
    'platform': 'android_tv',
    'video_id': video_id,
    }
    response = requests.get(url='https://user-api.mytvsuper.com/v1/video/checkout',
    params=params, headers=headers)
    this api
    https://wowza-rr-vod-6.edgeware.tvb.com/cencmdrmv/_definst_/smil:vipo/mytvsuper15/6487...21&c=140006740

    aff9aacd7317e294fce9e88f8c308367:51e6fadde525adcb3 666ba710aa1c8d7
    Hello,Novia. Please tell me how to find the license_url of this website. Currently, parsing the key always fails. In the past, "https://wv.drm.tvb.com/wvproxy/mlicense?contentid=" could be parsed normally.
    Quote Quote  
  17. Education Student (Grad.) CrymanChen's Avatar
    Join Date
    Apr 2022
    Location
    Mainland China
    Search Comp PM
    Originally Posted by jack14 View Post
    Please tell me how to find the license_url of this website. Currently, parsing the key always fails. In the past, "https://wv.drm.tvb.com/wvproxy/mlicense?contentid=" could be parsed normally.
    You won't get the license response unless you should pair your device first.
    twitter @Cryman_Chen
    email crymanchen@gmail.com
    Quote Quote  
  18. Originally Posted by z1269925944 View Post
    Is there a way to find 1080p stream url in browser for this site

    HTML Code:
    https://www.mytvsuper.com/en/programme/sinisterbeings20001_140728/Sinister-Beings-2/
    I tried with android app and it still returned 720p stream

    I have keys, I just want to know how to find 1080p url on this site

    Free videos need Hong Kong IP to watch
    Is there a way for non-HK people to make an account there? (and of course, pay for the sub)
    Quote Quote  
  19. Member aqzs's Avatar
    Join Date
    Mar 2024
    Location
    Paris
    Search Comp PM
    Originally Posted by carrion189 View Post
    Is there a way for non-HK people to make an account there? (and of course, pay for the sub)
    Use a VPN.
    Image
    [Attachment 80702 - Click to enlarge]
    Quote Quote  
  20. Yeah, I've tried, but it keeps giving me an error screen when trying to make it
    Quote Quote  
  21. Originally Posted by Novia View Post
    params = {
    'platform': 'android_tv',
    'video_id': video_id,
    }
    response = requests.get(url='https://user-api.mytvsuper.com/v1/video/checkout',
    params=params, headers=headers)
    this api
    https://wowza-rr-vod-6.edgeware.tvb.com/cencmdrmv/_definst_/smil:vipo/mytvsuper15/6487...21&c=140006740

    aff9aacd7317e294fce9e88f8c308367:51e6fadde525adcb3 666ba710aa1c8d7
    This URL doesn't seem to return 1080p stream for every video anymore. Does anyone know of another way?
    Quote Quote  
  22. Originally Posted by RainbowUnicorn View Post
    Originally Posted by Novia View Post
    params = {
    'platform': 'android_tv',
    'video_id': video_id,
    }
    response = requests.get(url='https://user-api.mytvsuper.com/v1/video/checkout',
    params=params, headers=headers)
    this api
    https://wowza-rr-vod-6.edgeware.tvb.com/cencmdrmv/_definst_/smil:vipo/mytvsuper15/6487...21&c=140006740

    aff9aacd7317e294fce9e88f8c308367:51e6fadde525adcb3 666ba710aa1c8d7
    This URL doesn't seem to return 1080p stream for every video anymore. Does anyone know of another way?
    working for me , don't know what specific link you're referring to
    Quote Quote  
  23. I saw both high and medium quality links are the same and immediately jumped to the wrong conclusion that both must be 720p. Thank you for clarifying it's still working.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!