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.
+ Reply to Thread
Results 1 to 7 of 7
-
-
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= -
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.")
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)
Similar Threads
-
Stream m3u8
By stevepen1974 in forum Video Streaming DownloadingReplies: 6Last Post: 16th May 2024, 13:44 -
M3U8 live stream
By grabyea in forum Video Streaming DownloadingReplies: 0Last Post: 18th Jan 2024, 14:22 -
m3u8 stream
By grabyea in forum Video Streaming DownloadingReplies: 0Last Post: 2nd Aug 2022, 03:36 -
Looking for someone who can hack m3u8 stream with tokens
By SuperStreamer in forum Video Streaming DownloadingReplies: 4Last Post: 28th Jul 2021, 06:26 -
how to download m3u8 stream
By jamkiya in forum Video Streaming DownloadingReplies: 1Last Post: 10th Jun 2021, 04:25