Hi Forum,
I need help (python scrypt) to get strem link from the site https://tv.bnt.bg/
Thanks advance
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 2 of 2
			
		- 
	
- 
	Code:import requests from bs4 import BeautifulSoup SOURCE_URL = "https://tv.bnt.bg" def get_m3u8(source_url): response = requests.get(source_url).text response = BeautifulSoup(response, 'html.parser') response = response.find('iframe', src=lambda x: x and '/live/' in x) response = response["src"] if not response.startswith("https:"): response = f'https:{response}' response = requests.get(response, headers={'Referer': source_url}) try: response = BeautifulSoup(response.text, 'html.parser') response = response.find('source', src=lambda x: x) response = response["src"] if not response.startswith("https:"): response = f'https:{response}' except: exit("Bulgarian IP needed") response = f'streamlink "{response}" best --http-header "referer={source_url}"' print(response) if __name__ == '__main__': get_m3u8(SOURCE_URL)Code:streamlink "https://lb-ts.cdn.bg/bnt1/fls/bnt1HD_abr.stream/at=...snipped.../playlist.m3u8" best --http-header "referer=https://tv.bnt.bg" --[----->+<]>.++++++++++++.---.--------.
 [*drm mass downloader: widefrog*]~~~~~~~~~~~[*how to make your own mass downloader: guide*]
Similar Threads
- 
  please python scriptBy kayrak in forum Video Streaming DownloadingReplies: 7Last Post: 29th Nov 2024, 11:54
- 
  Need help for python scriptBy kayrak in forum Video Streaming DownloadingReplies: 3Last Post: 14th Mar 2024, 08:30
- 
  Need help for python scriptBy kayrak in forum Video Streaming DownloadingReplies: 2Last Post: 12th Feb 2024, 07:44
- 
  Need Python script for this streamBy kayrak in forum Video Streaming DownloadingReplies: 6Last Post: 17th Sep 2023, 13:10
- 
  anyone know if the following python script work ?By DRMdec in forum Video Streaming DownloadingReplies: 2Last Post: 21st Feb 2023, 20:02


 
		
		 View Profile
				View Profile
			 View Forum Posts
				View Forum Posts
			 Private Message
				Private Message
			 
 
			
			
 Quote
 Quote 
			



