Update iptv-cv2-check.py

This commit is contained in:
frxz751113
2024-08-12 07:46:46 +08:00
committed by GitHub
parent 86620b257e
commit 3b4f1d24e2
+1 -1
View File
@@ -203,7 +203,7 @@ def filter_lines(input_file, output_file):
for line in lines: for line in lines:
#if ('hls' in line and 'm3u' in line) or ('tsfile' in line and 'm3u' in line): #行中包含m3u的同时还要包含hls或者tsfile #if ('hls' in line and 'm3u' in line) or ('tsfile' in line and 'm3u' in line): #行中包含m3u的同时还要包含hls或者tsfile
if ',' in line: #仅提取 if ',' in line: #仅提取
if 'udp' not in line and 'rtp' not in line and 'AAAA' not in line and 'AAA' not in line: # 排除组播地址及央卫 if 'udp' not in line and 'rtp' not in line and 'AAAA' not in line and '61.157' not in line: # 排除组播地址及央卫
filtered_lines.append(line) filtered_lines.append(line)
with open(output_file, 'w', encoding='utf-8') as output_file: with open(output_file, 'w', encoding='utf-8') as output_file:
output_file.writelines(filtered_lines) output_file.writelines(filtered_lines)