add webm seafile
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Roy Olav Purser 2022-05-09 00:50:46 +02:00
parent 9f0078c465
commit d5be542712
Signed by: roypur
GPG Key ID: E14D26A036F21656

View File

@ -294,8 +294,11 @@ class SeafileRunner(StreamProvider):
else:
stream_data["title"] = json_data.get("filePath")
stream_data["upstream"] = json_data.get("rawPath")
if json_data.get("filePath").lower().endswith(".mp4"):
ftype = json_data.get("filePath").lower()
if ftype.endswith(".mp4"):
stream_data["proxy_ctype"] = "video/mp4"
elif ftype.endswith(".webm"):
stream_data["proxy_ctype"] = "video/webm"
return StreamData(**stream_data)