hi,
i want to integrate free live stream to tivimate but i am having no luck.
https://www.aloula.sa/en/live/saudiatv
can anyone help?
thnx
Support our site by donate $5 directly to us Thanks!!!
Try StreamFab Downloader and download streaming video from Netflix, Amazon!
Try StreamFab Downloader and download streaming video from Netflix, Amazon!
+ Reply to Thread
Results 1 to 6 of 6
-
-
You can use stream detector to get the m3u8 link. The livestream doesn't use DRM. The m3u8 is gonna expire though.
--[----->+<]>.++++++++++++.---.--------.
[*drm mass downloader: widefrog*]~~~~~~~~~~~[*how to make your own mass downloader: guide*] -
-
Ok. In that case one way to get a fresh m3u8 is this
Code:import json import re import requests SOURCE_URL = "https://www.aloula.sa/en/live/saudiatv" live_name = re.search(r'/live/([^/?]+)', SOURCE_URL).group(1) response = requests.get('https://aloula.faulio.com/api/v1/channels') response = response.content.decode() response = json.loads(response) stream = None live_id = None for live_stream in response: if live_stream.get("url", "") == live_name: live_id = live_stream["id"] stream = live_stream.get("streams", {}).get("hls", None) break if stream is None: response = requests.get(f'https://aloula.faulio.com/api/v1.1/channels/{live_id}/player') response = response.content.decode() response = json.loads(response) stream = response["streams"]["hls"] cmd = f'streamlink --http-header "Origin=https://www.aloula.sa" "{stream}" best' print(cmd)
Code:streamlink --http-header "Origin=https://www.aloula.sa" "https://live.kwikmotion.com/ksa1live/ksa1.smil/playlist_dvr.m3u8?hdnts=exp=1737740373~acl=/ksa1live/ksa1.smil/*~hmac=99b4a89f0f4db5f9180c1c7fb20488606bcc804b870468c9436e8d035e9ae9c9" best
--[----->+<]>.++++++++++++.---.--------.
[*drm mass downloader: widefrog*]~~~~~~~~~~~[*how to make your own mass downloader: guide*] -
this works and i wrote nodejs script to achieve this as well. now im struggling in playing the file with tivimate. i passed the headers still its not working but it works in js fetch.
i am currently trying different proxy script for handling this.
is there any other way?
Similar Threads
-
Video works on JW Player Stream Tester but fails with CORS error on my site
By Badchip in forum Video Streaming DownloadingReplies: 2Last Post: 1st Dec 2024, 06:54 -
I need help downloading live stream from this site
By loth1012 in forum Video Streaming DownloadingReplies: 4Last Post: 6th Sep 2024, 07:59 -
How to automatically extract the m3u8 stream URL from this site?
By BosseB in forum Video Streaming DownloadingReplies: 23Last Post: 7th Feb 2023, 20:13 -
My cable's streaming site is dividing the stream into mp2t streams
By rrats in forum Video Streaming DownloadingReplies: 7Last Post: 24th Sep 2021, 20:01 -
Please teach me how to download videos from this site (MPD/dash stream)
By ConTroll in forum Video Streaming DownloadingReplies: 3Last Post: 1st May 2020, 02:14