M3U8Manger
M3U8Manger copied to clipboard
获取特殊的m3u8的地址,会出现停止运行
m3u8地址:http://223.82.250.72/ysten-business/live/cctv-1/1.m3u8
错误位置:MUtils.java 第53行
建议:将此处的
if (line.endsWith(",")) { line = line.substring(0, line.length() - 1); }
改为
if (line.contains(",")){ line=line.substring(0,line.indexOf(",")); }