[linux-dvb] AverMedia DVB-T and bttv module

2004-01-09 Thread Cameron Hutchison
I've just recently got myself an AverMedia DVB-T card (for use in
Sydney, Australia). I've been working my way through getting this card
going and I noticed an email on this list that has me a little confused.

I'm using kernel 2.6.1 without any extra patches - all the appropriate
modules are building and loading. However, when the bttv modules loads,
it does not detect the card and prints out: 

bttv0: subsystem: 1461:0761 (UNKNOWN)
bttv0: using:  *** UNKNOWN/GENERIC ***  [card=0,autodetected]

In the list archives is a message from Joni Loponen, on 09 Sep 2003.
In his log posted in the message, it says:

bttv0: detected: AverMedia DVB-T [card=105], PCI subsystem ID is
1461:0761
bttv0: using: BT878(AverMedia DVB-T) [card=105,autodetected]

Looking at the current kernel source, card 105 (0x69) is "Provideo
PV143A". Now, I know there's nothing special about the card numbers in
bttv-cards - but there's no AverMedia DVB-T card entry at all, nor can I
find a patch in the dvb-kernel cvs.

Is this going to present a problem to me using this card, or will it
work fine with the UNKNOWN/GENERIC code?



-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.



[linux-dvb] Re: Hauppauge DEC2540-T

2004-01-09 Thread Alex Woods
On Monday 05 January 2004 9:38 pm, MartÄn van de Streek wrote:
> On Mon, 05 Jan 2004, Alex Woods wrote:
> > > Is there some sort of easy way/checklist I can follow to add support
> > > for the DEC2540-T to the current driver in linux kernel 2.6.0?
> >
> > Firstly, see http://linuxtv.org/cgi-bin/cvsweb.cgi/ and checkout the
> > dvb-kernel module.  Apply this patch to the driver:
>
> It doesn't work.

The 2.16 software seems have stabilised.  I've had a look through it and it 
appears to support USB ID 0b48 1009.  There is also a new firmware that has 
appeared in the zip - STB_PC_X.bin.  I assume this is the firmware for your 
box.  If I try it with my DEC, I get similar problems to the ones you were 
seeing (usb timeouts), so maybe the devices have different USB chips.

I have updated the driver in CVS so that it will look for USB ID 0b48 1009, 
and try to load firmware for it (named dvb-ttusb-dec-2540t.fw).  If you 
decide to try it out, please let me know what results you get.

If you get as far as the DEC rebooting and a message like this appears in your 
logs:

ttusb_dec_init_stb: unknown model returned by firmware (12345678) - please 
report

then let me know the number, and I'll add it to the driver so you can get to 
the next stage.

Cheers,
Alex



-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.



[linux-dvb] DVB radio

2004-01-09 Thread Hamish Moffatt

I asked this on xine-user but got no response, so I'll try here:

I have a DVB-T radio station (audio only, no video) in my
~/.xine/channels.conf and xine seems to ignore it completely. Are these
supported?

mplayer seems to play them ok.


thanks

Hamish
-- 
Hamish Moffatt VK3SB <[EMAIL PROTECTED]> <[EMAIL PROTECTED]>


-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.



[linux-dvb] Re: Problem with SKY2PC 2.3 on slower machine

2004-01-09 Thread Holger Waechtler
Petar Ristic wrote:
Thanks Niklas,

this was a problem. Now working, not ok becouse my machine is too slow, but
working.
Is there any faster MPEG2 decoder than mplayer? Or it's time to upgrade
machine?
The performance of mplayer, xine + co heavily depend on a properly 
configured system. Be sure to have your graphics driver correctly 
installed and configured, use Xv, DirectFB, SDL or OpenGL as output 
paths, check whether Alsa or OSS causes less CPU load on your hardware.

Usually you need far less CPU power to decode MPEG than most people 
expect - but you need to ensure that the dumb tasks like YUV colorspace 
conversion, scaling and blitting are done by your graphics card and not 
the CPU - the graphics card is the part of your system which is 
optimized for this work...

Holger



--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: Problem with SKY2PC 2.3 on slower machine

2004-01-09 Thread Petar Ristic
Thanks Niklas,

this was a problem. Now working, not ok becouse my machine is too slow, but
working.
Is there any faster MPEG2 decoder than mplayer? Or it's time to upgrade
machine?


- Original Message -
From: Niklas Peinecke <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, January 09, 2004 9:49 AM
Subject: [linux-dvb] Re: Problem with SKY2PC 2.3 on slower machine


> Uh, I just noticed you were using the -x option with szap! Try without
> and kepp szap running in one terminal while starting mplayer in an
> other, that should work.
>
> Niklas





-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.



[linux-dvb] Re: mplayer playback through dvb takes 100% cpu time

2004-01-09 Thread Michael Hunold
Hello all,

shortly after posting my previous mail, I found the problem:

On 09.01.2004 20:44, Michael Hunold schrieb:
> On 03.01.2004 22:33, Soeren Sonnenburg schrieb:
I have inserted some debugging output into the dvb driver, but it did 
not reveal any problems. So I think it's an sync issue of mplayer. (see 
below)

I noticed a weirdness with mplayer and -vo mpegpes playback. If I don't
also use -ao mpegpes the CPU load goes up to 100% instead of like 10%,
i.e. both
mplayer -ao mpegpes -vo mpegpes 
and mplayer -nosound -vo mpegpes 
both take like 10% CPU but,
mplayer -ao null -vo mpegpes 
or
mplayer -ao alsa9 -vo mpegpes 
eat up all CPU there is but plays (of course gives frame drops)


I think one important thing is "-nosound".

While "-ao null" is a valid "sound device" which "consumes" the sound 
with a defined rate (just like -ao alsa9), "-nosound" simply disables 
sound output and uses some constants to skip audio inside mplayer.c.

Perhaps there is a problem that "-vo mpegpes" needs the raw PES data, 
but "-ao null" or "-ao alsa9" need the decoded PCM audio, and so 
decoding and timing the output are severly messed up.
There is the following code inside "mplayer.c":
schnipp---
//== SLEEP: ===
time_frame/=playback_speed;

// flag 256 means: libvo driver does its timing (dvb card)
if(time_frame>0.001 && !(vo_flags&256)){
#ifdef HAVE_RTC
if(rtc_fd>=0){
[...]
schnipp---
If the vo-driver has flag VFCAP_TIMER (256 = 0x100) set, then it can do 
it's own timing, it does not need to rely on the rtc or sleep() to let 
time pass.

This is true if you have both audio and video going through "-vo 
mpegpes" and "-ao mpegpes". "mplayer" will stuff the buffers of the dvb 
card by calling draw_frame() => send_pes_packet() => my_write() until 
the buffers are filled and the driver will "sleep". The DVB card does 
all the timing and output. Ok.

But because "-vo mpegpes" sets this flag VFCAP_TIMER even if it does not 
play sound, something goes wrong. Sound is played through "-ao null" 
with the correct sample rate. Video is shipped to "-vo mpegpes". The 
select call in my_write() does never sleep, because the video buffer is 
never filled. (debug output of dvb_ringbuffer_free(&av7110->avout) shows 
 this)

This is ok, because audio must be played in sync. "time_frame" is always 
> 0.001 (don't know what it is exactly)

So, actually "mplayer" never really sleeps but jumps immediately to the 
beginning of it's main loop, because the sleeping code is disabled!

Thanks to the sync code A/V stays in sync, but the CPU is never put to 
sleep and spends most of the time in syscalls polling the DVB 
audio/video queue. This is where the 100% CPU usage comes from.

"-nosound" works, because it sets time_frame=0 under some circumstances 
(search mplayer.c for "NOSOUND") and then the above check is false and 
"mplayer" sleeps.

Please try to comment out the above line and the closing brace of the 
sleeping code in order to force mplayer to sleep. For me, it "solved" 
the 100% CPU usage bug.

Of course this is not the real fix, but it shows what's going wrong.

CU
Michael.


--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] dvbtextsubs & pes2ts2

2004-01-09 Thread Lars Fredriksson
Hi!

I downloaded dvbtextsubs-0.1 and tried pes2ts2 for converting a
VDR-recording to ts format so dvbtextsubs can parse it, but it didn't work
so well ;-) I think that pes2ts2 only converts video and audio. Are there
any possibility to convert the ttxt-pid also? Or maybe some other solution
to get the teletext subtitles from a VDR-recording?

I'm currently using the ttxtsubs-plugin within VDR and it works great, but
it would be really nice if i could get the subs on my DVD's also.

Anyone that have an idea?

Regards, Lars



-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.



[linux-dvb] Re: mplayer playback through dvb takes 100% cpu time

2004-01-09 Thread Michael Hunold
Hello Soeren,

I'm currently investigating this problem.

I have inserted some debugging output into the dvb driver, but it did 
not reveal any problems. So I think it's an sync issue of mplayer. (see 
below)

