force seafile content-type

This commit is contained in:
Roy Olav Purser 2021-11-18 21:26:37 +01:00
parent dde0318e48
commit 4bd5ed6ccc
Signed by: roypur
GPG Key ID: E14D26A036F21656

View File

@ -235,7 +235,9 @@ class SeafileRunner(StreamProvider):
self.logger.info("%s <%s>", e, self.upstream) self.logger.info("%s <%s>", e, self.upstream)
else: else:
stream_data["title"] = json_data.get("filePath") stream_data["title"] = json_data.get("filePath")
stream_data["upstream"] = json_data.get("rawPath") stream_data["upstream"] = json_data.get("rawPath")
if json_data.get("filePath").lower().endswith(".mp4"):
stream_data["ctype"] = "video/mp4"
return StreamData(**stream_data) return StreamData(**stream_data)
class MetaProvider(StreamProvider): class MetaProvider(StreamProvider):