orestonce / m3u8d

m3u8视频下载工具, 提供windows/macos图形界面, 下载后自动将ts文件合并、转换格式为mp4
MIT License
690 stars 86 forks source link

添加自定义headers支持 #37

Closed x2009again closed 1 month ago

orestonce commented 1 month ago
orestonce commented 1 month ago

curl模式支持header有以下好处

  1. 可以在命令行直接使用,不单独在qt的ui上实现
  2. 可以直接从chrome上原样复制网络请求
  3. 支持在curl命令上设置代理、设置不安全的https请求等
x2009again commented 1 month ago

我知道curl模式支持header,但是有个问题:curl只支持一个header,所以我才增加的多header,以#分割,而且curl用起来没有那么方便。

orestonce commented 1 month ago

curl的header是支持多个的

curl "https://hls.video.net/0d_1.m3u8" \
 -H 'Cookie2: CONSENT=No' \
 -H 'Cookie: CONSENT=YES'