On 03.01.2004 22:33, Soeren Sonnenburg schrieb:
I noticed a weirdness with mplayer and -vo mpegpes playback. If I don't
also use -ao mpegpes the CPU load goes up to 100% instead of like 10%,
i.e. both 

mplayer -ao mpegpes -vo mpegpes 
and 
mplayer -nosound -vo mpegpes  

both take like 10% CPU but, 

mplayer -ao null -vo mpegpes 
or
mplayer -ao alsa9 -vo mpegpes 
eat up all CPU there is but plays (of course gives frame drops)
I think one important thing is "-nosound".

While "-ao null" is a valid "sound device" which "consumes" the sound 
with a defined rate (just like -ao alsa9), "-nosound" simply disables 
sound output and uses some constants to skip audio inside mplayer.c.

Perhaps there is a problem that "-vo mpegpes" needs the raw PES data, 
but "-ao null" or "-ao alsa9" need the decoded PCM audio, and so 
decoding and timing the output are severly messed up.

Soeren.
Perhaps some of the mplayer developers can comment on this. In the 
meanwhile, I'm going to profile mplayer and the kernel in order to see 
where the 50% in-kernel time is actually spent.

Any help is appreciated...

CU
Michael.
--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: recording and watching paralle not possiblel?

2004-01-09 Thread Guido Draheim


Dirk wrote:


Johannes Stezenbach wrote:

One can record TS from dvr0 while playing back PES to video0/audio0.
vdr does it.
Johannes

 

How can I achieve this with szap/mplayer?
I am doing something like
szap -r ABC ... &
buffer < /dev/dvb/adapter0/dvr0 >recording.mpg
mplayer -vo mpegpes
(mplayer says ...Opening /dev/dvb/adapter0/video0+audio0...)
Just after starting mplayer, the recording stops.


I am fine with ts2pes (ts recording (intead of buffer)) and
xawtv (v4l view (instead of mplayer)) after szap -r (for tuning)
- just along the way you are calling your apps. Perhaps try with
some other app or other options - but be assured that it works.
cheers,
-- guido  http://google.de/search?q=guidod
p.s.  personally I have some problems with the two cards where I can
  not record both cards as the ts stream breaks after 2G or 4G but
  that is really multicard not stream capture from one card alone.


--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] No sound on some channels (sometimes)

2004-01-09 Thread Martin Holst
Hi

although I believe that this bug is well known by the dvb-developer, I'll
describe it another time:

Many people noticed, that the sound on some channel gets lost and only a
restart of the dvb driver solves that problem. In my case I'm pretty sure, that
this problem doesn't exist within dvb-driver from 20.09.2003. But some other
people on the vdr-ML said, that they have this problem with drivers before
that date. Affected channels are: RTL, ARD.

Oliver Endriss wrote on the vdr-ML:
* I often have missing sound on ARD (pid 102), but sometimes other 
* pids are affected (101, 104). 101 is used by picture on ARD, 104 
* by sound on RTL...
*
* This is a known and pretty old bug. I had some off-list discussion 
* with the driver developers in April 2003 about this issue. It was 
* mentioned on the ML several times, too.

As discussed on the vdr-ML this problem occurs on a DVB-s 1.3 and 1.6 as
well as with a Nexus. I've tried recent dvb-driver and dvb-kernel with the same
result.

Has anyone of the driver-gurus an idea, where we can start to get rid of
this problem?

Martin

-- 
+++ GMX - die erste Adresse für Mail, Message, More +++
Neu: Preissenkung für MMS und FreeMMS! http://www.gmx.net




-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.



[linux-dvb] Re: kernel BUG at saa7146_fops.c:52!

2004-01-09 Thread Michael Hunold
Hello Dominik,

On 09.01.2004 15:59, Dominik Strasser schrieb:
Playing around with vdr/xawtv and my DVB-C analog module, I got the
following Bug/OOPS

kernel BUG at saa7146_fops.c:52!
invalid operand: 
CPU:0
Interesting. I recently added some "ressource management" to the driver. 
The managed ressources are the video dmas of the saa7146. Especially for 
the DVB-C with analog module this is important, because vbi capturing 
(can be used on the analog side) and capture/overlay sometimes share the 
same video dmas.

I added this bug to catch cases were dmas are not handled properly.

> Should I provide more info ?

I'd like to know what you were exatly doing and if you can reproduce 
this oops.

Regards
Dominik
CU
Michael.
--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: Makefile patch

2004-01-09 Thread Johannes Stezenbach
Dominik Strasser wrote:
> attached a tiny patch which triggers a rebuild if  the static firmware
> has changed.
> 
> Index: Makefile
> ===
> RCS file: /cvs/linuxtv/dvb-kernel/build-2.4/Makefile,v
> retrieving revision 1.59
> diff -u -3 -p -u -r1.59 Makefile
> --- Makefile5 Jan 2004 18:38:02 -   1.59
> +++ Makefile9 Jan 2004 14:44:12 -
> @@ -107,7 +107,7 @@ dvb-ttpci-budget-patch.o: $(dvb-ttpci-bu
> dvb-ttpci-budget.o: $(dvb-ttpci-budget-objs)
>$(LD) -r -o $@ $(dvb-ttpci-budget-objs)
> 
> -av7110_firm.h: fdump
> +av7110_firm.h: fdump $(AV7110_FIRMWARE_PRESENT)
>./fdump $(AV7110_FIRMWARE_PRESENT) dvb_ttpci_fw $@
> 
> av7110.o: av7110_firm.h

Comitted, thanks!

BTW: Your mailer screwed up the patch (ate spaces at begining of line).

Johannes


-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.



[linux-dvb] Re: recording and watching paralle not possiblel?

2004-01-09 Thread Dirk


Johannes Stezenbach wrote:

One can record TS from dvr0 while playing back PES to video0/audio0.
vdr does it.
Johannes

 

How can I achieve this with szap/mplayer?
I am doing something like
szap -r ABC ... &
buffer < /dev/dvb/adapter0/dvr0 >recording.mpg
mplayer -vo mpegpes
(mplayer says ...Opening /dev/dvb/adapter0/video0+audio0...)
Just after starting mplayer, the recording stops.

Dirk



--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: recording and watching paralle not possiblel?

2004-01-09 Thread Johannes Stezenbach
Nico wrote:
> 
> 
> Dirk wrote:
> 
> >Nico wrote:
> >
> >>
> >>I don't know if it's possible to use the decoder while you are 
> >>recording (is it enough
> >>to set DMX_OUT_DECODER instead of DMX_OUT_TS_TAP ?),
> >
> >
> >(I think this a question with am idea for a solution- I can't answer 
> >:-) ) 
> 
> If this is the only way to pass data to the decoder than I can't
> think of any way to make it work: the demuxer wouldn't get
> any data at all and mplayer would exit immediately.
> 
> I'll study the dvb-video  api.

One can record TS from dvr0 while playing back PES to video0/audio0.
vdr does it.

Johannes


-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.



[linux-dvb] Re: Problem with SKY2PC 2.3 on slower machine

2004-01-09 Thread Georg Golombek
Am Sonntag, 6. Januar 1980 10:15 schrieb Petar Ristic:
> I downloaded linuxtv-dvb-1.0.0.tar.gz, compile ...
>
> insmod with:
> insmod dvb-core dvb_shutdown_timeout=0
> insmod mt312
> insmod skystar2

put it into your /etc/modules.conf:

options dvb-core dvb_shutdown_timeout=0
alias char-major-250 skystar2
add below skystar2 mt312

and use zapdvb (zapdvr, zapcut)  from
http://www.j-pfennig.de/zapdvb/download.html

here you can zap very easy through the programs...

and use different windows to start szap and xine or mplayer..


gg



-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.



[linux-dvb] Re: recording and watching paralle not possiblel?

2004-01-09 Thread Nico


Dirk wrote:

Nico wrote:

I don't know if it's possible to use the decoder while you are 
recording (is it enough
to set DMX_OUT_DECODER instead of DMX_OUT_TS_TAP ?),


(I think this a question with am idea for a solution- I can't answer 
:-) ) 
If this is the only way to pass data to the decoder than I can't
think of any way to make it work: the demuxer wouldn't get
any data at all and mplayer would exit immediately.
I'll study the dvb-video  api.



but it's still possible to  run mplayer -vo xv on the file you are 
recording;

mencoder dvb:// ... file.mpg
mplayer -vo xv file.mpg


Yes, of course, I have been using this for several months (with a 
Nova-s card without mpeg decoder).
But the decoder was the main reason why I bought this expensive 
decoder DVB card: To get
at better image quality and more smooth motions.

Dirk







--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: recording and watching paralle not possiblel?

2004-01-09 Thread Dirk
Nico wrote:

