diff --git a/modules/demux/hls/playlist/Parser.cpp b/modules/demux/hls/playlist/Parser.cpp index c4b1f26682c0b9dc70e2613ca15ecc7b8bfead40..83eddb70a5d954b1eda01a91a437f8c8998f45be 100644 --- a/modules/demux/hls/playlist/Parser.cpp +++ b/modules/demux/hls/playlist/Parser.cpp @@ -171,7 +171,7 @@ void M3U8Parser::fillRepresentationFromMediainfo(const AttributesTag *mediatag, rep->setChannelsCount(std::atoi(channelsAttr->quotedString().c_str())); } - if(type != "AUDIO" && type != "VIDEO") + if(type != "AUDIO" && type != "VIDEO" && type != "SUBTITLES") { rep->streamFormat = StreamFormat(StreamFormat::Type::Unsupported); }