latvro 发表于 2024-12-31 08:18:28

感谢您的分享

Wheiss 发表于 2024-12-31 08:19:57

关于本源码的问题请在本帖回复或点评,回放的问题请在原帖或我专门开的帖提问。私聊不会回复。

yf1197565391 发表于 2024-12-31 08:24:13

百度AI<?php // 设置允许的Referer $allowed_referer = 'https://liveplus.lzr.com.cn';// 获取当前请求的Referer头部 $referer = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '';// 检查Referer是否匹配 if ($referer !== $allowed_referer) {   // Referer不匹配,返回403 Forbidden   header('HTTP/1.1 403 Forbidden');   echo 'Access Denied. Incorrect referer.';   exit; }// 获取请求的文件路径 $file_path = '/path/to/your/m3u8/files/HD/live.m3u8'; // 请替换为实际的文件路径// 检查文件是否存在 if (!file_exists($file_path)) {   // 文件不存在,返回404 Not Found   header('HTTP/1.1 404 Not Found');   echo 'File not found.';   exit; }// 设置正确的Content-Type头部 header('Content-Type: application/vnd.apple.mpegurl'); // 也可以考虑使用更通用的 'Content-Type: application/octet-stream'// 读取文件内容并输出 readfile($file_path);// 对于ts流文件,你可以使用类似的方式处理,只是文件路径和Content-Type可能会有所不同 // 例如,如果你知道ts文件的路径,你可以这样处理: /* $ts_file_path = '/path/to/your/ts/files/somefile.ts'; if (file_exists($ts_file_path)) {   header('Content-Type: video/mp2t');   readfile($ts_file_path); } else {   header('HTTP/1.1 404 Not Found');   echo 'TS file not found.'; } */ ?>

yf1197565391 发表于 2024-12-31 08:26:07

哪个AI比较准确

everinlove 发表于 2024-12-31 08:31:51

看看这个如何

love599 发表于 2024-12-31 08:40:22

看看是什么

tysoftware 发表于 2024-12-31 08:51:59

学习一下      

Wheiss 发表于 2024-12-31 09:19:12

yf1197565391 发表于 2024-12-31 08:24
百度AI

用我上海教育那个改就可以,那个也是静态+ts代理,请求的链接、UA和referer换下就可以了。
看不懂就让AI根据我那个改,没有参考源码或者你不会问的情况下AI会乱回复的。因为chatGPT不是完全免费的,用起来比较麻烦,我比较常用的是豆包,其它的只是用来参考。

709746459 发表于 2024-12-31 09:33:52

研究下如何使用

gmcpp 发表于 2024-12-31 09:45:00

看看,谢谢

jx2024 发表于 2024-12-31 10:26:11

谢谢楼主分享,试试看~~~~~~~~~

wada432600 发表于 2024-12-31 10:49:52

看看是什么
页: 1 2 3 [4] 5 6 7 8 9
查看完整版本: 江苏无锡博报PHP源码