I don't know if it's possible to use the decoder while you are 
recording (is it enough
to set DMX_OUT_DECODER instead of DMX_OUT_TS_TAP ?),
(I think this a question with am idea for a solution- I can't answer :-) )

but it's still possible to  run mplayer -vo xv on the file you are 
recording;

mencoder dvb:// ... file.mpg
mplayer -vo xv file.mpg


Yes, of course, I have been using this for several months (with a Nova-s 
card without mpeg decoder).
But the decoder was the main reason why I bought this expensive decoder 
DVB card: To get
at better image quality and more smooth motions.

Dirk



--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: [Mplayer-dvb] mplayer playback through dvb takes 100% cpu time

2004-01-09 Thread Dirk
Nico wrote:

- mplayer ... test.cpy.avi (recoded from test.mpg by mencoder -ovc 
copy -oac copy ...) - this is PS?


if you didn't specify -of mpeg no: it's avi
Yes, you are right: I did not specify -of mpeg, it's avi.

I have not yet tried other mpg-Files.

Maybe it is interesting that xosview shows most of the used CPU time 
as "SYS" (red bar) when
using -ao oss/alsa9/null. The "blue" part is about the amount I would 
expect (depening on the file
type played).

Dirk 


what happens if you run
mplayer -vo xv -ao mpegpes test.mpg
Working as expected, low cpu usage.

mplayer -vo xv -ao oss test.mpg
This my "old" way of watching movies (before I bought the full features 
DVB-card):
This word fine: very little CPU usage.

Interesting: These tests show that it is not the sound as it seemed before.
But what is it then?
Dirk



Just to not get confuses, the summary of tests:
- bad: mplayer -vo mpegpes -ao oss/null/alsa dvd://1
- bad: mplayer -vo mpegpes -ao oss/null/alsa test-divx.avi
- bad: mplayer -vo mpegpes -ao oss/null/alsa test-xvid.avi
- bad: mplayer -vo mpegpes -ao oss/null/alsa test.mpg (recorded by 
buffer < /dev/dvb/adapter0/dvr0 > test.mpg)  - this is TS, I think
- bad: mplayer -vo mpegpes -ao oss/null/alsa test.cpy.avi (recoded from 
test.mpg by mencoder -ovc copy -oac copy ...)
- ok: mplayer -vo mpegpes -ao mpegpes anyfileabove
- ok: mplayer -vo xv -ao mpegpes test.mpg
- ok: mplayer -vo xv -ao oss test.mpg





--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: recording and watching paralle not possiblel?

2004-01-09 Thread Nico
I don't know if it's possible to use the decoder while you are recording 
(is it enough
to set DMX_OUT_DECODER instead of DMX_OUT_TS_TAP ?),
but it's still possible to  run mplayer -vo xv on the file you are 
recording;

mencoder dvb:// ... file.mpg
mplayer -vo xv file.mpg


Dirk wrote:

Hello,

Isn't is possible to simultaneously receive/record from sat (via 
mplayer/mencoder ... dvb://...)
and watch something else (via mplayer -vo mpegpes ...) ?

When I try this, mplayer dvb://... stops with the output below.

The same thing happens when I record using "szap -r ABC" and
"buffer < /dev/dvb/adapter0/dvr0 > test.mpg". Just after starting
"mplayer -vo mpegpes", test.mpg stops growing. szap is still running
and producing its "FE_LOCKED" lines.
How can I achieve recording and watching parallel via the same dvb-card?

Thank you very much,

Dirk

mplayer output:
...
Starting playback...
VDec: vo config request - 720 x 576 (preferred csp: Planar YV12)
VDec: using Planar YV12 as output csp (no 0)
Movie-Aspect is 1,33:1 - prescaling to correct movie aspect.
VO: [xv] 720x576 => 768x576 Planar YV12
dvb_streaming_read, attempt N. 6 failed with errno 11 when reading 920 
bytes
dvb_streaming_read, attempt N. 5 failed with errno 11 when reading 920 
bytes
dvb_streaming_read, attempt N. 4 failed with errno 11 when reading 920 
bytes
dvb_streaming_read, attempt N. 3 failed with errno 11 when reading 920 
bytes
dvb_streaming_read, attempt N. 2 failed with errno 11 when reading 920 
bytes
dvb_streaming_read, attempt N. 1 failed with errno 11 when reading 920 
bytes
dvb_streaming_read, attempt N. 6 failed with errno 11 when reading 
2048 bytes
dvb_streaming_read, attempt N. 5 failed with errno 11 when reading 
2048 bytes
dvb_streaming_read, attempt N. 4 failed with errno 11 when reading 
2048 bytes
dvb_streaming_read, attempt N. 3 failed with errno 11 when reading 
2048 bytes
dvb_streaming_read, attempt N. 2 failed with errno 11 when reading 
2048 bytes
dvb_streaming_read, attempt N. 1 failed with errno 11 when reading 
2048 bytes
dvb_streaming_read, return 0 bytes

Broken frame at 0xCFD0E
A:32585,7 V:32586,0 A-V: -0,307 ct: -0,505  660/660  13%  8% 26,0% 0 0 0%
Exiting... (End of file)

___
Mplayer-dvb mailing list
[EMAIL PROTECTED]
http://mplayerhq.hu/mailman/listinfo/mplayer-dvb







--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] kernel BUG at saa7146_fops.c:52!

2004-01-09 Thread Dominik Strasser
Playing around with vdr/xawtv and my DVB-C analog module, I got the
following Bug/OOPS
kernel BUG at saa7146_fops.c:52!
invalid operand: 
CPU:0
EIP:0010:[]Not tainted
Using defaults from ksymoops -t elf32-i386 -a i386
EFLAGS: 00210293
eax:    ebx: 00200246   ecx: ce9913a0   edx: c3e36b80
esi: c3e36480   edi: cb2f3c00   ebp: 0003   esp: c96dbe64
ds: 0018   es: 0018   ss: 0018
Process xawtv (pid: 26488, stackpage=c96db000)
Stack: c3e36b80 00200246  cb2f3c00 c3e36480 ce97cb92 cb2f3c00
0003
  c0113f48 ca01a000 00200282 0001 c464cd00 00200282 c55ced20
c012d547
  c1217348 00200282 c55ced20 c023922b cb2f3d74 c3e36b80 c96dbeec
c7438dc0
Call Trace:[] [] [] []
[]
 [] [] [] [] []
[]
Code: 0f 0b 34 00 64 09 98 ce f6 05 88 d8 96 ce 02 0f 85 91 00 00

EIP; ce97a201 <[saa7146_vv]saa7146_res_free+21/100>   <=

ebx; 00200246 Before first symbol
ecx; ce9913a0 <[dvb-ttpci]av7110_vv_data_c+0/40>
edx; c3e36b80 <_end+3ad9988/e4d0e68>
esi; c3e36480 <_end+3ad9288/e4d0e68>
edi; cb2f3c00 <_end+af96a08/e4d0e68>
esp; c96dbe64 <_end+937ec6c/e4d0e68>
Trace; ce97cb92 <[saa7146_vv]saa7146_video_do_ioctl+352/f40>
Trace; c0113f48 <__wake_up+48/60>
Trace; c012d547 
Trace; c023922b 
Trace; ce9504fa <[videodev]video_usercopy+7a/120>
Trace; c023614f 
Trace; c023624c 
Trace; ce97ac1a <[saa7146_vv]fops_ioctl+1a/20>
Trace; ce97c840 <[saa7146_vv]saa7146_video_do_ioctl+0/f40>
Trace; c0141e11 
Trace; c01071a3 <__up_wakeup+1263/1680>
Code;  ce97a201 <[saa7146_vv]saa7146_res_free+21/100>
 <_EIP>:
Code;  ce97a201 <[saa7146_vv]saa7146_res_free+21/100>   <=
  0:   0f 0b ud2a  <=
Code;  ce97a203 <[saa7146_vv]saa7146_res_free+23/100>
  2:   34 00 xor$0x0,%al
Code;  ce97a205 <[saa7146_vv]saa7146_res_free+25/100>
  4:   64 09 98 ce f6 05 88  or %ebx,%fs:0x8805f6ce(%eax)
Code;  ce97a20c <[saa7146_vv]saa7146_res_free+2c/100>
  b:   d8 96 ce 02 0f 85 fcoms  0x850f02ce(%esi)
Code;  ce97a212 <[saa7146_vv]saa7146_res_free+32/100>
 11:   91xchg   %eax,%ecx
Should I provide more info ?

Regards

Dominik



--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] recording and watching paralle not possiblel?

2004-01-09 Thread Dirk
Hello,

Isn't is possible to simultaneously receive/record from sat (via mplayer/mencoder ... dvb://...) 

and watch something else (via mplayer -vo mpegpes ...) ?

When I try this, mplayer dvb://... stops with the output below.

