X-Git-Url: https://git.rvb.name/vpproxy.git/blobdiff_plain/8960711387d2b34c7f8b8d8a0cc036e52c6c6f06..0290989946a23f98c84016c05727f72d3a2c2073:/vphttp.py diff --git a/vphttp.py b/vphttp.py index 0a6ae43..155db57 100644 --- a/vphttp.py +++ b/vphttp.py @@ -165,7 +165,7 @@ class HTTPHandler(BaseHTTPServer.BaseHTTPRequestHandler): self.reqtype = self.splittedpath[1].lower() # If first parameter is 'pid' or 'torrent' or it should be handled # by plugin - if not (self.reqtype in ('get','mp4','ogg') or self.reqtype in VPStuff.pluginshandlers): + if not (self.reqtype in ('get','mp4','ogg','ogv') or self.reqtype in VPStuff.pluginshandlers): self.dieWithError(400) # 400 Bad Request return except IndexError: @@ -237,7 +237,7 @@ class HTTPHandler(BaseHTTPServer.BaseHTTPRequestHandler): "Sending fake headers for " + useragent) self.send_response(200) self.send_header('Cache-Control','no-cache'); - if self.reqtype=="ogg": + if self.reqtype in ("ogg","ogv"): self.send_header("Content-Type", "video/ogg") else: self.send_header("Content-Type", "video/mpeg")