All checks were successful
📺 Generate M3U Playlist / build (push) Successful in 1m11s
610 lines
No EOL
23 KiB
Python
610 lines
No EOL
23 KiB
Python
import re
|
|
import os
|
|
import json
|
|
from datetime import datetime
|
|
|
|
# --- Simple Configuration ---
|
|
CHANNELS_FILE = 'channels.txt'
|
|
PLAYLIST_FILE = 'playlist.m3u'
|
|
IMPORT_FILE = 'bulk_import.m3u'
|
|
LOG_FILE = 'playlist_update.log'
|
|
|
|
# Config files (optional)
|
|
SETTINGS_FILE = 'config/settings.json'
|
|
GROUP_OVERRIDES_FILE = 'config/group_overrides.json'
|
|
|
|
def log_message(message, level="INFO"):
|
|
"""Logs messages to file and prints them."""
|
|
timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
|
formatted_message = f"[{timestamp}] {level}: {message}"
|
|
|
|
try:
|
|
with open(LOG_FILE, 'a', encoding='utf-8') as f:
|
|
f.write(formatted_message + "\n")
|
|
except Exception as e:
|
|
print(f"ERROR: Could not write to log: {e}")
|
|
|
|
print(formatted_message)
|
|
|
|
def load_settings():
|
|
"""Load settings with defaults."""
|
|
default_settings = {
|
|
"remove_duplicates": True,
|
|
"sort_channels": True,
|
|
"backup_before_import": True,
|
|
"auto_cleanup_import": True,
|
|
"auto_detect_country": True
|
|
}
|
|
|
|
if os.path.exists(SETTINGS_FILE):
|
|
try:
|
|
with open(SETTINGS_FILE, 'r', encoding='utf-8') as f:
|
|
settings = json.load(f)
|
|
return {**default_settings, **settings}
|
|
except Exception as e:
|
|
log_message(f"Could not load settings, using defaults: {e}", "WARNING")
|
|
|
|
return default_settings
|
|
|
|
def load_group_overrides():
|
|
"""Load group overrides."""
|
|
if os.path.exists(GROUP_OVERRIDES_FILE):
|
|
try:
|
|
with open(GROUP_OVERRIDES_FILE, 'r', encoding='utf-8') as f:
|
|
return json.load(f)
|
|
except Exception as e:
|
|
log_message(f"Could not load group overrides: {e}", "WARNING")
|
|
|
|
return {}
|
|
|
|
def detect_country_from_channel(channel_name, epg_id="", logo_url=""):
|
|
"""
|
|
Auto-detect country from channel information using cascading approach.
|
|
Returns the detected country group or 'Uncategorized' if no match found.
|
|
"""
|
|
|
|
# Normalize inputs for better matching
|
|
channel_lower = channel_name.lower().strip()
|
|
epg_lower = epg_id.lower().strip()
|
|
logo_lower = logo_url.lower().strip()
|
|
|
|
# 1. BROADCASTER NAMES (Most reliable)
|
|
broadcaster_country = {
|
|
# US Major Networks
|
|
"cbs": "🇺🇸 United States", "nbc": "🇺🇸 United States",
|
|
"abc": "🇺🇸 United States", "fox": "🇺🇸 United States",
|
|
"espn": "🇺🇸 United States", "cnn": "🇺🇸 United States",
|
|
"hbo": "🇺🇸 United States", "mtv": "🇺🇸 United States",
|
|
"discovery": "🇺🇸 United States", "cartoon network": "🇺🇸 United States",
|
|
"showtime": "🇺🇸 United States", "starz": "🇺🇸 United States",
|
|
"tnt": "🇺🇸 United States", "tbs": "🇺🇸 United States",
|
|
|
|
# UK Networks
|
|
"bbc": "🇬🇧 United Kingdom", "itv": "🇬🇧 United Kingdom",
|
|
"channel 4": "🇬🇧 United Kingdom", "sky": "🇬🇧 United Kingdom",
|
|
"e4": "🇬🇧 United Kingdom", "film4": "🇬🇧 United Kingdom",
|
|
"more4": "🇬🇧 United Kingdom", "dave": "🇬🇧 United Kingdom",
|
|
|
|
# Canadian Networks
|
|
"cbc": "🇨🇦 Canada", "ctv": "🇨🇦 Canada", "global": "🇨🇦 Canada",
|
|
"tvo": "🇨🇦 Canada", "aptn": "🇨🇦 Canada",
|
|
|
|
# German Networks
|
|
"ard": "🇩🇪 Germany", "zdf": "🇩🇪 Germany", "rtl": "🇩🇪 Germany",
|
|
"sat.1": "🇩🇪 Germany", "pro7": "🇩🇪 Germany", "vox": "🇩🇪 Germany",
|
|
"kabel": "🇩🇪 Germany", "n24": "🇩🇪 Germany",
|
|
|
|
# French Networks
|
|
"tf1": "🇫🇷 France", "france 2": "🇫🇷 France", "m6": "🇫🇷 France",
|
|
"canal+": "🇫🇷 France", "arte": "🇫🇷 France",
|
|
|
|
# Spanish Networks
|
|
"tve": "🇪🇸 Spain", "antena 3": "🇪🇸 Spain", "telecinco": "🇪🇸 Spain",
|
|
"cuatro": "🇪🇸 Spain", "la sexta": "🇪🇸 Spain",
|
|
|
|
# Italian Networks
|
|
"rai": "🇮🇹 Italy", "mediaset": "🇮🇹 Italy", "canale 5": "🇮🇹 Italy",
|
|
"italia 1": "🇮🇹 Italy", "rete 4": "🇮🇹 Italy",
|
|
|
|
# Other Countries
|
|
"globo": "🇧🇷 Brazil", "band": "🇧🇷 Brazil", "sbt": "🇧🇷 Brazil",
|
|
"televisa": "🇲🇽 Mexico", "tv azteca": "🇲🇽 Mexico",
|
|
"al jazeera": "🇸🇦 Arabic", "mbc": "🇸🇦 Arabic", "lbc": "🇸🇦 Arabic",
|
|
"rt": "🇷🇺 Russia", "channel one": "🇷🇺 Russia",
|
|
"cctv": "🇨🇳 China", "phoenix": "🇨🇳 China",
|
|
"nhk": "🇯🇵 Japan", "fuji": "🇯🇵 Japan",
|
|
"kbs": "🇰🇷 South Korea", "sbs": "🇰🇷 South Korea", "mbc": "🇰🇷 South Korea",
|
|
"abc au": "🇦🇺 Australia", "seven": "🇦🇺 Australia", "nine": "🇦🇺 Australia",
|
|
"npo": "🇳🇱 Netherlands", "rtl nl": "🇳🇱 Netherlands"
|
|
}
|
|
|
|
# Check for exact broadcaster matches
|
|
for broadcaster, country in broadcaster_country.items():
|
|
if broadcaster in channel_lower:
|
|
return country
|
|
|
|
# 2. COUNTRY NAME PATTERNS (Very reliable)
|
|
country_patterns = {
|
|
"🇺🇸 United States": [
|
|
"usa", "united states", "america", "american", " us ", "us:", "(us)", "us hd"
|
|
],
|
|
"🇬🇧 United Kingdom": [
|
|
" uk ", "uk:", "(uk)", "united kingdom", "britain", "british", "england", "english"
|
|
],
|
|
"🇨🇦 Canada": [
|
|
"canada", "canadian", " ca ", "ca:", "(ca)"
|
|
],
|
|
"🇩🇪 Germany": [
|
|
"germany", "german", "deutschland", "deutsch", " de ", "de:", "(de)"
|
|
],
|
|
"🇫🇷 France": [
|
|
"france", "french", "français", " fr ", "fr:", "(fr)"
|
|
],
|
|
"🇪🇸 Spain": [
|
|
"spain", "spanish", "españa", "español", " es ", "es:", "(es)"
|
|
],
|
|
"🇮🇹 Italy": [
|
|
"italy", "italian", "italia", "italiano", " it ", "it:", "(it)"
|
|
],
|
|
"🇧🇷 Brazil": [
|
|
"brazil", "brazilian", "brasil", "português", " br ", "br:", "(br)"
|
|
],
|
|
"🇲🇽 Mexico": [
|
|
"mexico", "mexican", "méxico", " mx ", "mx:", "(mx)"
|
|
],
|
|
"🇦🇺 Australia": [
|
|
"australia", "australian", "aussie", " au ", "au:", "(au)"
|
|
],
|
|
"🇳🇱 Netherlands": [
|
|
"netherlands", "dutch", "holland", "nederland", " nl ", "nl:", "(nl)"
|
|
],
|
|
"🇷🇺 Russia": [
|
|
"russia", "russian", "россия", " ru ", "ru:", "(ru)"
|
|
],
|
|
"🇨🇳 China": [
|
|
"china", "chinese", "中国", " cn ", "cn:", "(cn)"
|
|
],
|
|
"🇯🇵 Japan": [
|
|
"japan", "japanese", "日本", " jp ", "jp:", "(jp)"
|
|
],
|
|
"🇰🇷 South Korea": [
|
|
"korea", "korean", "한국", " kr ", "kr:", "(kr)", "south korea"
|
|
],
|
|
"🇸🇦 Arabic": [
|
|
"arabic", "arab", "middle east", "العربية", "al ", "aljazeera"
|
|
],
|
|
"🇮🇳 India": [
|
|
"india", "indian", "hindi", "bollywood", "zee", "star plus"
|
|
],
|
|
"🇵🇹 Portugal": [
|
|
"portugal", "portuguese", " pt ", "pt:", "(pt)"
|
|
],
|
|
"🇹🇷 Turkey": [
|
|
"turkey", "turkish", "türkiye", " tr ", "tr:", "(tr)"
|
|
]
|
|
}
|
|
|
|
# Check channel name for country patterns
|
|
for country, patterns in country_patterns.items():
|
|
for pattern in patterns:
|
|
if pattern in channel_lower:
|
|
return country
|
|
|
|
# 3. EPG ID ANALYSIS (Good for country codes)
|
|
epg_country_map = {
|
|
"🇺🇸 United States": [".us", "usa.", ".com"],
|
|
"🇬🇧 United Kingdom": [".uk", ".gb", "british"],
|
|
"🇨🇦 Canada": [".ca", "canada."],
|
|
"🇩🇪 Germany": [".de", "german."],
|
|
"🇫🇷 France": [".fr", "france."],
|
|
"🇪🇸 Spain": [".es", "spain."],
|
|
"🇮🇹 Italy": [".it", "italy."],
|
|
"🇧🇷 Brazil": [".br", "brazil."],
|
|
"🇲🇽 Mexico": [".mx", "mexico."],
|
|
"🇦🇺 Australia": [".au", "australia."],
|
|
"🇳🇱 Netherlands": [".nl", "netherlands."],
|
|
"🇷🇺 Russia": [".ru", "russia."],
|
|
"🇨🇳 China": [".cn", "china."],
|
|
"🇯🇵 Japan": [".jp", "japan."],
|
|
"🇰🇷 South Korea": [".kr", "korea."],
|
|
"🇮🇳 India": [".in", "india."],
|
|
"🇵🇹 Portugal": [".pt", "portugal."],
|
|
"🇹🇷 Turkey": [".tr", "turkey."]
|
|
}
|
|
|
|
# Check EPG ID for country indicators
|
|
if epg_id:
|
|
for country, patterns in epg_country_map.items():
|
|
for pattern in patterns:
|
|
if pattern in epg_lower:
|
|
return country
|
|
|
|
# 4. LOGO URL ANALYSIS (Sometimes helpful)
|
|
if logo_url:
|
|
for country, patterns in epg_country_map.items():
|
|
for pattern in patterns:
|
|
if pattern in logo_lower:
|
|
return country
|
|
|
|
# If no match found, return Uncategorized
|
|
return "Uncategorized"
|
|
|
|
def apply_auto_country_detection(channel, group_overrides, settings):
|
|
"""
|
|
Enhanced version of apply_group_overrides that includes auto-detection.
|
|
"""
|
|
stream_name = channel.get('Stream name', '')
|
|
epg_id = channel.get('EPG id', '')
|
|
logo_url = channel.get('Logo', '')
|
|
current_group = channel.get('Group', 'Uncategorized')
|
|
|
|
# First try manual overrides (highest priority)
|
|
stream_name_lower = stream_name.lower()
|
|
for key, new_group in group_overrides.items():
|
|
if key.lower() in stream_name_lower:
|
|
channel['Group'] = new_group
|
|
log_message(f"Manual override: '{stream_name}' → {new_group}", "DEBUG")
|
|
return channel
|
|
|
|
# If auto-detection is enabled, try it
|
|
if settings.get('auto_detect_country', True):
|
|
detected_country = detect_country_from_channel(stream_name, epg_id, logo_url)
|
|
|
|
# Only override if we detected something specific (not "Uncategorized")
|
|
if detected_country != "Uncategorized":
|
|
channel['Group'] = detected_country
|
|
log_message(f"Auto-detected: '{stream_name}' → {detected_country}", "INFO")
|
|
else:
|
|
# Keep existing group or set to Uncategorized
|
|
if current_group in ['', 'Unknown', 'Other']:
|
|
channel['Group'] = "Uncategorized"
|
|
else:
|
|
# Auto-detection disabled, use manual overrides only
|
|
if current_group in ['', 'Unknown', 'Other']:
|
|
channel['Group'] = "Uncategorized"
|
|
|
|
return channel
|
|
|
|
def parse_channel_block(block):
|
|
"""Parse a channel block from channels.txt."""
|
|
channel_data = {}
|
|
lines = block.strip().split('\n')
|
|
|
|
for line in lines:
|
|
if '=' in line:
|
|
key, value = line.split('=', 1)
|
|
key = key.strip()
|
|
value = value.strip()
|
|
channel_data[key] = value
|
|
|
|
return channel_data
|
|
|
|
def parse_m3u_entry(extinf_line, url_line):
|
|
"""Parse M3U entry."""
|
|
channel = {}
|
|
|
|
# Extract attributes
|
|
tvg_id_match = re.search(r'tvg-id="([^"]*)"', extinf_line)
|
|
tvg_logo_match = re.search(r'tvg-logo="([^"]*)"', extinf_line)
|
|
group_title_match = re.search(r'group-title="([^"]*)"', extinf_line)
|
|
tvg_name_match = re.search(r'tvg-name="([^"]*)"', extinf_line)
|
|
|
|
channel['EPG id'] = tvg_id_match.group(1) if tvg_id_match else ''
|
|
channel['Logo'] = tvg_logo_match.group(1) if tvg_logo_match else ''
|
|
channel['Group'] = group_title_match.group(1) if group_title_match else 'Uncategorized'
|
|
channel['TVG Name'] = tvg_name_match.group(1) if tvg_name_match else ''
|
|
|
|
# Stream name after the last comma
|
|
stream_name_match = re.search(r',(.+)$', extinf_line)
|
|
channel['Stream name'] = stream_name_match.group(1).strip() if stream_name_match else 'Unknown Channel'
|
|
channel['Stream URL'] = url_line.strip()
|
|
|
|
return channel
|
|
|
|
def convert_to_channels_txt_block(channel_data):
|
|
"""Convert to channels.txt format."""
|
|
block = []
|
|
block.append(f"Group = {channel_data.get('Group', 'Uncategorized')}")
|
|
block.append(f"Stream name = {channel_data.get('Stream name', 'Unknown Channel')}")
|
|
block.append(f"Logo = {channel_data.get('Logo', '')}")
|
|
block.append(f"EPG id = {channel_data.get('EPG id', '')}")
|
|
block.append(f"Stream URL = {channel_data.get('Stream URL', '')}")
|
|
return "\n".join(block)
|
|
|
|
def get_channel_signature(channel):
|
|
"""Create unique signature for duplicate detection."""
|
|
stream_name = channel.get('Stream name', '').strip().lower()
|
|
stream_url = channel.get('Stream URL', '').strip().lower()
|
|
|
|
# Clean name
|
|
stream_name_clean = re.sub(r'\s+', ' ', stream_name)
|
|
stream_name_clean = re.sub(r'[^\w\s]', '', stream_name_clean)
|
|
|
|
return f"{stream_name_clean}|{stream_url}"
|
|
|
|
def remove_duplicates(channels, settings):
|
|
"""Remove duplicate channels."""
|
|
if not settings.get('remove_duplicates', True):
|
|
log_message("Duplicate removal disabled", "INFO")
|
|
return channels
|
|
|
|
seen_signatures = set()
|
|
unique_channels = []
|
|
duplicate_count = 0
|
|
|
|
for channel in channels:
|
|
signature = get_channel_signature(channel)
|
|
|
|
if signature not in seen_signatures:
|
|
seen_signatures.add(signature)
|
|
unique_channels.append(channel)
|
|
else:
|
|
duplicate_count += 1
|
|
|
|
if duplicate_count > 0:
|
|
log_message(f"Removed {duplicate_count} duplicate channels", "INFO")
|
|
else:
|
|
log_message("No duplicates found", "INFO")
|
|
|
|
return unique_channels
|
|
|
|
def update_existing_channels_with_country_detection():
|
|
"""Re-process existing channels.txt to apply country detection to old channels."""
|
|
if not os.path.exists(CHANNELS_FILE):
|
|
return
|
|
|
|
settings = load_settings()
|
|
group_overrides = load_group_overrides()
|
|
|
|
if not settings.get('auto_detect_country', True):
|
|
return
|
|
|
|
log_message("Re-detecting countries for existing channels...", "INFO")
|
|
|
|
# Read existing channels
|
|
with open(CHANNELS_FILE, 'r', encoding='utf-8') as f:
|
|
content = f.read()
|
|
|
|
channel_blocks = re.split(r'\n\s*\n+', content.strip())
|
|
updated_channels = []
|
|
changes_made = 0
|
|
|
|
for block in channel_blocks:
|
|
if block.strip():
|
|
channel = parse_channel_block(block)
|
|
if channel:
|
|
old_group = channel.get('Group', 'Uncategorized')
|
|
|
|
# Apply auto-detection (this will update the group)
|
|
channel = apply_auto_country_detection(channel, group_overrides, settings)
|
|
|
|
new_group = channel.get('Group', 'Uncategorized')
|
|
|
|
# Log if group changed
|
|
if old_group != new_group:
|
|
changes_made += 1
|
|
log_message(f"Updated: '{channel.get('Stream name')}' from '{old_group}' to '{new_group}'", "INFO")
|
|
|
|
updated_channels.append(channel)
|
|
|
|
# If changes were made, rewrite the file
|
|
if changes_made > 0:
|
|
log_message(f"Updating {changes_made} channels with new country detection...", "INFO")
|
|
|
|
# Backup original
|
|
backup_name = f"{CHANNELS_FILE}.backup.{datetime.now().strftime('%Y%m%d_%H%M%S')}"
|
|
import shutil
|
|
shutil.copy2(CHANNELS_FILE, backup_name)
|
|
log_message(f"Created backup: {backup_name}", "INFO")
|
|
|
|
# Write updated channels
|
|
with open(CHANNELS_FILE, 'w', encoding='utf-8') as f:
|
|
for i, channel in enumerate(updated_channels):
|
|
if i > 0:
|
|
f.write("\n\n")
|
|
|
|
block_content = convert_to_channels_txt_block(channel)
|
|
f.write(block_content)
|
|
|
|
log_message(f"Successfully updated {changes_made} channels with country detection", "INFO")
|
|
else:
|
|
log_message("No channels needed country detection updates", "INFO")
|
|
|
|
def process_import():
|
|
"""Process bulk import file."""
|
|
settings = load_settings()
|
|
group_overrides = load_group_overrides()
|
|
|
|
if not os.path.exists(IMPORT_FILE):
|
|
log_message(f"No {IMPORT_FILE} found, skipping import", "INFO")
|
|
return []
|
|
|
|
log_message(f"Processing {IMPORT_FILE}...", "INFO")
|
|
|
|
imported_channels = []
|
|
|
|
try:
|
|
with open(IMPORT_FILE, 'r', encoding='utf-8') as f:
|
|
lines = f.readlines()
|
|
|
|
log_message(f"Found {len(lines)} lines in import file", "INFO")
|
|
|
|
i = 0
|
|
while i < len(lines):
|
|
line = lines[i].strip()
|
|
if line.startswith('#EXTINF:'):
|
|
if i + 1 < len(lines):
|
|
extinf_line = line
|
|
url_line = lines[i+1].strip()
|
|
|
|
if not url_line or url_line.startswith('#'):
|
|
i += 1
|
|
continue
|
|
|
|
channel_data = parse_m3u_entry(extinf_line, url_line)
|
|
channel_data = apply_auto_country_detection(channel_data, group_overrides, settings)
|
|
|
|
if channel_data.get('Stream name') and channel_data.get('Stream URL'):
|
|
imported_channels.append(channel_data)
|
|
|
|
i += 2
|
|
else:
|
|
i += 1
|
|
else:
|
|
i += 1
|
|
|
|
log_message(f"Parsed {len(imported_channels)} channels from import", "INFO")
|
|
|
|
# Remove duplicates from import
|
|
if imported_channels:
|
|
imported_channels = remove_duplicates(imported_channels, settings)
|
|
|
|
# Check existing channels
|
|
existing_channels = []
|
|
if os.path.exists(CHANNELS_FILE):
|
|
with open(CHANNELS_FILE, 'r', encoding='utf-8') as f:
|
|
content = f.read()
|
|
channel_blocks = re.split(r'\n\s*\n+', content.strip())
|
|
for block in channel_blocks:
|
|
if block.strip():
|
|
existing_channels.append(parse_channel_block(block))
|
|
|
|
existing_signatures = {get_channel_signature(ch) for ch in existing_channels}
|
|
new_channels = []
|
|
|
|
for channel in imported_channels:
|
|
if get_channel_signature(channel) not in existing_signatures:
|
|
new_channels.append(channel)
|
|
|
|
imported_channels = new_channels
|
|
log_message(f"Final import: {len(imported_channels)} new channels", "INFO")
|
|
|
|
# Write to channels.txt
|
|
if imported_channels:
|
|
lines_before = 0
|
|
if os.path.exists(CHANNELS_FILE):
|
|
with open(CHANNELS_FILE, 'r', encoding='utf-8') as f:
|
|
lines_before = len(f.readlines())
|
|
|
|
with open(CHANNELS_FILE, 'a', encoding='utf-8') as f:
|
|
for i, channel in enumerate(imported_channels):
|
|
if i > 0 or lines_before > 0:
|
|
f.write("\n\n")
|
|
|
|
block_content = convert_to_channels_txt_block(channel)
|
|
f.write(block_content)
|
|
|
|
log_message(f"Successfully imported {len(imported_channels)} channels", "INFO")
|
|
else:
|
|
log_message("No new channels to import", "INFO")
|
|
|
|
except Exception as e:
|
|
log_message(f"Error processing import: {e}", "ERROR")
|
|
return imported_channels
|
|
|
|
# Clean up import file
|
|
if settings.get('auto_cleanup_import', True):
|
|
try:
|
|
os.remove(IMPORT_FILE)
|
|
log_message(f"Cleaned up {IMPORT_FILE}", "INFO")
|
|
except Exception as e:
|
|
log_message(f"Could not remove {IMPORT_FILE}: {e}", "WARNING")
|
|
|
|
return imported_channels
|
|
|
|
def generate_playlist():
|
|
"""Main function."""
|
|
# Clear log
|
|
if os.path.exists(LOG_FILE):
|
|
open(LOG_FILE, 'w').close()
|
|
|
|
log_message("Starting playlist generation...", "INFO")
|
|
|
|
settings = load_settings()
|
|
group_overrides = load_group_overrides()
|
|
|
|
# FIRST: Update existing channels with country detection
|
|
update_existing_channels_with_country_detection()
|
|
|
|
# Process import
|
|
imported_channels = process_import()
|
|
log_message(f"Import returned {len(imported_channels)} channels", "INFO")
|
|
|
|
# Read channels.txt (now with updated countries)
|
|
if not os.path.exists(CHANNELS_FILE):
|
|
log_message(f"Error: {CHANNELS_FILE} not found", "ERROR")
|
|
return
|
|
|
|
with open(CHANNELS_FILE, 'r', encoding='utf-8') as f:
|
|
content = f.read()
|
|
|
|
# Parse channels
|
|
channel_blocks = re.split(r'\n\s*\n+', content.strip())
|
|
parsed_channels = []
|
|
|
|
for block in channel_blocks:
|
|
if block.strip():
|
|
channel = parse_channel_block(block)
|
|
if channel:
|
|
# Country detection already applied above, just load the channels
|
|
parsed_channels.append(channel)
|
|
|
|
log_message(f"Parsed {len(parsed_channels)} channels", "INFO")
|
|
|
|
# Remove duplicates
|
|
parsed_channels = remove_duplicates(parsed_channels, settings)
|
|
|
|
# Sort channels
|
|
if settings.get('sort_channels', True):
|
|
parsed_channels.sort(key=lambda x: (x.get('Group', '').lower(), x.get('Stream name', '').lower()))
|
|
log_message("Channels sorted by country and name", "INFO")
|
|
|
|
# Build M3U
|
|
m3u_lines = ["#EXTM3U"]
|
|
valid_channels = 0
|
|
|
|
# Count channels by country for stats
|
|
country_stats = {}
|
|
|
|
for channel in parsed_channels:
|
|
stream_name = channel.get('Stream name', '')
|
|
group_name = channel.get('Group', 'Uncategorized')
|
|
logo_url = channel.get('Logo', '')
|
|
epg_id = channel.get('EPG id', '')
|
|
stream_url = channel.get('Stream URL', '')
|
|
|
|
if not stream_name or not stream_url:
|
|
continue
|
|
|
|
extinf_attrs = [
|
|
f'tvg-id="{epg_id}"',
|
|
f'tvg-logo="{logo_url}"',
|
|
f'group-title="{group_name}"',
|
|
f'tvg-name="{stream_name}"'
|
|
]
|
|
|
|
extinf_line = f"#EXTINF:-1 {' '.join(extinf_attrs)},{stream_name}"
|
|
m3u_lines.append(extinf_line)
|
|
m3u_lines.append(stream_url)
|
|
valid_channels += 1
|
|
|
|
# Count by country
|
|
country_stats[group_name] = country_stats.get(group_name, 0) + 1
|
|
|
|
# Write M3U
|
|
try:
|
|
with open(PLAYLIST_FILE, 'w', encoding='utf-8') as f:
|
|
for line in m3u_lines:
|
|
f.write(line + '\n')
|
|
log_message(f"Generated {PLAYLIST_FILE} with {valid_channels} channels", "INFO")
|
|
|
|
# Log country statistics
|
|
log_message(f"Channels by country: {dict(sorted(country_stats.items(), key=lambda x: x[1], reverse=True))}", "INFO")
|
|
|
|
except Exception as e:
|
|
log_message(f"Error writing playlist: {e}", "ERROR")
|
|
|
|
log_message("Playlist generation complete", "INFO")
|
|
|
|
if __name__ == "__main__":
|
|
generate_playlist() |