The same thing happens when I record using "szap -r ABC" and
"buffer < /dev/dvb/adapter0/dvr0 > test.mpg". Just after starting
"mplayer -vo mpegpes", test.mpg stops growing. szap is still running
and producing its "FE_LOCKED" lines.
How can I achieve recording and watching parallel via the same dvb-card?

Thank you very much,

Dirk

mplayer output:
...
Starting playback...
VDec: vo config request - 720 x 576 (preferred csp: Planar YV12)
VDec: using Planar YV12 as output csp (no 0)
Movie-Aspect is 1,33:1 - prescaling to correct movie aspect.
VO: [xv] 720x576 => 768x576 Planar YV12
dvb_streaming_read, attempt N. 6 failed with errno 11 when reading 920 bytes 

dvb_streaming_read, attempt N. 5 failed with errno 11 when reading 920 bytes 

dvb_streaming_read, attempt N. 4 failed with errno 11 when reading 920 bytes 

dvb_streaming_read, attempt N. 3 failed with errno 11 when reading 920 bytes 

dvb_streaming_read, attempt N. 2 failed with errno 11 when reading 920 bytes 

dvb_streaming_read, attempt N. 1 failed with errno 11 when reading 920 bytes 

dvb_streaming_read, attempt N. 6 failed with errno 11 when reading 2048 bytes 

dvb_streaming_read, attempt N. 5 failed with errno 11 when reading 2048 bytes 

dvb_streaming_read, attempt N. 4 failed with errno 11 when reading 2048 bytes 

dvb_streaming_read, attempt N. 3 failed with errno 11 when reading 2048 bytes 

dvb_streaming_read, attempt N. 2 failed with errno 11 when reading 2048 bytes 

dvb_streaming_read, attempt N. 1 failed with errno 11 when reading 2048 bytes 

dvb_streaming_read, return 0 bytes

Broken frame at 0xCFD0E
A:32585,7 V:32586,0 A-V: -0,307 ct: -0,505  660/660  13%  8% 26,0% 0 0 0%
Exiting... (End of file)

___
Mplayer-dvb mailing list
[EMAIL PROTECTED]
http://mplayerhq.hu/mailman/listinfo/mplayer-dvb


--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Makefile patch

