Analogtv-plugin: Difference between revisions

From VDR Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:
[[Image:Analogtv-plugin(setup).jpg|thumb|Setup]]
[[Image:Analogtv-plugin(setup).jpg|thumb|Setup]]


The '''analogtv plugin''' makes it possible to use analog TV with [[VDR]]. The DVB card is used as output device. For VDR, the analogtv plugin behaves like a DVB budget card.
The '''analogtv plugin''' was the first Plugin supporting analog TV with VDR.


{{Box Info|'''DO NOT POINT TO THIS PLUGIN ANY LONGER IN VDR RELATED WIKIs.'''<br>It is umaintained for years, has no homepage or download any more, no longer working and not compiling with newer versions of VDR. Please use the [[pvrinput-plugin]] instead.}}
Supported are analog-TV cards (with or without hardware MPEG encoder) and video-grabber cards. So not only a TV tuner can be used, one can record from webcams or VCRs as well.

If you use an ivtv based TV card, you may use one of the other plugins as well: [http://www.linuxtv.org/vdrwiki/index.php/Category:AnalogTV Category:AnalogTV]

==Hardware requirements==
* analog TV card (BTTV or ivtv driver)
* realtime MPEG encoder: hardware (e.g. Hauppauge PVR250/350) or software

==Software requirements==
* Software MPEG encoder if no supported hardware encoder is present
* For the PVR250/350 the newest [http://www.ivtv.tv/releases/ drivers] are needed.
* libdvb
* Video4Linux2 (v4l2)
* ALSA sound driver


==Installation==
==Installation==
* NOT POSSIBLE WITHOUT DEEPLY TOUCHING PLUGINS SOURCE. Use the [[pvrinput-plugin]] instead.
There are two changes to libdvb. First, in ''libdvbmpeg/transform.c'' replace
static void pes_in_ts(p2p *p)

with
void pes_in_ts(p2p *p)

and in ''dvb-mpegtools/Makefile'' replace
install -m 755 dvb_show_image $(PREFIX)/bin/

with
install -m 755 show_dvb_image $(PREFIX)/bin/

Now libdvb can be installed
cd $SOURCEDIR
tar xvzf libdvb-<VERSION>.tar.gz
cd libdvb-<VERSION>
make
make install
ldconfig

For the rest of the installation see the README file and See [[plugin installation]].

==Problems==
* For ivtv > 0.1.9, set ''VPID=301'' and ''APID=300'' in the '''channels.conf'''
* If analogtv plugin compilation fails with a "ISO C++ forbids cast to non-reference type used as lvalue" error, then edit the Makefile in PLUGINS/src/analogtv and comment out the line "HAVE_FAST_MEMCPY = 1"

==CVS==
cvs -d:pserver:anonymous@vdr-analogtv.cvs.sourceforge.net:/cvsroot/vdr-analogtv login
cvs -z3 -d:pserver:anonymous@vdr-analogtv.cvs.sourceforge.net:/cvsroot/vdr-analogtv co analogtv


==Links==
==Links==
{|
| [1]
| http://www.akool.homepage.t-online.de/index.html
| Plugin homepage
|-
| [2]
| http://sourceforge.net/projects/vdr-analogtv
| Projekt site on Sourceforge
|-
| [3]
| http://www.koneczny.info/AnalogTV
| HOWTO for Hauppauge PVR250 und 350
|-
| [4]
| http://www.ivtv.tv/
| (new) IVTV driver
|-
| [5]
| http://www.metzlerbros.org/dvb/index.html
| Libdvb
|-
| [6]
| [[channels.conf analogue]]
| channels.conf examples for analogue TV
|-
| [7]
| [[freqlist PAL-europe]]
| List of all pal-europe frequencies
|}


[[Category:Outdated_Plugins]]
[[Category:Outdated_Plugins]]

Revision as of 13:47, 31 December 2013

Description

Setup

The analogtv plugin was the first Plugin supporting analog TV with VDR.

Info
Info

DO NOT POINT TO THIS PLUGIN ANY LONGER IN VDR RELATED WIKIs.
It is umaintained for years, has no homepage or download any more, no longer working and not compiling with newer versions of VDR. Please use the pvrinput-plugin instead.


Installation

  • NOT POSSIBLE WITHOUT DEEPLY TOUCHING PLUGINS SOURCE. Use the pvrinput-plugin instead.

Links