From d882a6ccdbadc10aed1ef02a4eda1d01c68d52fb Mon Sep 17 00:00:00 2001 From: Stefan Bethke Date: Thu, 13 Apr 2017 23:38:32 +0200 Subject: [PATCH] Switch downloads to Transport Stream (TS). The Roamio can't package H.264 recordings in Program Stream (PS) format. --- tivomirror | 1 + 1 file changed, 1 insertion(+) diff --git a/tivomirror b/tivomirror index f71e2e6..bca02db 100755 --- a/tivomirror +++ b/tivomirror @@ -154,6 +154,7 @@ class TivoItem: self.time = int(d, base=0) self.datestr = self.date.strftime("%Y%m%d-%H%M") self.url = getTagText(i, "Url") + self.url = self.url + "&Format=video/x-tivo-mpeg-ts" self.inprogress = getTagText(i, "InProgress") self.available = getTagText(i, "Available") self.sourcesize = int(getTagText(i, "SourceSize"))