2004-01-09 Thread Dominik Strasser
Hi all,
attached a tiny patch which triggers a rebuild if  the static firmware
has changed.
Index: Makefile
===
RCS file: /cvs/linuxtv/dvb-kernel/build-2.4/Makefile,v
retrieving revision 1.59
diff -u -3 -p -u -r1.59 Makefile
--- Makefile5 Jan 2004 18:38:02 -   1.59
+++ Makefile9 Jan 2004 14:44:12 -
@@ -107,7 +107,7 @@ dvb-ttpci-budget-patch.o: $(dvb-ttpci-bu
dvb-ttpci-budget.o: $(dvb-ttpci-budget-objs)
   $(LD) -r -o $@ $(dvb-ttpci-budget-objs)
-av7110_firm.h: fdump
+av7110_firm.h: fdump $(AV7110_FIRMWARE_PRESENT)
   ./fdump $(AV7110_FIRMWARE_PRESENT) dvb_ttpci_fw $@
av7110.o: av7110_firm.h

Regards

Dominik



--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: [Mplayer-dvb] mplayer playback through dvb takes 100% cpu time

2004-01-09 Thread Nico


Dirk wrote:

I don't know the exact difference beteween PS and TS, but it happens 
with every file that I tries so far:

- mplayer ... dvd://1
- mplayer ... test-divx.avi
- mplayer ... test-xvid.avi
- mplayer ... test.mpg (recorded by buffer < /dev/dvb/adapter0/dvr0 > 
test.mpg)  - this is TS, I think 

- mplayer ... test.cpy.avi (recoded from test.mpg by mencoder -ovc 
copy -oac copy ...) - this is PS?


if you didn't specify -of mpeg no: it's avi



I have not yet tried other mpg-Files.

Maybe it is interesting that xosview shows most of the used CPU time 
as "SYS" (red bar) when
using -ao oss/alsa9/null. The "blue" part is about the amount I would 
expect (depening on the file
type played).

Dirk 
what happens if you run
mplayer -vo xv -ao mpegpes test.mpg
mplayer -vo xv -ao oss test.mpg
?

   Nico





--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: [Mplayer-dvb] mplayer playback through dvb takes 100% cpu time

2004-01-09 Thread Soeren Sonnenburg
On Fri, 2004-01-09 at 15:41, Nico wrote:
> TS meands MPEG-TS, the native format of  DVB streams.
> If you experience that problem with divx files than your re-encoding 
> divx to MPEG1
> may be the problem (likely if your pc is slow);

2.4 athlon XP : when playing with -nosound -vo mpegpes or -ao mpegpes
-vo mpegpes load is like <10% but with -ao null or -ao oss or -ao alsa
it is 100%.

> on the other side if  your pc suffers when playing mpeg files (what I 
> previously
> called "PS") then there must be something else wrong.

yes suffers with TS/PS stuff then.

Soeren



-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.



[linux-dvb] Re: [Mplayer-dvb] mplayer playback through dvb takes 100% cpu time

2004-01-09 Thread Dirk
I don't know the exact difference beteween PS and TS, but it happens 
with every file that I tries so far:

- mplayer ... dvd://1
- mplayer ... test-divx.avi
- mplayer ... test-xvid.avi
- mplayer ... test.mpg (recorded by buffer < /dev/dvb/adapter0/dvr0 > 
test.mpg)  - this is TS, I think
- mplayer ... test.cpy.avi (recoded from test.mpg by mencoder -ovc copy 
-oac copy ...) - this is PS?

I have not yet tried other mpg-Files.

Maybe it is interesting that xosview shows most of the used CPU time as 
"SYS" (red bar) when
using -ao oss/alsa9/null. The "blue" part is about the amount I would 
expect (depening on the file
type played).

Dirk

Nico wrote:

Does this happen only with TS files or with PS ones, too?

Dirk wrote:

Yes I have the same problem. Yesterday I postet the problem with 
nearly the same content like yours.
(Didn't see yours before, sorry).

Surprisingly the problem also exists when playing Files which where 
directly recorded from dvb -
so no convesion has to be done.
And even when the sound input is AC3 an I use -vo oss -af hwac3, CPU 
load is 100% :-(

Any Ideas?

Dirk

Soeren Sonnenburg wrote:

Hi.

I noticed a weirdness with mplayer and -vo mpegpes playback. If I don't
also use -ao mpegpes the CPU load goes up to 100% instead of like 10%,
i.e. both
mplayer -ao mpegpes -vo mpegpes 
and mplayer -nosound -vo mpegpes 
both take like 10% CPU but,
mplayer -ao null -vo mpegpes 
or
mplayer -ao alsa9 -vo mpegpes 
eat up all CPU there is but plays (of course gives frame drops)

Is anyone else observing this or even better knows the cause of it ?

Soeren.

___
Mplayer-dvb mailing list
[EMAIL PROTECTED]
http://mplayerhq.hu/mailman/listinfo/mplayer-dvb
 










--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: [Mplayer-dvb] mplayer playback through dvb takes 100% cpu time

2004-01-09 Thread Nico
TS meands MPEG-TS, the native format of  DVB streams.
If you experience that problem with divx files than your re-encoding 
divx to MPEG1
may be the problem (likely if your pc is slow);
on the other side if  your pc suffers when playing mpeg files (what I 
previously
called "PS") then there must be something else wrong.

You should report this problem to mplayer-users.

   Nico



Soeren Sonnenburg wrote:

On Fri, 2004-01-09 at 15:28, Nico wrote:
 

Does this happen only with TS files or with PS ones, too?
   

err, what ? Could you please be a bit more verbose ? It happens here
with divx files and real raw mpeg1/2 files... anything I found ...
Soeren



 





--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: [Mplayer-dvb] mplayer playback through dvb takes 100% cpu time

2004-01-09 Thread Soeren Sonnenburg
On Fri, 2004-01-09 at 15:28, Nico wrote:
> Does this happen only with TS files or with PS ones, too?

err, what ? Could you please be a bit more verbose ? It happens here
with divx files and real raw mpeg1/2 files... anything I found ...

Soeren



-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.



[linux-dvb] Re: [Mplayer-dvb] mplayer playback through dvb takes 100% cpu time

2004-01-09 Thread Nico
Does this happen only with TS files or with PS ones, too?

Dirk wrote:

Yes I have the same problem. Yesterday I postet the problem with 
nearly the same content like yours.
(Didn't see yours before, sorry).

Surprisingly the problem also exists when playing Files which where 
directly recorded from dvb -
so no convesion has to be done.
And even when the sound input is AC3 an I use -vo oss -af hwac3, CPU 
load is 100% :-(

Any Ideas?

Dirk

Soeren Sonnenburg wrote:

Hi.

I noticed a weirdness with mplayer and -vo mpegpes playback. If I don't
also use -ao mpegpes the CPU load goes up to 100% instead of like 10%,
i.e. both
mplayer -ao mpegpes -vo mpegpes 
and mplayer -nosound -vo mpegpes 
both take like 10% CPU but,
mplayer -ao null -vo mpegpes 
or
mplayer -ao alsa9 -vo mpegpes 
eat up all CPU there is but plays (of course gives frame drops)

Is anyone else observing this or even better knows the cause of it ?

Soeren.

___
Mplayer-dvb mailing list
[EMAIL PROTECTED]
http://mplayerhq.hu/mailman/listinfo/mplayer-dvb
 








--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: [Mplayer-dvb] mplayer playback through dvb takes 100% cpu time

2004-01-09 Thread Dirk
Yes I have the same problem. Yesterday I postet the problem with nearly 
the same content like yours.
(Didn't see yours before, sorry).

Surprisingly the problem also exists when playing Files which where 
directly recorded from dvb -
so no convesion has to be done.
And even when the sound input is AC3 an I use -vo oss -af hwac3, CPU 
load is 100% :-(

Any Ideas?

Dirk

Soeren Sonnenburg wrote:

Hi.

I noticed a weirdness with mplayer and -vo mpegpes playback. If I don't
also use -ao mpegpes the CPU load goes up to 100% instead of like 10%,
i.e. both 

mplayer -ao mpegpes -vo mpegpes 
and 
mplayer -nosound -vo mpegpes  

both take like 10% CPU but, 

mplayer -ao null -vo mpegpes 
or
mplayer -ao alsa9 -vo mpegpes 
eat up all CPU there is but plays (of course gives frame drops)

Is anyone else observing this or even better knows the cause of it ?

Soeren.

___
Mplayer-dvb mailing list
[EMAIL PROTECTED]
http://mplayerhq.hu/mailman/listinfo/mplayer-dvb
 



--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: ntuxplayer

2004-01-09 Thread Alexandre CONRAD
-d is for the device number of the video/audio device of an adaptor
that has more than one video/audio device, e.g. /dev/dvb/adapter0/audio[devnb]
What card has more than 1 ouput ? With the same card, I could read 2 
videos ?

 > I'm using :
 > ntuxplayer --adaptor 0 foo.mpg
 > and
 > ntuxplayer --adaptor 1 foo.mpg
 > 

Sorry, there is a mistake in the help message it should say either --adaptor
or -p (not -d).
ok. (TODO list)

 > Also, I have been doing maraton video. For some reason, sometimes (after 
 > a few hours) the video gets stuck. Apparently, it's not the board that 
 > has a problem (no frezze or hung), it's the ntuxplayer I think. So to 
 > make it going again, I have to kill PID (witch is the ntuxplayer line), 
 > and my playlist0.sh will continu going on with the next video, and it 
 > runs again for hours... until it gets stuck again.
 > 
 > Any ideas ?
 > 

No, never tried that. How long does it take?
It depends... can be 4 hours or 2 days... I can't really tell. It's 
pretty random. I usually let it run during the night, and usualy 1 of 
the boards gets stuck (or both) when I'm back in the morning. Killing 
ntuxplayer is enought for the playlist to keep going on with the next video.

I have a PC running now with a single board... it's been 13 hours ok 
since it's last boot. I also ran from the 4/01/2004 @ 13:45 until the 
06/01/2004 @ 04:18 then it got stuck.

What about having a playlist running with "&". Do you see the same 100% 
CPU problem ?

Regards,
--
Alexandre CONRAD - TLV
Research & Development
tel : +33 1 30 80 55 05
fax : +33 1 30 56 55 06
6, rue de la plaine
78860 - SAINT NOM LA BRETECHE
FRANCE


--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: Anyone got a Nova-T USB working?

2004-01-09 Thread Juha T. Okkonen
Holger Waechtler wrote:

Juha T. Okkonen wrote:

Holger Waechtler wrote:

Mark Thomas wrote:

Hi,

I'm trying (in vain) to get a Hauppauge Nova-T USB working on my Myth
box. I've managed to compile the Drivers successfully (I think) - and
insmod will insert the drivers into the kernel OK. I can see the USB
device attaching to the drivers in dmesg. However, at this point, I 
have
no dvb devices in /dev, so no DVB apps are working.



   I've had similar promblems with the USB-box. So I opened it up and
   found TD10046 and TI DSP-chip inside. Also driver software complains
   about unknown version 2.1.


Do you mead TDA10046? ough - that's a new one, not yet supported by 
the driver. In this case you would also have to load another frontend 
driver, probably tda1004x.o - but I don't know whether this one 
supports the tda10046 yet...
   You are correct, I did mean TDA10046. And only data I could find 
about it were some marketing stuff and
   two page brief technical note. Not much to work upon. And then I 
managed to even break the damn thing.

maybe the driver needs some work for the new box revision, 
   It seems to be the case

Holger
   Okko








--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: ntuxplayer

2004-01-09 Thread Marcus Metzler
Alexandre CONRAD writes:

 > executing the playlistX.sh file.
 > 
 > Also, what's the difference with :
 > ntuxplayer -d 0 foo.mpg
 > ntuxplayer --device 0 foo.mpg
 > ntuxplayer --adaptor 0 foo.mpg
 > 
 > When I try reading on the 2nd board with `ntuxplayer -d 1 foo.mpg` it 
 > tells me the device is busy. It's trying to read on the 1st one. So now 
-d is for the device number of the video/audio device of an adaptor
that has more than one video/audio device, e.g. /dev/dvb/adapter0/audio[devnb]

 > I'm using :
 > ntuxplayer --adaptor 0 foo.mpg
 > and
 > ntuxplayer --adaptor 1 foo.mpg
 > 

Sorry, there is a mistake in the help message it should say either --adaptor
or -p (not -d).

 > 
 > Also, I have been doing maraton video. For some reason, sometimes (after 
 > a few hours) the video gets stuck. Apparently, it's not the board that 
 > has a problem (no frezze or hung), it's the ntuxplayer I think. So to 
 > make it going again, I have to kill PID (witch is the ntuxplayer line), 
 > and my playlist0.sh will continu going on with the next video, and it 
 > runs again for hours... until it gets stuck again.
 > 
 > Any ideas ?
 > 

No, never tried that. How long does it take?


Marcus

-- 
/\
| Dr. Marcus O.C. Metzler|   |
| [EMAIL PROTECTED]| http://www.metzlerbros.de/|
\/
 |>>>I like GNU, but I couldn't eat a whole one  <<<|


-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.



[linux-dvb] Re: VHF DVB-T cards?

2004-01-09 Thread Nico
Hi,
glad to read from you: I live in Bologna, too!!
So is seems that that Nova-T from x-usa is working  well with VHF 
frequencies, right?

Is La7 working well too?

Thanks,
   Nico
Andrea Venturi wrote:

Robert Schlabbach wrote:

From: "Nico" <[EMAIL PROTECTED]>

down here in Italy the first DVB-T transmissions are popping up,
so I'm searching a good budget card to buy.
I want to avoid UHF-only  tuners, because VHF is going to be used here.
Hauppage doesn't list the tuner specs of their Nova-T cards,
so can someone post the list of options, please?


The _2002_ TechnoTrend Budget DVB-T card, which is also sold under 
the name
"Hauppauge Nova-T" (as well as Lorenzen SL DVB-T) supports VHF 
reception.
The card looks like this:

http://secret.cream.org/wintv-newtuner.jpg

I can say for sure that this card supports VHF, because I have the 
Lorenzen
card (without IR, unfortunately) and receive VHF channels 5 and 7 
with it
here in Berlin.



hi, you can see our nova-t here:

  http://marge.cineca.it/aventuri/public/nova-t.jpg

from usa-x.org (90 EUR today!)

http://www.usa-x.org/1shop/popup_image.php?pID=34

and are looking for these DVB-T signals in bologna:

it seems that we should already get some feed:

Canale  Pol  Bouquet  Provincia  Note
51 v La7 Bologna
G H Rai Bologna Bouquet A
52 H Rai Bologna Bouquet B

so it seems RAI is transmitting in VHF (from Asinelli tower in the 
center of Bologna!!) and La7 is transmitting from CastelMaggiore (i'm 
told)

this is a site interesting:

http://www.sat-net.org/dvbt/show.php?id_prov2=15&id_bouq2=99&Submit=Avvia+ricerca 

maybe we can share some experience!

bye




--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: Anyone got a Nova-T USB working?

2004-01-09 Thread Holger Waechtler
Juha T. Okkonen wrote:
Holger Waechtler wrote:

Mark Thomas wrote:

Hi,

I'm trying (in vain) to get a Hauppauge Nova-T USB working on my Myth
box. I've managed to compile the Drivers successfully (I think) - and
insmod will insert the drivers into the kernel OK. I can see the USB
device attaching to the drivers in dmesg. However, at this point, I have
no dvb devices in /dev, so no DVB apps are working.


   I've had similar promblems with the USB-box. So I opened it up and
   found TD10046 and TI DSP-chip inside. Also driver software complains
   about unknown version 2.1.
Do you mead TDA10046? ough - that's a new one, not yet supported by the 
driver. In this case you would also have to load another frontend 
driver, probably tda1004x.o - but I don't know whether this one supports 
the tda10046 yet...

maybe the driver needs some work for the new box revision,

Holger



--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: VHF DVB-T cards?

2004-01-09 Thread Andrea Venturi
Robert Schlabbach wrote:
From: "Nico" <[EMAIL PROTECTED]>

down here in Italy the first DVB-T transmissions are popping up,
so I'm searching a good budget card to buy.
I want to avoid UHF-only  tuners, because VHF is going to be used here.
Hauppage doesn't list the tuner specs of their Nova-T cards,
so can someone post the list of options, please?


The _2002_ TechnoTrend Budget DVB-T card, which is also sold under the name
"Hauppauge Nova-T" (as well as Lorenzen SL DVB-T) supports VHF reception.
The card looks like this:
http://secret.cream.org/wintv-newtuner.jpg

I can say for sure that this card supports VHF, because I have the Lorenzen
card (without IR, unfortunately) and receive VHF channels 5 and 7 with it
here in Berlin.


hi, you can see our nova-t here:

  http://marge.cineca.it/aventuri/public/nova-t.jpg

from usa-x.org (90 EUR today!)

http://www.usa-x.org/1shop/popup_image.php?pID=34

and are looking for these DVB-T signals in bologna:

it seems that we should already get some feed:

Canale  Pol Bouquet Provincia   Note
51  v   La7 Bologna 
G   H   Rai Bologna Bouquet A
52  H   Rai Bologna Bouquet B
so it seems RAI is transmitting in VHF (from Asinelli tower in the 
center of Bologna!!) and La7 is transmitting from CastelMaggiore (i'm told)

this is a site interesting:

http://www.sat-net.org/dvbt/show.php?id_prov2=15&id_bouq2=99&Submit=Avvia+ricerca

maybe we can share some experience!

bye


pgp0.pgp
Description: PGP signature


[linux-dvb] playing DVB channel with xine player

2004-01-09 Thread ABBAS AL-MUTAWA
Hi

i have just successfully play DVB with xine, however
there is no audio???, the picture is greate but there
is no sound?. i also cannot change the channel,the dvb
browser doesn't show any channels.

I have Twinhan Dst vp1020 card running under
mandrake9.1 kernel 2.6.0 

can anyone help

Thanks
abbas


__
Do you Yahoo!?
Yahoo! Hotjobs: Enter the "Signing Bonus" Sweepstakes
http://hotjobs.sweepstakes.yahoo.com/signingbonus


-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.



[linux-dvb] Re: Anyone got a Nova-T USB working?

2004-01-09 Thread Mark Thomas

On Fri, 09 Jan 2004 10:32:54 +0200, "Juha T. Okkonen"
<[EMAIL PROTECTED]> said:
> Holger Waechtler wrote:
> 
> > Mark Thomas wrote:
> >
> >> Hi,
> >>
> >> I'm trying (in vain) to get a Hauppauge Nova-T USB working on my Myth
> >> box. I've managed to compile the Drivers successfully (I think) - and
> >> insmod will insert the drivers into the kernel OK. I can see the USB
> >> device attaching to the drivers in dmesg. However, at this point, I have
> >> no dvb devices in /dev, so no DVB apps are working.
> >
> I've had similar promblems with the USB-box. So I opened it up and
> found TD10046 and TI DSP-chip inside. Also driver software complains
> about unknown version 2.1.

I'll hopefully have a look inside mine tonight Do these chips you
reference have an impact on which modules need to be inserted into the
kernel? Can you confirm if you have got your usb-box working yet?

Following Holgers info, I've made much more progress, and now have the
correct modules loaded (i think..), and the /dev/dvb devices - now, I'm
struggling to get it to tune to any channel with the scan utility (I'm
pretty sure I have the right frequency settings etc, as I referenced the
ones that work for me on Windows). 

> 
> >
> > You need to insert dvb-core.o dvb-ttusb-budget.o and alps_tdmb7.o 
> > (probably - I'm not aware of other DVB-T frontends used in these boxes).
> >
> >
> >> I see reference to putting a firmware into the build directory with
> >> regards to certain cards - is this relevant to the nova-t usb? 
> >
> >
> > Currently the firmware is still included in an header file 
> > (dvb-ttusb-dspbootcode.h) - so you don't have to worry about this.
> >
> > Holger
> >
> >
> >
> 
> 
> 
> 
> -- 
> Info:
> To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe
> linux-dvb" as subject.
> 


-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.



[linux-dvb] Re: ntuxplayer

2004-01-09 Thread Alexandre CONRAD
I have in my /etc/rc.local a command line that starts my playlist at 
bootup. There, ntuxplayer takes 99%. I comment out the playlist line 
in my rc.local and reboot.

I start my playlist manually, and it takes only from 0.7% to 3% max. I 
don't understand.


I have found where the problem comes from. But I don't know how to fix 
this.

/etc/rc.local contains 2 lines like :

playlist0.sh &
playlist1.sh &
playlist0.sh contains 'ntuxplayer -d 0 foo0.mpg'.
playlist1.sh contains 'ntuxplayer -d 1 foo1.mpg'.
When "playlist0.sh &" is launched with a "&", I get 99% CPU load. When I 
launch without the "&" everything's fine. But the problem is that I 
can't play plalist1.sh at the same time if I don't that "&".

I know this is a little off topic. It's more a linux problem I guess. 
With anychance, someone has maybe already seen that effect ? I think 
it's weired...
Hello,

I coudln't find how to fix this. You guys with full feature cards can 
please test this to see it you have the same symptoms ? Add a "&" when 
executing the playlistX.sh file.

Also, what's the difference with :
ntuxplayer -d 0 foo.mpg
ntuxplayer --device 0 foo.mpg
ntuxplayer --adaptor 0 foo.mpg
When I try reading on the 2nd board with `ntuxplayer -d 1 foo.mpg` it 
tells me the device is busy. It's trying to read on the 1st one. So now 
I'm using :
ntuxplayer --adaptor 0 foo.mpg
and
ntuxplayer --adaptor 1 foo.mpg

Also, I have been doing maraton video. For some reason, sometimes (after 
a few hours) the video gets stuck. Apparently, it's not the board that 
has a problem (no frezze or hung), it's the ntuxplayer I think. So to 
make it going again, I have to kill PID (witch is the ntuxplayer line), 
and my playlist0.sh will continu going on with the next video, and it 
runs again for hours... until it gets stuck again.

Any ideas ?

Best regards,
--
Alexandre CONRAD - TLV
Research & Development
tel : +33 1 30 80 55 05
fax : +33 1 30 56 55 06
6, rue de la plaine
78860 - SAINT NOM LA BRETECHE
FRANCE


--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: aver dvb-t

2004-01-09 Thread Itai Tavor
No, I wasn't - thanks - but it makes no difference :(

On 09/01/2004, at 8:04 PM, Hamish Moffatt wrote:

On Fri, Jan 09, 2004 at 07:29:08PM +1100, Itai Tavor wrote:
Thanks... sp887x wasn't missing - lsmod showed sp887x, but the sp887
firmware was in the wrong place.
Now tzap works and gets a lock - but nothing is coming out of
/dev/dvb/adapter0/dvr0. cat .../dvr0 just hangs. Any more tips?
Are you running tzap with '-r'? You need it if you want the data out of
dvr0.
Hamish
--
Hamish Moffatt VK3SB <[EMAIL PROTECTED]> <[EMAIL PROTECTED]>
--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe 
linux-dvb" as subject.




--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: aver dvb-t

2004-01-09 Thread Hamish Moffatt
On Fri, Jan 09, 2004 at 07:29:08PM +1100, Itai Tavor wrote:
> Thanks... sp887x wasn't missing - lsmod showed sp887x, but the sp887 
> firmware was in the wrong place.
> 
> Now tzap works and gets a lock - but nothing is coming out of 
> /dev/dvb/adapter0/dvr0. cat .../dvr0 just hangs. Any more tips?

Are you running tzap with '-r'? You need it if you want the data out of
dvr0.

Hamish
-- 
Hamish Moffatt VK3SB <[EMAIL PROTECTED]> <[EMAIL PROTECTED]>


-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.



[linux-dvb] Re: Problem with SKY2PC 2.3 on slower machine

2004-01-09 Thread Niklas Peinecke
Petar Ristic wrote:
I downloaded linuxtv-dvb-1.0.0.tar.gz, compile ...
 
insmod with:
insmod dvb-core dvb_shutdown_timeout=0
insmod mt312
insmod skystar2
 
szap look OK:
 
/usr/local/bin/szap -c /etc/channels.conf -n 2 -r  -x
 
Uh, I just noticed you were using the -x option with szap! Try without 
and kepp szap running in one terminal while starting mplayer in an 
other, that should work.

Niklas



--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: Problem with SKY2PC 2.3 on slower machine

2004-01-09 Thread Nico
Nothng is coming out of /dev/dvb/adapter0/frontend0.
RTL should go, but what you are trying to tune to with dvb:// is 
Premiere (12070) , which is encrypted,
so you can't get it.

Have you tried other frequencies?

http://www.lyngsat.com/astra19.shtml



Petar Ristic wrote:

I downloaded linuxtv-dvb-1.0.0.tar.gz, compile ...
 
insmod with:
insmod dvb-core dvb_shutdown_timeout=0
insmod mt312
insmod skystar2
 
szap look OK:
 
/usr/local/bin/szap -c /etc/channels.conf -n 2 -r  -x
 
reading channels from file '/etc/channels.conf'
zapping to 'RTL':
sat 0, frequency = 12188 MHz H, symbolrate 2750, vpid = 0x00a3, 
apid = 0x0068
using '/dev/dvb/adapter0/frontend0' and '/dev/dvb/adapter0/demux0'
status 03 | signal 3eaa | snr c85b | ber  | unc  |
status 1b | signal 3ec7 | snr ccff | ber  | unc  | 
FE_HAS_LOCK
But there is problem:
When use mplayer I got this:
 
mplayer - < /dev/dvb/adapter0/dvr0
 

MPlayer dev-CVS-040104-06:00-3.3.1 (C) 2000-2003 MPlayer Team
 
CPU: Intel Celeron A Mendocino/Pentium II Dixon 501.6 MHz (Family: 6, 
Stepping: 5)
Detected cache-line size is 32 bytes
CPUflags:  MMX: 1 MMX2: 0 3DNow: 0 3DNow2: 0 SSE: 0 SSE2: 0
Compiled for x86 CPU with extensions: MMX
 
Reading config file /usr/local/etc/mplayer/mplayer.confReading config 
file /root/.mplayer/config
Reading /root/.mplayer/codecs.conf: Reading 
/usr/local/etc/mplayer/codecs.conf: Using built-in default codecs.conf.
font: can't open file: /root/.mplayer/font/font.desc
font: can't open file: /usr/local/share/mplayer/font/font.desc
Using usleep() timing
Setting up LIRC support...
 
Playing -.
Reading from stdin...
 
program stopped here and there no video window...
also...
 
mplayer dvb://
 

MPlayer dev-CVS-040104-06:00-3.3.1 (C) 2000-2003 MPlayer Team
 
CPU: Intel Celeron A Mendocino/Pentium II Dixon 501.7 MHz (Family: 6, 
Stepping: 5)
Detected cache-line size is 32 bytes
CPUflags:  MMX: 1 MMX2: 0 3DNow: 0 3DNow2: 0 SSE: 0 SSE2: 0
Compiled for x86 CPU with extensions: MMX
 
Reading config file /usr/local/etc/mplayer/mplayer.confReading config 
file /root/.mplayer/config
Reading /root/.mplayer/codecs.conf: Reading 
/usr/local/etc/mplayer/codecs.conf: Using built-in default codecs.conf.
font: can't open file: /root/.mplayer/font/font.desc
font: can't open file: /usr/local/share/mplayer/font/font.desc
Using usleep() timing
Setting up LIRC support...
 
Playing dvb://.
TUNER TYPE SEEMS TO BE DVB-S
code taken from dvbstream for mplayer v0.4pre1 - (C) Dave Chapman 2001
Released under the GPL.
Latest version available from http://www.linuxstb.org/
dvb_tune Freq: 1207
TS file format detected.
DEMUX OPEN, AUDIO_ID: -1, VIDEO_ID: -1, SUBTITLE_ID: -1,
PROBING UP TO 200, PROG: 0
NO VIDEO! NO AUDIO!  NO SUBS (yet)!
Opened TS demuxer, audio: (pid -1), video: (pid 
-1)...POS=0
TS file format detected.
DEMUX OPEN, AUDIO_ID: -1, VIDEO_ID: -1, SUBTITLE_ID: -1,
PROBING UP TO 200, PROG: 0
NO VIDEO! NO AUDIO!  NO SUBS (yet)!
Opened TS demuxer, audio: (pid -1), video: (pid 
-1)...POS=0
TS file format detected.
DEMUX OPEN, AUDIO_ID: -1, VIDEO_ID: -1, SUBTITLE_ID: -1,
PROBING UP TO 200, PROG: 0
NO VIDEO! NO AUDIO!  NO SUBS (yet)!
Opened TS demuxer, audio: (pid -1), video: (pid 
-1)...POS=0
 

Exiting... (End of file)
 
 
 
When use xin, program loaded, blocked and cannot be ended.
 
Machine is Celeron 333 overclocked on 500 with Microchip mr748mr board 
(SIS620 integrated graphic).Card is SKY2PC v2.3. System is SuSe 9.0. 
Everything work ok on w98.
 
What is problem??? or What I do wrong?
 
 




--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: Anyone got a Nova-T USB working?

2004-01-09 Thread Juha T. Okkonen
Holger Waechtler wrote:

Mark Thomas wrote:

Hi,

I'm trying (in vain) to get a Hauppauge Nova-T USB working on my Myth
box. I've managed to compile the Drivers successfully (I think) - and
insmod will insert the drivers into the kernel OK. I can see the USB
device attaching to the drivers in dmesg. However, at this point, I have
no dvb devices in /dev, so no DVB apps are working.

   I've had similar promblems with the USB-box. So I opened it up and
   found TD10046 and TI DSP-chip inside. Also driver software complains
   about unknown version 2.1.
You need to insert dvb-core.o dvb-ttusb-budget.o and alps_tdmb7.o 
(probably - I'm not aware of other DVB-T frontends used in these boxes).


I see reference to putting a firmware into the build directory with
regards to certain cards - is this relevant to the nova-t usb? 


Currently the firmware is still included in an header file 
(dvb-ttusb-dspbootcode.h) - so you don't have to worry about this.

Holger







--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: aver dvb-t

2004-01-09 Thread Itai Tavor
Thanks... sp887x wasn't missing - lsmod showed sp887x, but the sp887 
firmware was in the wrong place.

Now tzap works and gets a lock - but nothing is coming out of 
/dev/dvb/adapter0/dvr0. cat .../dvr0 just hangs. Any more tips?

Itai

On 09/01/2004, at 7:00 PM, Mark Edwards wrote:

you're missing the sp887x.o frontend driver

Mark
- Original Message -
From: "Itai Tavor" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, January 09, 2004 1:19 PM
Subject: [linux-dvb] Re: aver dvb-t

On 07/01/2004, at 9:00 PM, Hai Tran wrote:

I finally got the aver dvb-t card working two days ago, I am now
trying to get the ttusb_dec working.
When I had the aver dvb-t card working I was running

Mandrake 9.2, kernel 2.4.23, with the patches from bytesex.org. I
used the dvb-kernel/build-2.4 CVS build from 4 days ago.
I initially had problems getting the card to work, two issues I 
found,
that once resolved fixed up my problems.

1.  bttv version
2.  missing firmware in /etc/dvb/
Onced fixed, I could view the dvb-broadcast with Xine
I've been trying to get my Aver DVB-T to work for weeks. I'm using
Fedora Core 1 with kernel 2.4.23-epia1, dvb-kernel updated just now
from CVS and video4linux-20040107. I get this on startup:
bttv: driver version 0.9.12 loaded
bttv: snapshot date 2004-01-07
bttv: using 8 buffers with 2080k (520 pages) each for capture
bttv: Bt8xx card found (0).
bttv0: Bt878 (rev 17) at 00:14.0, irq: 10, latency: 32, mmio: 
0xe2003000
bttv0: subsystem: 1461:0761 (UNKNOWN)
please mail id, board name and the correct card= insmod option to
[EMAIL PROTECTED]
bttv0: using:  *** UNKNOWN/GENERIC ***  [card=0,autodetected]
bttv0: gpio: en=, out= in=009c00dd [init]
i2c-core.o: adapter bt878 #0 [hw] registered as adapter 0.
bttv0: using tuner=-1
bttv0: i2c: checking for MSP34xx @ 0x80... not found
bttv0: i2c: checking for TDA9875 @ 0xb0... not found
bttv0: i2c: checking for TDA7432 @ 0x8a... not found
bttv0: registered device video3
bttv0: registered device vbi0
bt878: AUDIO driver version 0.0.0 loaded
bt878: Bt878 AUDIO function found (0).
bt878(0): Bt878 (rev 17) at 00:14.1, irq: 10, latency: 32, memory:
0xe2004000
DVB: registering new adapter (Ave).
i2c-core.o: driver i2c TV tuner driver registered.
i2c-core.o: driver saa7115 registered.
saa7114.c: starting probe for adapter bt878 #0 [hw] (0x10005)

and tzap returns:

using '/dev/dvb/adapter0/frontend0' and '/dev/dvb/adapter0/demux0'
ERROR: failed opening '/dev/dvb/adapter0/frontend0' (No such device)
I don't know why bttv still fails to recognize the card type. I tried
modprobe bttv card=105 (found that number is someone's forum post) but
got the same result.
Any tips on what I should do now?

TIA, Itai

--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe
linux-dvb" as subject.




--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe 
linux-dvb" as subject.




--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.


[linux-dvb] Re: aver dvb-t

2004-01-09 Thread Mark Edwards
you're missing the sp887x.o frontend driver

Mark
- Original Message -
From: "Itai Tavor" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, January 09, 2004 1:19 PM
Subject: [linux-dvb] Re: aver dvb-t


>
> On 07/01/2004, at 9:00 PM, Hai Tran wrote:
>
> > I finally got the aver dvb-t card working two days ago, I am now
> > trying to get the ttusb_dec working.
> >
> > When I had the aver dvb-t card working I was running
> >
> > Mandrake 9.2, kernel 2.4.23, with the patches from bytesex.org. I
> > used the dvb-kernel/build-2.4 CVS build from 4 days ago.
> >
> > I initially had problems getting the card to work, two issues I found,
> > that once resolved fixed up my problems.
> >
> > 1.  bttv version
> > 2.  missing firmware in /etc/dvb/
> >
> > Onced fixed, I could view the dvb-broadcast with Xine
>
> I've been trying to get my Aver DVB-T to work for weeks. I'm using
> Fedora Core 1 with kernel 2.4.23-epia1, dvb-kernel updated just now
> from CVS and video4linux-20040107. I get this on startup:
>
> bttv: driver version 0.9.12 loaded
> bttv: snapshot date 2004-01-07
> bttv: using 8 buffers with 2080k (520 pages) each for capture
> bttv: Bt8xx card found (0).
> bttv0: Bt878 (rev 17) at 00:14.0, irq: 10, latency: 32, mmio: 0xe2003000
> bttv0: subsystem: 1461:0761 (UNKNOWN)
> please mail id, board name and the correct card= insmod option to
> [EMAIL PROTECTED]
> bttv0: using:  *** UNKNOWN/GENERIC ***  [card=0,autodetected]
> bttv0: gpio: en=, out= in=009c00dd [init]
> i2c-core.o: adapter bt878 #0 [hw] registered as adapter 0.
> bttv0: using tuner=-1
> bttv0: i2c: checking for MSP34xx @ 0x80... not found
> bttv0: i2c: checking for TDA9875 @ 0xb0... not found
> bttv0: i2c: checking for TDA7432 @ 0x8a... not found
> bttv0: registered device video3
> bttv0: registered device vbi0
> bt878: AUDIO driver version 0.0.0 loaded
> bt878: Bt878 AUDIO function found (0).
> bt878(0): Bt878 (rev 17) at 00:14.1, irq: 10, latency: 32, memory:
> 0xe2004000
> DVB: registering new adapter (Ave).
> i2c-core.o: driver i2c TV tuner driver registered.
> i2c-core.o: driver saa7115 registered.
> saa7114.c: starting probe for adapter bt878 #0 [hw] (0x10005)
>
> and tzap returns:
>
> using '/dev/dvb/adapter0/frontend0' and '/dev/dvb/adapter0/demux0'
> ERROR: failed opening '/dev/dvb/adapter0/frontend0' (No such device)
>
> I don't know why bttv still fails to recognize the card type. I tried
> modprobe bttv card=105 (found that number is someone's forum post) but
> got the same result.
>
> Any tips on what I should do now?
>
> TIA, Itai
>
>
> --
> Info:
> To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe
linux-dvb" as subject.
>
>



-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.



[linux-dvb] Re: Problem with SKY2PC 2.3 on slower machine

2004-01-09 Thread Niklas Peinecke
Hi Petar,

have you tried scan? Does it work? Have you tried to tune to other 
channels than RTL?

Note that you must keep szap running when reading from dvr0 with mplayer.

You could also try the newest drivers from CVS / dvb-kernel branch.

Niklas

Petar Ristic wrote:
I downloaded linuxtv-dvb-1.0.0.tar.gz, compile ...
 
insmod with:
insmod dvb-core dvb_shutdown_timeout=0
insmod mt312
insmod skystar2
 
szap look OK:
 
/usr/local/bin/szap -c /etc/channels.conf -n 2 -r  -x
 
reading channels from file '/etc/channels.conf'
zapping to 'RTL':
sat 0, frequency = 12188 MHz H, symbolrate 2750, vpid = 0x00a3, apid 
= 0x0068
using '/dev/dvb/adapter0/frontend0' and '/dev/dvb/adapter0/demux0'
status 03 | signal 3eaa | snr c85b | ber  | unc  |
status 1b | signal 3ec7 | snr ccff | ber  | unc  | 
FE_HAS_LOCK
But there is problem:
When use mplayer I got this:
 
mplayer - < /dev/dvb/adapter0/dvr0
 

MPlayer dev-CVS-040104-06:00-3.3.1 (C) 2000-2003 MPlayer Team
 
CPU: Intel Celeron A Mendocino/Pentium II Dixon 501.6 MHz (Family: 6, 
Stepping: 5)
Detected cache-line size is 32 bytes
CPUflags:  MMX: 1 MMX2: 0 3DNow: 0 3DNow2: 0 SSE: 0 SSE2: 0
Compiled for x86 CPU with extensions: MMX
 
Reading config file /usr/local/etc/mplayer/mplayer.confReading config 
file /root/.mplayer/config
Reading /root/.mplayer/codecs.conf: Reading 
/usr/local/etc/mplayer/codecs.conf: Using built-in default codecs.conf.
font: can't open file: /root/.mplayer/font/font.desc
font: can't open file: /usr/local/share/mplayer/font/font.desc
Using usleep() timing
Setting up LIRC support...
 
Playing -.
Reading from stdin...
 
program stopped here and there no video window...
also...
 
mplayer dvb://
 

MPlayer dev-CVS-040104-06:00-3.3.1 (C) 2000-2003 MPlayer Team
 
CPU: Intel Celeron A Mendocino/Pentium II Dixon 501.7 MHz (Family: 6, 
Stepping: 5)
Detected cache-line size is 32 bytes
CPUflags:  MMX: 1 MMX2: 0 3DNow: 0 3DNow2: 0 SSE: 0 SSE2: 0
Compiled for x86 CPU with extensions: MMX
 
Reading config file /usr/local/etc/mplayer/mplayer.confReading config 
file /root/.mplayer/config
Reading /root/.mplayer/codecs.conf: Reading 
/usr/local/etc/mplayer/codecs.conf: Using built-in default codecs.conf.
font: can't open file: /root/.mplayer/font/font.desc
font: can't open file: /usr/local/share/mplayer/font/font.desc
Using usleep() timing
Setting up LIRC support...
 
Playing dvb://.
TUNER TYPE SEEMS TO BE DVB-S
code taken from dvbstream for mplayer v0.4pre1 - (C) Dave Chapman 2001
Released under the GPL.
Latest version available from http://www.linuxstb.org/
dvb_tune Freq: 1207
TS file format detected.
DEMUX OPEN, AUDIO_ID: -1, VIDEO_ID: -1, SUBTITLE_ID: -1,
PROBING UP TO 200, PROG: 0
NO VIDEO! NO AUDIO!  NO SUBS (yet)!
Opened TS demuxer, audio: (pid -1), video: (pid -1)...POS=0
TS file format detected.
DEMUX OPEN, AUDIO_ID: -1, VIDEO_ID: -1, SUBTITLE_ID: -1,
PROBING UP TO 200, PROG: 0
NO VIDEO! NO AUDIO!  NO SUBS (yet)!
Opened TS demuxer, audio: (pid -1), video: (pid -1)...POS=0
TS file format detected.
DEMUX OPEN, AUDIO_ID: -1, VIDEO_ID: -1, SUBTITLE_ID: -1,
PROBING UP TO 200, PROG: 0
NO VIDEO! NO AUDIO!  NO SUBS (yet)!
Opened TS demuxer, audio: (pid -1), video: (pid -1)...POS=0
 

Exiting... (End of file)
 
 
 
When use xin, program loaded, blocked and cannot be ended.
 
Machine is Celeron 333 overclocked on 500 with Microchip mr748mr board 
(SIS620 integrated graphic).Card is SKY2PC v2.3. System is SuSe 9.0. 
Everything work ok on w98.
 
What is problem??? or What I do wrong?
 
 




--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as 
subject.