您可以执行相同的操作来获取加密密钥等。 const keyUrls = extractKeyUrls(m3u8FileContent); if (keyUrls.length > 0) { allRequests.push(...keyUrls.map(async (keyUrl) => { return downloadFile(urlToDownload, keyOutputPath); <-- just an example })); } 获取子 m3u8 文件后,您可以执行任何操...