Results 1 to 10 of 10

Thread: standard definition crt television?

  1. #1
    Join Date
    Nov 2008
    Posts
    16

    Default standard definition crt television?

    so...i've inherited a rather large old-school crt television with an s-video input.

    the video card on my intended boxee computer has s-video out. it's a linux machine with an ati radeon 9600xt. does anyone here have any experience with running boxee on a standard definition tv? will it look at all usable, or even work at all?

    thanks!

  2. #2
    Join Date
    Aug 2008
    Location
    Cleveland, OH
    Posts
    3,712

    Default

    i run it on an older 32" crt in my bedroom... works fine, other than some hulu goofiness:
    http://forum.boxee.tv/showpost.php?p=10278&postcount=18
    personal: boxee | twitter | boxee hq
    boxee: boxee chat | boxee wiki | boxee plugins

    i run boxee 0.9.20 on: ubuntu 9.10, windows xp sp3 (virtual machine), windows 7 and a neuros link hacked to all hell.

    what super powers does a 'super mod' have? the 'super ban'... that, and laser vision.

  3. #3

    Default

    Quote Originally Posted by agentlame View Post
    i run it on an older 32" crt in my bedroom... works fine, other than some hulu goofiness:
    http://forum.boxee.tv/showpost.php?p=10278&postcount=18
    What resolution are you running at? I find the fonts are kind of difficult to read on my 32" CRT (flat screen).

  4. #4
    Join Date
    Aug 2008
    Location
    Cleveland, OH
    Posts
    3,712

    Default

    1024x768... don't get me wrong, boxee isn't 100% legible... but, i've never had a media center app that was, on that tv.

    but in regards to how it works/scales/looks... it's no worse than any other media center.
    personal: boxee | twitter | boxee hq
    boxee: boxee chat | boxee wiki | boxee plugins

    i run boxee 0.9.20 on: ubuntu 9.10, windows xp sp3 (virtual machine), windows 7 and a neuros link hacked to all hell.

    what super powers does a 'super mod' have? the 'super ban'... that, and laser vision.

  5. #5

    Default

    Quote Originally Posted by agentlame View Post
    1024x768... don't get me wrong, boxee isn't 100% legible... but, i've never had a media center app that was, on that tv.

    but in regards to how it works/scales/looks... it's no worse than any other media center.
    Ya, I just happened to come from MythTV which actually looked pretty decent on my TV - the fonts were a good size to be legible.

    Oh well, better case for me to convince my fiancee we need a new tv

    Dave

  6. #6
    Join Date
    Jan 2009
    Posts
    20

    Default

    I have the default 1024x768 resolution on my SD 29" CRT via composite video cable and the fonts are pretty small. Is there a way to increase the minimum font size that Boxee uses? I've tried lower resolutions but it doesn't help.
    Also, since I installed Boxee I get a thin horizontal line of static near the bottom of my tv screen. Calibrating the video doesn't help. Does anyone have any tips?

  7. #7
    Join Date
    Dec 2008
    Posts
    8

    Default

    There is a fonts.xml file in the boxee directory with some values listed and you could just increase the number. Although you have to guess and check to find out what you just changed.

  8. #8
    Join Date
    Jan 2009
    Posts
    20

    Default

    Can someone confirm that this is the right way to do it? I looked in the font.xml file in the 720p directory and it only contains fonts down to size 14. I searched for "font" within the files in the rest of the 720p directory and there are references to font12 so there must be something else going on. Just want to be sure before I start messing with stuff.

  9. #9
    Join Date
    Dec 2008
    Posts
    2

    Default

    Yeah, the font sizes throughout the interface when seen on a 32" CRT are too small from more than about 5' away. Something like the "Use bigger fonts" option from the Mediastream skin in XBMC would be nice.

  10. #10
    Join Date
    Mar 2009
    Posts
    7

    Default

    Here is a simple perl script that will increase all of the fonts by a X units.

    Code:
    #!/usr/bin/perl
    
    #parse the command line
    if($#ARGV > -1){
     $factor = $ARGV[0];
    } else {
     $factor = 2;
    }
    
    #open the file
    open FILE, "Font.xml";
    
    while(<FILE>){
     if($_ =~ /(.*?)<size>(\d+)<\/size>/i){
       print $1,"<size>",($2+$factor),"</size>\n";
     } else {
       print $_;
     }
    }
    save that in your skin/Boxee Skin NG/720p folder.
    It will output the new file to stdout.
    Here is how I used it (I called the file growfonts.pl):

    Code:
    skin/Boxee Skin NG/720p# perl growfonts.pl > Font2.xml
    skin/Boxee Skin NG/720p# mv Font.xml Font.xml.bak
    skin/Boxee Skin NG/720p# mv Font2.xml Font.xml
    Of course, you can just output it directly to Font.xml if you don't care about overwriting it (or have already backed it up)

    If you want to increase the fonts by more something different than 2, just specify it on the command line:

    Code:
    skin/Boxee Skin NG/720p# perl growfonts.pl 4 > Font2.xml
    If you specify a negative number, it will decrease the font size.

    While I have used this on my machine for both versions 0.9.9.5324 and 0.9.10.5534 without any issue, I take no responsibilty if you screw up your Boxee installation, server, house, job, marriage, or life in general by using this script.

Similar Threads

  1. Live TV - Standard Definition
    By prodriguezii in forum Boxee Box help
    Replies: 25
    Last Post: January 26th, 2012, 04:31 PM
  2. Boxee Box and CRT television...
    By ribrob in forum Boxee Box help
    Replies: 7
    Last Post: November 21st, 2010, 08:48 PM
  3. Is it possible to use Boxee with a Standard-Definition-PAL-TV
    By Luke23ae in forum general boxee help
    Replies: 1
    Last Post: June 3rd, 2010, 11:12 AM
  4. Replies: 0
    Last Post: May 17th, 2010, 12:53 PM
  5. Help--CRT Screen Flashes Green, Unwatchable!
    By alertnerd in forum general boxee help
    Replies: 0
    Last Post: April 6th, 2010, 08:51 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •