[mythtv-users] DCT-6200 w/ FireWire -- Looking for Input..

Chris Pinkham cpinkham at bc2va.org
Thu Mar 31 04:39:35 UTC 2005


> The resolution of the video depends on the provider, I think.  For me, in
> the SF Bay Area using Comcast, I'm getting 1940x1400 (1080i or what is
> that?) which comes to between 6.3 and 7.3 Gb per hour.  My hope is that
> sometime soon the transcoding options will allow resize for sizes greater
> than 720x480 so that I can transcode this to 720p.

Try the attached patch.  This will let you set the size greater than
720x480 on the transcoding profiles.  I'm not 100% sure what the max
size the encoding libraries can handle though, so you might run into
limits elsewhere.

Let me know how it works out and if things work OK, we can get a
similar mod into CVS.

-- 

Chris

-------------- next part --------------
Index: libs/libmythtv/recordingprofile.cpp
===================================================================
RCS file: /var/lib/mythcvs/mythtv/libs/libmythtv/recordingprofile.cpp,v
retrieving revision 1.63
diff -u -r1.63 recordingprofile.cpp
--- libs/libmythtv/recordingprofile.cpp	19 Mar 2005 06:51:41 -0000	1.63
+++ libs/libmythtv/recordingprofile.cpp	31 Mar 2005 03:28:48 -0000
@@ -672,7 +672,11 @@
 
         QString fullsize, halfsize;
         int maxwidth, maxheight;
-        if (tvFormat.lower() == "ntsc" || tvFormat.lower() == "ntsc-jp") {
+        if (profName.left(11) == "Transcoders") {
+            maxwidth = 1920;
+            maxheight = 1088;
+        } else if ((tvFormat.lower() == "ntsc") ||
+                   (tvFormat.lower() == "ntsc-jp")) {
             maxwidth = 720;
             maxheight = 480;
         } else if (tvFormat.lower() == "atsc") {


More information about the mythtv-users mailing list