2025-10-09 01:07:23 +00:00
|
|
|
import requests
|
|
|
|
import re
|
|
|
|
import json
|
|
|
|
import argparse
|
2025-10-11 23:49:35 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
def load_cookies(cookie_file):
|
|
|
|
"""Load cookies from a Netscape format cookie file and return a Cookie header string."""
|
|
|
|
cookie_header = []
|
|
|
|
try:
|
|
|
|
with open(cookie_file, 'r') as f:
|
|
|
|
for line in f:
|
|
|
|
if line.startswith('#') or not line.strip():
|
|
|
|
continue # Skip comments and empty lines
|
|
|
|
parts = line.strip().split('\t')
|
|
|
|
if len(parts) >= 7:
|
|
|
|
domain = parts[0]
|
|
|
|
# Ensure the domain is valid before creating the cookie string
|
|
|
|
if domain.startswith('.'):
|
|
|
|
domain = domain[1:] # Remove leading dot for correct formatting
|
|
|
|
|
|
|
|
# Collecting the cookie name and value
|
|
|
|
cookie_name = parts[5]
|
|
|
|
cookie_value = parts[6]
|
|
|
|
cookie_header.append(f"{cookie_name}={cookie_value}")
|
|
|
|
except Exception as e:
|
|
|
|
print(f"Error loading cookies: {str(e)}")
|
|
|
|
return '; '.join(cookie_header)
|
2025-10-09 01:07:23 +00:00
|
|
|
|
|
|
|
def get_stream_url(url):
|
|
|
|
if url.startswith("https://npo.nl/start/serie/") and url.endswith("/afspelen"):
|
|
|
|
try:
|
2025-10-11 23:49:35 +00:00
|
|
|
# Load cookies from cookies.txt if it exists
|
|
|
|
cookie_file = 'cookies.txt'
|
|
|
|
cookie_header = load_cookies(cookie_file) if os.path.exists(cookie_file) else None
|
|
|
|
|
|
|
|
# Step 1: Make a request to the input URL
|
|
|
|
headers = {'Cookie': cookie_header} if cookie_header else {}
|
|
|
|
response = requests.get(url, headers=headers)
|
2025-10-09 01:07:23 +00:00
|
|
|
response.raise_for_status()
|
|
|
|
|
2025-10-11 23:49:35 +00:00
|
|
|
# Extract the JSON data embedded in the HTML
|
2025-10-09 01:07:23 +00:00
|
|
|
match = re.search(r'<script id="__NEXT_DATA__" type="application/json">(.*?)</script>', response.text, re.DOTALL)
|
|
|
|
if match:
|
|
|
|
json_data = match.group(1)
|
|
|
|
data = json.loads(json_data)
|
|
|
|
|
|
|
|
product_info = None
|
|
|
|
for item in data.get('props', {}).get('pageProps', {}).get('dehydratedState', {}).get('queries', []):
|
|
|
|
for episode_data in item.get('state', {}).get('data', []):
|
|
|
|
if isinstance(episode_data, dict) and episode_data.get('slug') == url.split('/')[-2]:
|
|
|
|
product_info = {
|
|
|
|
'productId': episode_data.get('productId'),
|
|
|
|
'guid': episode_data.get('guid')
|
|
|
|
}
|
|
|
|
break
|
|
|
|
if product_info:
|
|
|
|
break
|
|
|
|
|
|
|
|
if product_info:
|
2025-10-11 23:49:35 +00:00
|
|
|
# Step 2: Get JWT using the same cookies
|
2025-10-09 01:07:23 +00:00
|
|
|
token_url = f"https://npo.nl/start/api/domain/player-token?productId={product_info['productId']}"
|
2025-10-11 23:49:35 +00:00
|
|
|
token_response = requests.get(token_url, headers=headers)
|
2025-10-09 01:07:23 +00:00
|
|
|
token_response.raise_for_status()
|
|
|
|
jwt = token_response.json().get('jwt')
|
|
|
|
|
|
|
|
if jwt:
|
|
|
|
# Step 3: Make POST request to get stream link
|
2025-10-11 23:49:35 +00:00
|
|
|
post_headers = {
|
2025-10-09 01:07:23 +00:00
|
|
|
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36",
|
|
|
|
"Authorization": jwt,
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
"Accept": "*/*",
|
2025-10-11 23:49:35 +00:00
|
|
|
"Referer": "https://npo.nl/",
|
|
|
|
'Cookie': cookie_header
|
2025-10-09 01:07:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body = {
|
|
|
|
"profileName": "dash",
|
|
|
|
"drmType": "widevine",
|
|
|
|
"referrerUrl": url,
|
|
|
|
"ster": {
|
|
|
|
"identifier": "npo-app-desktop",
|
|
|
|
"deviceType": 4,
|
|
|
|
"player": "web"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-10-11 23:49:35 +00:00
|
|
|
# Send the POST request to get the stream link
|
|
|
|
stream_response = requests.post("https://prod.npoplayer.nl/stream-link", headers=post_headers, json=body)
|
2025-10-09 01:07:23 +00:00
|
|
|
stream_response.raise_for_status()
|
|
|
|
|
|
|
|
# Step 4: Extract streams URL and drmToken
|
|
|
|
stream_data = stream_response.json().get('stream', {})
|
|
|
|
stream_url = stream_data.get('streamURL', "streamURL not found in response.")
|
|
|
|
drm_token = stream_data.get('drmToken', "drmToken not found in response.")
|
|
|
|
|
|
|
|
return (stream_url, drm_token) # Return both if needed
|
|
|
|
|
|
|
|
return "Product ID and GUID not found for the given slug."
|
|
|
|
return "JSON script not found in the response."
|
|
|
|
except requests.exceptions.RequestException as e:
|
2025-10-11 23:49:35 +00:00
|
|
|
return f"An error occurred while making the request: {str(e)}"
|
2025-10-09 01:07:23 +00:00
|
|
|
except json.JSONDecodeError:
|
|
|
|
return "Failed to decode JSON data."
|
|
|
|
return "Invalid URL. Please provide a URL that starts with 'https://npo.nl/start/serie/' and ends with '/afspelen'."
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
parser = argparse.ArgumentParser(description="Get the streaming URL from an NPO series page.")
|
|
|
|
parser.add_argument("url", type=str, help="The URL of the NPO series page.")
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
stream_url_response = get_stream_url(args.url)
|
|
|
|
|
|
|
|
# Print the final result
|
|
|
|
if isinstance(stream_url_response, tuple):
|
|
|
|
print(f"Stream URL: {stream_url_response[0]}")
|
|
|
|
print(f"DRM Token: {stream_url_response[1]}")
|
|
|
|
else:
|
|
|
|
print(stream_url_response)
|