From: James Bunton Date: Tue, 4 Aug 2015 22:14:41 +0000 (+1000) Subject: Fixed SBS muxing X-Git-Url: https://code.delx.au/webdl/commitdiff_plain/e1287f89323d8870f26cbb533cbdf1a938e8cbed?hp=e2d4ba71ea894498d73964475a4b9d67c7a43df7 Fixed SBS muxing --- diff --git a/sbs.py b/sbs.py index 664fe9f..8014767 100644 --- a/sbs.py +++ b/sbs.py @@ -29,7 +29,7 @@ class SbsVideoNode(Node): video_url = video.attrib["src"] if not video_url: raise Exception("Unsupported video %s: %s" % (self.video_id, self.title)) - filename = self.title + ".mp4" + filename = self.title + ".ts" return download_hls(filename, video_url) def get_player_params(self, doc):