Testing your DVB device: Difference between revisions

From LinuxTVWiki
Jump to navigation Jump to search
(created page)
 
No edit summary
Line 1: Line 1:
''' First steps with a budget DVB card - Getting Started Howto '''
''' First steps with a budget DVB card - Getting Started Howto '''

This page gives you some suggestions how to test your DVB card installed on your system. It won't tell you greatly featured software to ''watch'' TV, neither how to install your specific hardware that you have (see the other pages of this wiki for that). But it will tell you software that will run in command-line mode (shell only, actually) and even on very modest software. And '''it won't take long''' to do these tests here.
This page gives you some suggestions how to test your DVB card installed on your system. It won't tell you greatly featured software to ''watch'' TV, neither how to install your specific hardware that you have (see the other pages of this wiki for that). But it will tell you software that will run in command-line mode (shell only, actually) and even on very modest software. And '''it won't take long''' to do these tests here.


Line 55: Line 56:


This might not be what you wanna do every day (unless you only watch BBC1 or you can easily memorise all your channels with their two PIDs) - but it's very fast and easy to do these steps, e.g. for a test.
This might not be what you wanna do every day (unless you only watch BBC1 or you can easily memorise all your channels with their two PIDs) - but it's very fast and easy to do these steps, e.g. for a test.


== See also ==
* [[Example setup]]s (for more complex, more advanced, more powerful and more comfortable systems)
* [[Commented software list]]

Revision as of 23:21, 28 April 2006

First steps with a budget DVB card - Getting Started Howto

This page gives you some suggestions how to test your DVB card installed on your system. It won't tell you greatly featured software to watch TV, neither how to install your specific hardware that you have (see the other pages of this wiki for that). But it will tell you software that will run in command-line mode (shell only, actually) and even on very modest software. And it won't take long to do these tests here.

Run all stuff on this page as root, for the beginning. Here, we assume you already installed the driver for your hardware and loaded the modules, i.e. you should have a non empty directory

 /dev/dvb/adapter0/


First steps using DVBtools

The dvb-utils have many useful tools with great functionality. Install it, e.g. with debian:

 # apt-get install dvb-utils

For the beginning, do something like this: Adopt this line for your place

 scan /usr/share/doc/dvb-utils/examples/scan/dvb-t/uk-Oxford 

and you'll see what's coming in to the card. If that makes sense, repeat it like this:

 mkdir /root/.tzap
 scan /usr/share/doc/dvb-utils/examples/scan/dvb-t/uk-Oxford >/root/.tzap/channel.conf

This trys to find the programs it takes from the initial uk-Oxford configuration (or whatever your place is). Note that the screen output you get into your shell doesn't really say if you can recieve something or not. The file it creates is more important; it has lines like:

 BBC ONE:578000000:INVERSION_AUTO:BANDWIDTH_8_MHZ:FEC_3_4:FEC_3_4:QAM_16:TRANSMISSION_MODE_2K:GUARD_INTERVAL_1_32:HIERARCHY_NONE:600:601:4171

which says that the stream on frequency 578000000 Hz has the two PIDs 600 and 601 for the video and audio stream of BBC ONE. This file with the data for your TV-programs, if stored into the place as above, can be used by the zapper tzap, e.g.:

 tzap Bloomberg -- Bloomberg

That tunes automatically both channel and PIDs for video and audio to the channel called "Bloomberg -- Bloomberg". You could now start up your TV watching application or datastreamer. But we want to see some nice statistics of what's coming in for each channel and PID:

 dvbtraffic

And finally

 dvbdata

Note: if your signal is too weak and you recieve only some channels, the way to find out which is to look in the channel.conf file that you just created. If for a program the two PIDs (third and second last number in line) are 0, you can't recieve it. If the first PID is 0 and the second is not 0, then it's probably a radio channel.


First steps using dvbsnoop

As an alternative, dvbsnoop is a small, down-to-earth util. As it's very hardware-near, it's very handy for debugging and seeing what's going on with the card (tuning works? data coming in? signal strong enough?). (On the other side, if all in the section above works fine, you can jump over this section here.) Install it, e.g. with debian:

 # apt-get install dvbsnoop

Then try things like

 dvbsnoop -help
 dvbsnoop -s pidscan

This will give out a lot of numbers, but if you understand the system of DVB you should see if they make sense. Go for one of the PIDs (choose a right one which is a bit difficult as you don't know what they stand for unless you used the scan line above) and try:

 dvbsnoop -s bandwidth <PID>
 dvbsnoop <PID>

The latter will spit out a lot of hexdumps - at least you recieve something ;-)


Save a TV program to harddisk with dvbstream

The handy thing about digital TV is, it comes in as a digital stream that you can save right away to your harddisk without any changes necessary to it. Therefore, hardly any CPU resources are needed -- just a lot of HD space (few GB per hour as the stream is MPEG-2 which is not as compressed as for example DivX/MPEG-4). A good program that can do that (and more) is dvbstream.

Install it, e.g. with debian:

 # apt-get install dvbstream

Let's tune into a channel with tzap as described above, and then you can just save the stream into a file like this:

 tzap BBC ONE
 dvbstream 600 601 -o >BBC1.mpeg

So this is why it's important that you have your personal channels.conf file with all the PIDs so you can look them up. Instead of using tzap you can do it all in one - tune the frequency and select the right PIDs:

 dvbstream -f 578000 600 601 -o >bbc1.mpeg

Wait a few seconds and then press Ctrl+C to stop. You can open the MPEG file with players that play movie files (decode MPEG2), like mplayer, (g)xine or noatune.

If the file is rather small, e.g. smaller than 1 MB after a minute of recording, then you can't recieve this TV channel - maybe the reception is bad (too weak antenna signal) - or maybe your card's frequency is not tuned for the right sender? Watch out, some PIDs come up a few times (but for different frequencies).

This might not be what you wanna do every day (unless you only watch BBC1 or you can easily memorise all your channels with their two PIDs) - but it's very fast and easy to do these steps, e.g. for a test.


See also