VideoHelp Forum




+ Reply to Thread
Results 1 to 7 of 7
  1. psaframe
    Join Date
    Mar 2021
    Location
    Algeria
    Search PM
    Hi,

    seems i can't find m3u8 link for this stream with the usual tools.

    https://www.istikana.com/en/episodes/6-days-burned-1

    If anyone could help me find the m3u8 link to download, would be appreciated.

    Thanks to all your effors in here.
    Quote Quote  
  2. post screenshot of your network tab
    Quote Quote  
  3. Originally Posted by naim2007 View Post
    Hi,

    seems i can't find m3u8 link for this stream with the usual tools.

    https://www.istikana.com/en/episodes/6-days-burned-1

    If anyone could help me find the m3u8 link to download, would be appreciated.

    Thanks to all your effors in here.
    This video is only available with an Istikana subscription
    If you have subscription, just generate and send HAR file here
    Quote Quote  
  4. psaframe
    Join Date
    Mar 2021
    Location
    Algeria
    Search PM
    I'am providing fresh cookies to login into account if anyone needs to check,
    it's tunisian vod service.
    https://bit.ly/4apevVh
    Quote Quote  
  5. Member aqzs's Avatar
    Join Date
    Mar 2024
    Location
    Paris
    Search Comp PM
    Originally Posted by naim2007 View Post
    I'am providing fresh cookies to login into account if anyone needs to check,
    it's tunisian vod service.
    https://bit.ly/4apevVh
    Here are your file :
    1080p : https://buzzheavier.com/f/GOB6dpn0YAA=
    720p : https://buzzheavier.com/f/GOB6Wqm0YAA=
    Quote Quote  
  6. Member aqzs's Avatar
    Join Date
    Mar 2024
    Location
    Paris
    Search Comp PM
    Originally Posted by naim2007 View Post
    I'am providing fresh cookies to login into account if anyone needs to check,
    it's tunisian vod service.
    https://bit.ly/4apevVh
    I have made a script to get download command based on the Video url :
    Code:
    import requests
    import base64
    import re
    
    vidurl = input("Vid url: ")
    part = vidurl.split('/')[-1]
    
    response = requests.get(f'https://www.istikana.com/en/p/{part}')
    
    data = response.text
    pattern = r"""src: atob\("([^']*)"\),"""
    match = re.search(pattern, data)
    if match:
        value = match.group(1)
        url = base64.b64decode(value).decode()
    
        if 'm3u8' in url:
            print(f'N_m3u8DL-RE "{url}" --save-name {part} -sv best -sa best -ss all')
        else:
            print(f'yt-dlp "{url}" -o "{part}.mp4"')
    else:
        print("Match not found.")
    I tried with :
    https://www.istikana.com/en/episodes/frontiers-dreams-fears-1
    https://www.istikana.com/en/episodes/deir-yassin-village-1
    https://www.istikana.com/en/episodes/it-must-be-heaven-1 (unavailable)
    Quote Quote  
  7. psaframe
    Join Date
    Mar 2021
    Location
    Algeria
    Search PM
    Originally Posted by aqzs View Post
    Originally Posted by naim2007 View Post
    I'am providing fresh cookies to login into account if anyone needs to check,
    it's tunisian vod service.
    https://bit.ly/4apevVh
    I have made a script to get download command based on the Video url :
    Code:
    import requests
    import base64
    import re
    
    vidurl = input("Vid url: ")
    part = vidurl.split('/')[-1]
    
    response = requests.get(f'https://www.istikana.com/en/p/{part}')
    
    data = response.text
    pattern = r"""src: atob\("([^']*)"\),"""
    match = re.search(pattern, data)
    if match:
        value = match.group(1)
        url = base64.b64decode(value).decode()
    
        if 'm3u8' in url:
            print(f'N_m3u8DL-RE "{url}" --save-name {part} -sv best -sa best -ss all')
        else:
            print(f'yt-dlp "{url}" -o "{part}.mp4"')
    else:
        print("Match not found.")
    I tried with :
    https://www.istikana.com/en/episodes/frontiers-dreams-fears-1
    https://www.istikana.com/en/episodes/deir-yassin-village-1
    https://www.istikana.com/en/episodes/it-must-be-heaven-1 (unavailable)
    I realy appreciate your help. Thanks
    Quote Quote  



Similar Threads

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