Re: [vdr] playing mp3's over smb (lockup)
Hi Stefan, On Fr, Mär 02, 2007 at 07:56:14 +, Stefan Huelswitt wrote: > On 02 Mar 2007 Stone <[EMAIL PROTECTED]> wrote: > > > > I have noticed that when I mount a samba drive on my vdr box and play mp3's > > with vdr from it, vdr will often lockup and require a restart. But, the > > strange thing about this is that this only happens when using the mpeg > > decoder on the FF card. If I use vdr-xine as the playback method with my FF > > card, then vdr never locks up when playing mp3's over the samba drive. > > Would there happen to be a buffer that needs to be increased? The lockup > > always occurs when a new mp3 is just about to start. > > Which background mode does you use? > If it's "image", try to use "black". > There is still some bug in firmware which causes the stillpicture > ioctl to look up. > The backgroundmode was the Problem I reported a few days ago. If I switch to Livemode everything works nearly ok. Remember: If I use backgroundmode black, I cannot navigate back in the playlists and the first two seconds were skipped of every track . In livemode the first two seconds were skipped but nothing of the other tracks. This Problem did not exist with the previous firmware. Thanks Halim ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] playing mp3's over smb (lockup)
On 3/1/07, Stefan Huelswitt <[EMAIL PROTECTED]> wrote: On 02 Mar 2007 Stone <[EMAIL PROTECTED]> wrote: > > I have noticed that when I mount a samba drive on my vdr box and play mp3's > with vdr from it, vdr will often lockup and require a restart. But, the > strange thing about this is that this only happens when using the mpeg > decoder on the FF card. If I use vdr-xine as the playback method with my FF > card, then vdr never locks up when playing mp3's over the samba drive. > Would there happen to be a buffer that needs to be increased? The lockup > always occurs when a new mp3 is just about to start. Which background mode does you use? If it's "image", try to use "black". There is still some bug in firmware which causes the stillpicture ioctl to look up. Thanks for the suggestion. So the problem is within the firmware it seems. I have been using the "image" option as the background to display the album art. Lets see what happens when I turn that off. Best Regards. ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] playing mp3's over smb (lockup)
On 3/2/07, Halim Sahin <[EMAIL PROTECTED]> wrote: Hi Stefan, On Fr, Mär 02, 2007 at 07:56:14 +, Stefan Huelswitt wrote: > On 02 Mar 2007 Stone <[EMAIL PROTECTED]> wrote: > > > > I have noticed that when I mount a samba drive on my vdr box and play mp3's > > with vdr from it, vdr will often lockup and require a restart. But, the > > strange thing about this is that this only happens when using the mpeg > > decoder on the FF card. If I use vdr-xine as the playback method with my FF > > card, then vdr never locks up when playing mp3's over the samba drive. > > Would there happen to be a buffer that needs to be increased? The lockup > > always occurs when a new mp3 is just about to start. > > Which background mode does you use? > If it's "image", try to use "black". > There is still some bug in firmware which causes the stillpicture > ioctl to look up. > The backgroundmode was the Problem I reported a few days ago. If I switch to Livemode everything works nearly ok. Remember: If I use backgroundmode black, I cannot navigate back in the playlists and the first two seconds were skipped of every track . In livemode the first two seconds were skipped but nothing of the other tracks. This Problem did not exist with the previous firmware. I'm seeing the same thing you are telling me. Seems like another firmware bug. Best Regards. ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
[vdr] How to get sound with tvtime ?
Hi, I want to use tvtime with vdr and my Full Feature DVB-S. With “tvtime -d /dev/video0”, i have the video but not the sound. How can i obtain the sound with tvtime? If I plug my Loudspeakers to the DVB-S, I have a little shift between the sound and the image. Thank you. Guy ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] (solved !) ERROR: video data stream broken on second dvb card, but szap work
Hi, Dieter Bloms wrote: >> I've had a further look into szap's source how it detects the status >> FE_LOCKED. Attached is an updated tuner patch which now also reports >> details for FE_READ_STATUS. > > I've tried your patch and the new vdr-1.4.5-2 for some days now and > it works even when I disable diseqc ! > So I have to say: greate work Reinhard and many many thanks to you !!! Would you mind posting some of the new log lines which the last patch added? It would be good to prove my assumptions ;-) BTW: vdr-1.5.1 uses a further "developed" loop (in regard the the last patch) which is much closer to what szap does. The relevant part of dvbdevice.c looks like that: while (1) { if (ioctl(fd_frontend, FE_READ_STATUS, &Status) != -1) return true; if (errno != EINTR) break; } return false; Bye. -- Dipl.-Inform. (FH) Reinhard Nissl mailto:[EMAIL PROTECTED] ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] 6-channel audio from analog?
Hi, Simon Baxter wrote: > My media box has 6 channel output LF,RF,LR,RR,C,SW which I'm using with > ALSA. Mplayer plays through all channels fine (settings in > ~/.mplayer/config), but VDR sourced audio only plays in stereo from the > LR,RF output. > > Given that there is no way to play 'real' surround sound from pvrinput > sourced audio, what is the easiest way to 'copy' the audio to the other > channels, so I at least get sound out all the speakers? > > Hmm, perhaps this is a setting in xine...? Just add --post-plugin upmix to the command line, e. g. ... --post vdr_audio --post upmix_mono --post upmix ... This is what the audio plugins do: - vdr_audio is used to select the left or the right channel of a stereo audio stream by copying the audio data from the left channel to the right or vice versa. In that way the stream has still two -- now identical -- channels. This one may be omitted if you do not need this functionality. - upmix_mono mixes a mono stream (single channel) into a "stereo" stream with two identical channels. This one may be omitted if you do not need this functionality. - upmix finally mixes a stereo stream into a 5.1 stream with 6 different channels. All plugins process the audio stream under certain conditions so there is no waste of CPU power and hence no need to remove or disable them in certain situations, e. g. when replaying 5.1 content. Keep in mind to select 5.1 as your speaker arrangement in xine's audio setup page. Bye. -- Dipl.-Inform. (FH) Reinhard Nissl mailto:[EMAIL PROTECTED] ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
[vdr] Wakeup On LAN
Hello, I'm trying to wakeup my Siemens Scaleo-T using WOL - but without success :-( The PC to wakeup: - Siemens Scaleo-T AMD64 with Onboard LAN (Tulip chip) - Linux 2.6.20 with ACPI enabled - Gentoo amd64 The router: - ASUS WL-500g Deluxe - OpenWrt White Russian - With X-Wrt Extensions RC6 - WOL-Software: wol What I've done: - BIOS: Wakeup controlled by BIOS and WOL enabled - Gentoo: echo -n PCI0 > /proc/acpi/wakeup ; halt - Router: wol -h PC-IP-Addr PC-MAC-Addr I've configured the router to start wol periodically. On the PC wireshark is now showing incoming UDP packets to the UDP port 4. The packet contains the ethernet frame, the IP header, the UDP header and the magic data (6x 0xff and 16x MAC-Addr). It seems all ok - but the PC will not be started. What's going wrong? Should I use some ACPI sleep mode? Is this supported by the DVB drivers? Is the Siemens PC not usable for WOL? Thanks for help, Bernd -- Obwohl das Weltall expandiert, findet man nirgendwo Parkplätze. -- BR Space night ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] Wakeup On LAN
Bernd Juraschek wrote: Hello, What I've done: - BIOS: Wakeup controlled by BIOS and WOL enabled - Gentoo: echo -n PCI0 > /proc/acpi/wakeup ; halt - Router: wol -h PC-IP-Addr PC-MAC-Addr I use etherwake to send wol packet (it sends ethernet packets, not udp one that doesn't work with my lan card). ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] Wakeup On LAN
> >- BIOS: Wakeup controlled by BIOS and WOL enabled > >- Gentoo: echo -n PCI0 > /proc/acpi/wakeup ; halt > >- Router: wol -h PC-IP-Addr PC-MAC-Addr > > I use etherwake to send wol packet (it sends ethernet packets, not udp > one that doesn't work with my lan card). Now the PC gets pure ethernet frames containing the magic packet. But nothing happens ... ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] Wakeup On LAN
Bernd Juraschek schrieb: >>> - BIOS: Wakeup controlled by BIOS and WOL enabled >>> - Gentoo: echo -n PCI0 > /proc/acpi/wakeup ; halt >>> - Router: wol -h PC-IP-Addr PC-MAC-Addr >> I use etherwake to send wol packet (it sends ethernet packets, not udp >> one that doesn't work with my lan card). > > Now the PC gets pure ethernet frames containing the magic packet. But > nothing happens ... > Have you tried disabling "RC_DOWN_INTERFACE" in /etc/conf.d/rc ? # RC_DOWN_INTERFACE allows you to specify if RC will bring the interface # completely down when it stops. The default is yes, but there are some # instances where you may not want this to happen such as using Wake On LAN. RC_DOWN_INTERFACE="no" ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] Wakeup On LAN
> Have you tried disabling "RC_DOWN_INTERFACE" in /etc/conf.d/rc ? Hmm - it was disabled already :-( ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] Wakeup On LAN
Have you tried ethtool to setup WoL options? I run "ethtool -s eth0 wol pg". - Kimmo _ Alkuperäinen viesti _ Aihe: [vdr] Wakeup On LAN Tekijä: "Bernd Juraschek" <[EMAIL PROTECTED]> Päivämäärä: 3. maaliskuuta 2007 1:18:32 Hello, I'm trying to wakeup my Siemens Scaleo-T using WOL - but without success :-( The PC to wakeup: - Siemens Scaleo-T AMD64 with Onboard LAN (Tulip chip) - Linux 2.6.20 with ACPI enabled - Gentoo amd64 The router: - ASUS WL-500g Deluxe - OpenWrt White Russian - With X-Wrt Extensions RC6 - WOL-Software: wol What I've done: - BIOS: Wakeup controlled by BIOS and WOL enabled - Gentoo: echo -n PCI0 > /proc/acpi/wakeup ; halt - Router: wol -h PC-IP-Addr PC-MAC-Addr I've configured the router to start wol periodically. On the PC wireshark is now showing incoming UDP packets to the UDP port 4. The packet contains the ethernet frame, the IP header, the UDP header and the magic data (6x 0xff and 16x MAC-Addr). It seems all ok - but the PC will not be started. What's going wrong? Should I use some ACPI sleep mode? Is this supported by the DVB drivers? Is the Siemens PC not usable for WOL? Thanks for help, Bernd -- Obwohl das Weltall expandiert, findet man nirgendwo Parkplätze. -- BR Space night ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr