AleVT: Difference between revisions

From LinuxTVWiki
Jump to navigation Jump to search
(→‎Downloading and Compiling: add some placeholder text ... hehehehe)
Line 55: Line 55:
Now run
Now run
alevt -vbi /dev/dvb/adapter0/demux0 -pid 0x578 100
alevt -vbi /dev/dvb/adapter0/demux0 -pid 0x578 100
Now the Videotext start page should be shown.
Now the Videotext start page should be shown. Note: the "100" at the end of the line leads to the start page, otherwise the start page would have to be selected by hand.


The "100" at the end of the line leads to the start page, otherwise the start page would have to be selected by hand.


==External Links==
==External Links==

Revision as of 06:42, 9 October 2011

AleVT is a program to use Teletext/Videotext for analog and digital TV.

Downloading and Compiling

AleVT is available on most Linux distributions. However, if a package for your system is unavailable, you can download the v1,6.2 source [1], but don't forget to apply the DVB patch [2] before you compile it.

v1,7.0 redesign currently in dvb-apps [3] [4] [5] [6] [7] [8] [9] [10]

Using AleVT

Since on DVB-T there are multiple TV stations broadcasted on one frequency, alevt can not just show the videotext program of the current channel, but the user has to tell alevt which channel is to be shown. It is recommended to use the script described in the next section to select one of the available teletext providers.

Script for easy use of AleVT

There is a script that shows a graphical dialog with the available TV stations. The user can select the desired TV station by name and the teletext is shown automatically.

The script uses alevt and kdialog, so make sure both is installed!

The script can be downloaded here: [[11]]

To use the script, just run

sh findTxt

on the commandline.

You can put the script on your Desktop and start it directly from there, if you set the executable bit for the script. Also, you can set a shortcut in KDE or Gnome to start the script, e.g. while watching TV. (For help on this, see linux forums :-))

Have Fun!

Manual use of AleVT

You can use alevt only while watching TV over another program. alevt will show teletext for the currently running TV station.

For use with DVB, alevt must be started like this:

alevt -vbi /dev/dvb/adapter0/demux0

Now the problem is that on one frequency there are many channels, so alevt is just takig the first one.

Normally you want to see teletext for the currently running TV station. That can be done like follows:

To select a program, you must use the alevt output:

Service ID 0x000e Type 0x01 Provider Name "ARD" Name "Das Erste"
 PMT PID 0x0578 TXT: PID 0x057c lang ger type 0x01 magazine 1 page   0 
Service ID 0x000c Type 0x01 Provider Name "ARD" Name "rbb Berlin"
 PMT PID 0x04b0 TXT: PID 0x04b4 lang ger type 0x01 magazine 1 page   0

You just have to get the TXT PID for the tv station, e.g. "0x57c" for "Das Erste".

Now run

alevt -vbi /dev/dvb/adapter0/demux0 -pid 0x578 100

Now the Videotext start page should be shown. Note: the "100" at the end of the line leads to the start page, otherwise the start page would have to be selected by hand.

External Links