Go to file
Antti Seppälä 007bfdade3 Fix segfault. 2007-09-24 16:08:09 +00:00
patches Added CloseFilter() to VDR's API. 2007-09-22 10:23:54 +00:00
po Added support for HTTP path and tweaked channel editing. 2007-09-19 17:14:03 +00:00
COPYING Initial revision 2007-09-12 17:28:59 +00:00
HISTORY Removed date. 2007-09-15 15:03:26 +00:00
Makefile New and improved section filter code from Kernel. Objectified neatly in 2007-09-24 13:03:38 +00:00
README Updated channel.conf examples. 2007-09-18 20:20:23 +00:00
common.h Initial revision 2007-09-12 17:28:59 +00:00
config.c Added mechanism to resize protocol read buffers on the fly. 2007-09-20 21:45:51 +00:00
config.h Added mechanism to resize protocol read buffers on the fly. 2007-09-20 21:45:51 +00:00
device.c Fix segfault. 2007-09-24 16:08:09 +00:00
device.h New and improved section filter code from Kernel. Objectified neatly in 2007-09-24 13:03:38 +00:00
iptv.c Added new setup options. 2007-09-16 13:38:20 +00:00
pidfilter.c Very rudimentary pid & section filtering, uses code from libdvb. Does 2007-09-19 15:14:32 +00:00
pidfilter.h Very rudimentary pid & section filtering, uses code from libdvb. Does 2007-09-19 15:14:32 +00:00
protocolfile.c Added mechanism to resize protocol read buffers on the fly. 2007-09-20 21:45:51 +00:00
protocolfile.h Added mechanism to resize protocol read buffers on the fly. 2007-09-20 21:45:51 +00:00
protocolhttp.c Added mechanism to resize protocol read buffers on the fly. 2007-09-20 21:45:51 +00:00
protocolhttp.h Added mechanism to resize protocol read buffers on the fly. 2007-09-20 21:45:51 +00:00
protocolif.h Added a setup option for buffer prefill ratio and fixed protocol Read(). 2007-09-15 21:27:00 +00:00
protocoludp.c Added mechanism to resize protocol read buffers on the fly. 2007-09-20 21:45:51 +00:00
protocoludp.h Added mechanism to resize protocol read buffers on the fly. 2007-09-20 21:45:51 +00:00
sectionfilter.c Fix segfault. 2007-09-24 16:08:09 +00:00
sectionfilter.h New and improved section filter code from Kernel. Objectified neatly in 2007-09-24 13:03:38 +00:00
setup.c Added mechanism to resize protocol read buffers on the fly. 2007-09-20 21:45:51 +00:00
setup.h updated vdr patch and added a preliminary channel editor. 2007-09-18 18:48:10 +00:00
streamer.c Fixed prebuffering. 2007-09-21 21:50:52 +00:00
streamer.h Protocol refactoring. 2007-09-14 15:44:25 +00:00

README

This is a IPTV for the Video Disk Recorder (VDR).

Written by:                  R o l f . A h r e n b e r g @ s c i . f i
                             A n t t i . S e p p a l a @ 

Project's homepage:          http://www.saunalahti.fi/~rahrenbe/vdr/iptv/

Latest version available at: http://www.saunalahti.fi/~rahrenbe/vdr/iptv/

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
See the file COPYING for more information.

Requirements:

IPTV patched VDR-1.5.9+ and multicast IPTV transport streams

Description:

This plugin integrates multicast IPTV transport streams seamlessly into
VDR. You can use any IPTV channel like any other normal DVB channel for
live viewing, recording, ...

Installation:

cd /put/your/path/here/VDR/PLUGINS/src
tar -xzf /put/your/path/here/vdr-iptv-X.Y.Z.tgz
ln -s iptv-X.Y.Z iptv
cd /put/your/path/here/VDR
patch -p1 < PLUGINS/src/iptv/patches/vdr-1.5.x-iptv.patch
cp sources.conf /path/to/vdrconf/
make
make plugins
./vdr -P iptv

Channels.conf examples:

TV1;IPTV:1:IPTV|UDP|127.0.0.1|1234:P:0:512:650:2321:0:1:0:0:0
         ^ ^    ^   ^         ^    ^
         | |    |   |         |    Source type ("P")
         | |    |   |         IP Port Number
         | |    |   IP Address or File Location
         | |    Protocol ("UDP", "HTTP", "FILE")
         | Plugin ID ("IPTV")
         Unique enumeration

TV2;IPTV:2:IPTV|HTTP|127.0.0.1/TS/2|3000:P:0:513:660:2321:0:2:0:0:0
TV3;IPTV:3:IPTV|FILE|/media/video.ts|0:P:0:514:670:2321:0:3:0:0:0

Example UDP multicast configuration for iptables firewall:

  # Multicast UDP -packets
  iptables -A INPUT -i eth0 -p udp -d 224.0.0.0/4 --dport 1234 -j ACCEPT

  # IGMP required by multicasts
  iptables -A INPUT -i eth0 -p igmp -d 224.0.0.0/4 -j ACCEPT