Hello, I need php code to scrap m3u8 link from thise site:https://btvplus.bg/live/
Thanks
+ Reply to Thread
Results 1 to 3 of 3
-
-
try to write this to php:
python:
Code:import requests import time cur_time = int(time.time() * 1000) headers = { 'authority': 'btvplus.bg', 'referer': 'https://btvplus.bg/live/', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36', 'x-requested-with': 'XMLHttpRequest', } params = { 'media_id': '2110383625', '_': cur_time, } response = requests.get('https://btvplus.bg/lbin/v3/btvplus/player_config.php', params=params, headers=headers).json() hls_link = response['info']['file'] print(hls_link)
[Attachment 72053 - Click to enlarge]
Similar Threads
-
How to merge video m3u8 url and audio m3u8 url live channel
By sairaj in forum DVB / IPTVReplies: 2Last Post: 3rd Jul 2023, 06:29 -
m3u8
By bigd in forum Video Streaming DownloadingReplies: 6Last Post: 21st Nov 2022, 14:34 -
m3u8 > rtmp ?
By skc109s in forum Video Streaming DownloadingReplies: 6Last Post: 11th Jun 2019, 20:38 -
Can't play m3u8
By Skoosh in forum Video Streaming DownloadingReplies: 2Last Post: 17th Nov 2018, 13:00 -
Please Help Me for this m3u8 stream.
By Fathom in forum Video Streaming DownloadingReplies: 16Last Post: 26th Oct 2018, 17:12