Commit 2c639169 by alexliyu7352 Committed by GitHub

http-ts拉流新增支持mime类型(#1475)

ts切片有些mime头并不是只有这两种,
比如youtube的ts切片头就是application/octet-stream
parent 93261fe3
...@@ -26,7 +26,7 @@ void HttpTSPlayer::onResponseHeader(const string &status, const HttpClient::Http ...@@ -26,7 +26,7 @@ void HttpTSPlayer::onResponseHeader(const string &status, const HttpClient::Http
} }
auto content_type = strToLower(const_cast<HttpClient::HttpHeader &>(header)["Content-Type"]); auto content_type = strToLower(const_cast<HttpClient::HttpHeader &>(header)["Content-Type"]);
if (content_type.find("video/mp2t") != 0 && content_type.find("video/mpeg") != 0) { if (content_type.find("video/mp2t") != 0 && content_type.find("video/mpeg") != 0 && content_type.find("application/octet-stream") != 0) {
WarnL << "may not a mpeg-ts video: " << content_type << ", url: " << getUrl(); WarnL << "may not a mpeg-ts video: " << content_type << ", url: " << getUrl();
} }
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论