Peter Schrammel wrote:
Some time ago I tried this fxd file:

<?xml version="1.0" ?>
<freevo>
  <copyright>
        Das Erste
  </copyright>
  <movie title="ARD">
    <cover-img>ard.jpg</cover-img>
    <video>
      <file id="f0">http://beast:3000/PS/20</file>
    </video>
  </movie>
</freevo>
and it worked (I have a vdr server running in the lan).

I too have VDR running with streamdev-server. You can have an fxd file with all of the streams listed and put that in your VIDEO_ITEMS:


VIDEO_ITEMS = [ ('Files', '/media/Video'),
                 '/media/Data/TV/vdr-streamdev.fxd', ]

I generated my fxd from my VDR channels.conf using a small script that I whipped up: http://cvs.sourceforge.net/viewcvs.py/freevo/freevo/WIP/RobShortt/genstreamdevfxd.py?rev=1.1&view=auto

You can edit the variables at the top to suit your needs. It will generate an fxd that looks like:

<?xml version="1.0" ?>
<freevo>
  <container title="Satellite TV" type="tv">

    <movie title="CBC-A">
      <video>
        <url id="20200">
          http://localhost:3080/PS/20200
          <player>mplayer</player>
        </url>
      </video>
      <info>
        <description>CBC-A</description>
      </info>
    </movie>

    <info>
      <description>Streaming satellite TV from VDR</description>
    </info>
  </container>
</freevo>

Only with a movie tag for each channel

I am also (yesterday and today actually) adding support for URL based channels in TV_CHANNELS and therefore your tv guide, just finished a url_record.py plugin as well. I don't think I'll be committing this stuff until after the 1.5 release though.

HTH,
-Rob


-------------------------------------------------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - digital self defense, top technical experts, no vendor pitches, unmatched networking opportunities. Visit www.blackhat.com
_______________________________________________
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users

Reply via email to