[vdr] [ANNOUNCE] vdr-iptv-0.3.0

2009-06-04 Thread Rolf Ahrenberg

Hi,

a new version of IPTV plugin is now available and contains an important 
bug fix that enables correct channel switches between different 
protocols.

http://www.saunalahti.fi/~rahrenbe/vdr/iptv/

2009-06-01: Version 0.3.0

- Added iptvstream-notrap.sh script.
- Fixed setting parameters when protocol changes (Thanks to Peter Holik 
for reporting this one).
- Updated example scripts to use ffmpeg's direct UDP output and added a 
new "image.sh" script (Thanks to Peter Holik).

BR,
--
rofa

___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] [ANNOUNCE] vdr-iptv-0.3.0

2009-06-16 Thread Matthias Haas
Hello Rolf,
thank you for this release. I just have one problem. It seems as if the
new version tends to start a vlc process (i.e. I have internet radios
configured) some time after my vdr is started. It seems to be connected
to the epg scan or some other process that is triggered some time after
I start the vdr process. I did not have the problem with my previous
version of the plugin 0.2.6.
I looked a little bit around in the code and it seems to be connected to
the method cIptvStreamer::Set which you seem to have changed in 0.3.0. I
did not have time to look deeper in the code, but as soon as I restored
this code to 0.2.6 version in the 0.3.0 problem I do not have the
problem anymore that a vlc process from my internetradio script is
started right after vdr startup.

Thanks in advance

Matthias

>
> Hi,
>
> a new version of IPTV plugin is now available and contains an important
> bug fix that enables correct channel switches between different
> protocols.
>
> http://www.saunalahti.fi/~rahrenbe/vdr/iptv/
>
> 2009-06-01: Version 0.3.0
>
> - Added iptvstream-notrap.sh script.
> - Fixed setting parameters when protocol changes (Thanks to Peter Holik
> for reporting this one).
> - Updated example scripts to use ffmpeg's direct UDP output and added a
> new "image.sh" script (Thanks to Peter Holik).
>
> BR,
> --
> rofa
>
> ___
> 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


Re: [vdr] [ANNOUNCE] vdr-iptv-0.3.0

2009-06-17 Thread Rolf Ahrenberg
On Tue, 16 Jun 2009, Matthias Haas wrote:

> thank you for this release. I just have one problem. It seems as if the
> new version tends to start a vlc process (i.e. I have internet radios
> configured) some time after my vdr is started. It seems to be connected
> to the epg scan or some other process that is triggered some time after
> I start the vdr process. I did not have the problem with my previous
> version of the plugin 0.2.6.

VDR does EIT scanning to transponders in background and this starts up 
your VLC processes as you suspected. However, the downgrading to earlier 
version is not a proper solution as it brings up some other problems. 
The 0.3.0 should be compliant with VDR's API definitions, but I you 
don't likethe background EIT scanning, you can always disable it via 
setup menu or with the following patch (if you want to disable it only 
for plugin sources):

--- vdr-1.7.8-vanilla/eitscan.c 2009-06-15 17:31:45.0 +0300
+++ vdr-1.7.8-disable_eitscan/eitscan.c 2009-06-17 10:52:17.0 
+0300
@@ -146,7 +146,7 @@
 if (Device) {
for (cScanData *ScanData = scanList->First(); ScanData; 
ScanData = scanList->Next(ScanData)) {
const cChannel *Channel = ScanData->GetChannel();
-  if (Channel) {
+  if (Channel && !Channel->IsPlug()) {
   if (!Channel->Ca() || Channel->Ca() == 
Device->DeviceNumber() + 1 || Channel->Ca() >= CA_ENCRYPTED_MIN) {
  if (Device->ProvidesTransponder(Channel)) {
 if (!Device->Receiving()) {

BR,
--
rofa

___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr