Re: [vdr] Freeview+ aka TV-Anytime Patch (updated)

2008-10-06 Thread Frank Scherthan
Laz schrieb:
> On Sunday 05 Oct 2008, Gavin Hamill wrote:
>> On Sun, 2008-10-05 at 15:10 +0100, Dave P wrote:
> On another Freeview specific note, I'd love to have my channels renumbered 
> to their "proper" Freeview numbers. At the moment, I have to go through 
> and move them about by hand every time something changes! I don't think 
> there is currently any support for assigning channels a specific number 
> within vdr (probably not much point with gazillions of satellite channels 
> but more useful with the handful of terrestrial Freeview ones in the UK).

man 5 vdr:
A group delimiter can also be used to just set the next channel’s
number, without an explicit delimiter text, as in
   :@201

Frank ;)

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


[vdr] reelchannelscan for S2API-patched VDR

2008-10-17 Thread Frank Scherthan
Hi,

I patched the reelchannelscan-plugin to compile with my patched S2API-VDR.

What I use:
VDR 1.7.1 with
 - vdr-1.7.1_extensions.diff
 - vdr-1.7.1-ext_h264.diff
 - vdr-1.7.1-s2api-ext64.patch

reelchannelscan-plugin from svn
svn co svn://reelbox.org/testing/src/vdr-plugins/src/channelscan-0.6.1
-r9031

and my attached patch.

Beware: I DON'T KNOW WHAT I AM DOING HERE!
It compiles, it scans transponder and finds channels.
It works for me, but I'm no C or C++ programmer...

--
Frank Scherthan

diff -Nu channelscan-0.6.1/channelscan.c channelscan-0.6.1_fks/channelscan.c
--- channelscan-0.6.1/channelscan.c	2008-10-17 14:33:07.0 +0200
+++ channelscan-0.6.1_fks/channelscan.c	2008-10-17 13:57:11.0 +0200
@@ -74,9 +74,11 @@
 #ifdef REELVDR
 SetupStore("ServiceType", "channelscan", ScanSetup.ServiceType);
 SetupStore("Logfile", "channelscan", ScanSetup.EnableLogfile);
+	SetupStore("AddNewChannels", "channelscan", ScanSetup.AddNewChannels);
 #else
 SetupStore("ServiceType", ScanSetup.ServiceType);
 SetupStore("Logfile", ScanSetup.EnableLogfile);
+	SetupStore("AddNewChannels", ScanSetup.AddNewChannels);
 #endif
 }
 
diff -Nu channelscan-0.6.1/channelscan.h channelscan-0.6.1_fks/channelscan.h
--- channelscan-0.6.1/channelscan.h	2008-10-17 14:33:07.0 +0200
+++ channelscan-0.6.1_fks/channelscan.h	2008-10-17 07:46:26.0 +0200
@@ -49,6 +49,8 @@
 int ServiceType;
 int EnableLogfile;
   std::string logfile;
+int AddNewChannels;
+
 };
 
 
diff -Nu channelscan-0.6.1/csmenu.c channelscan-0.6.1_fks/csmenu.c
--- channelscan-0.6.1/csmenu.c	2008-10-17 14:33:07.0 +0200
+++ channelscan-0.6.1_fks/csmenu.c	2008-10-17 07:46:24.0 +0200
@@ -164,7 +164,7 @@
 addNewChannelsToTexts[1] = tr("new channellist");
 addNewChannelsToTexts[2] = tr("bouquets");
 
-addNewChannelsTo = Setup.AddNewChannels==1?2:0;
+addNewChannelsTo = ScanSetup.AddNewChannels==1?2:0;
 
 scanMode = 1;   // auto scan
 
@@ -241,7 +241,8 @@
 
 else if (device->ProvidesSource(cSource::stSat))
 {
-if (device->ProvidesS2())
+//if (device->ProvidesS2())
+		if (1==1)
 {
 asprintf(&txt, "%s (%s %i)", tr("DVB-S2 - Satellite"),
  tr("Tuner"), tuner + 1);
@@ -591,7 +592,7 @@
 switch( addNewChannelsTo )
 {
 case 0:
-Setup.AddNewChannels = 0;
+ScanSetup.AddNewChannels = 0;
 break;
 case 1: 
 //clear channellist
@@ -628,7 +629,7 @@
 // fallthrough: no break
 case 2:
 //add to own Bouquets
-Setup.AddNewChannels = 1;
+ScanSetup.AddNewChannels = 1;
 Setup.Save();
 break;
 default: 
@@ -1128,6 +1129,9 @@
 }
 }
 
+
+bool scanning_on_receiving_device;
+
 cMenuScanActive::~cMenuScanActive()
 {
 Scan->ShutDown();
diff -Nu channelscan-0.6.1/filter.c channelscan-0.6.1_fks/filter.c
--- channelscan-0.6.1/filter.c	2008-10-17 14:33:07.0 +0200
+++ channelscan-0.6.1_fks/filter.c	2008-10-17 07:46:25.0 +0200
@@ -677,7 +677,7 @@
 }
 }
 #if APIVERSNUM >= 10509 || defined(REELVDR)
-Channel->SetPids(Vpid, Vpid ? Ppid : 0, Apids, ALangs, Dpids,
+Channel->SetPids(Vpid, Vpid ? Ppid : 0, 0, Apids, ALangs, Dpids,
  DLangs, Spids, SLangs, Tpid);
 #else
 Channel->SetPids(Vpid, Vpid ? Ppid : 0, Apids, ALangs, Dpids,
@@ -1233,7 +1233,7 @@
 
 // same as in channels.c
 static int CodeRates[] = { FEC_NONE, FEC_1_2, FEC_2_3, FEC_3_4, FEC_4_5, FEC_5_6, FEC_6_7, FEC_7_8, FEC_8_9,// DVB-S
-FEC_1_3, FEC_1_4, FEC_2_5, FEC_3_5, FEC_9_10,
+FEC_9_10,
 FEC_AUTO, FEC_AUTO, FEC_AUTO, FEC_AUTO, FEC_AUTO,
 FEC_NONE
 };  // DVB-S2
@@ -1255,8 +1255,8 @@
ts.getOriginalNetworkId());
 
 static int Rolloffs[] =
-{ FE_ROLLOFF_35, FE_ROLLOFF_25, FE_ROLLOFF_20,
-FE_ROLLOFF_35 };
+{ ROLLOFF_35, ROLLOFF_25, ROLLOFF_20,
+ROLLOFF_35 };
 
 
 int Modulation = QPSK;
@@ -1267,7 +1267,7 @@
  */
 
 static int ModulationsS2[] =
-{ QPSK, QPSK_S2, PSK8, QPSK,
+{ QPSK, PSK_8, QPSK,
 

Re: [vdr] reelchannelscan for S2API-patched VDR

2008-10-17 Thread Frank Scherthan
Goga777 schrieb:
> ???, Frank
> 
> thanks for your patch, but I couldn't compile it
> I have
> 
> VDR 1.7.0 with s2api patch from Niels and h264 patch from Reinchard
> gcc version 4.3.2 (Debian 4.3.2-1)
Please try gcc-4.1

It can be changed in Make.config or even in Makefile of the plugin.

Frank


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


Re: [vdr] Can I disable pause live tv altogher?

2009-05-06 Thread Frank Scherthan
Hi there :)

marti...@embl.de schrieb:
> Well, keeping the remote control away from my kids is not easy unless I han
> g it
> from the ceiling.
> 
> Is there some way I can disable live tv pausing all together?
> 
> It is causing a lot of trouble and I don´t reallly need that feature...

I really don't understand the whole discussion that is going on here.

This behavior is intented.
Pressing "pause" in Live-View starts a recording and pauses it. This is
a great feature and I really would miss that!

If you don't want it, you just have to skip the learning of the pause
key (or remove it from remote.conf).
You can always pause recordings with the "down"-key, so you just don't
need the "extra-pause-key".

Please, please RTFM. It is all written in the manual, that comes with
VDR. Read the manual before complaining.

There is NO NEED for a patch, an option or anything else. Really! ;)

Btw. I have a son, too. He is 2 years old and I have no problem with
him, my remote or my VDR ...

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


Re: [vdr] Can I disable pause live tv altogher?

2009-05-07 Thread Frank Scherthan
Hi Theunis, Hi list,

Theunis Potgieter schrieb:
> Well honestly I'm confused. I use vdr 1.6 and when I press down or up
> it changes channel only. My vdr never pauses live tv. Mind you I don't
> have a pause key either and neither defined. So perhaps this is the
> way to for him.

Why didn't you just read the manual?
It is all there! :) It is really great!

The point is: keys do different things in differnet environments.

In liveview, the "down"- key decreases channel by 1
in replay-mode the "down"-key pauses the recording.

If you define a pause-key, than this key pauses in replay-mode.
In live-view it creates an instant-recording, that is replayed and paused.

Before anyone posts to this topic, would you please read the manual?


I think this whole thread would not exist, if anyone would have read the
manual ;)

btw. the manual comes with every copy of VDR and can be read via web in
the WIKI:
http://www.linuxtv.org/vdrwiki/index.php/VDR_User's_Manual

Frank, who read the manual ;)

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


Re: [vdr] Can I disable pause live tv altogher?

2009-05-11 Thread Frank Scherthan
Torgeir Veimo schrieb:
> Just my 5 cent on the topic; Having a pause key that records is really
> non-logical. 

You can keep your money ;)

The pause key pauses live TV.

It doesn't record in the background to surprise you!

It has to record, to do playback AND pause, so the key is doing EXACTLY
what you expect from that key. Pausing eather a playback when watching a
recording or pausing live-TV.

Well at least I think it is more logical, to pause my live TV than
doing just nothing at all...

Frank


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


Re: [vdr] xineliboutput: Problem resuming playback after jumping to a cutting mark

2010-02-18 Thread Frank Scherthan
Hi

On 18.02.2010 11:51, Halim Sahin wrote:
> Hello Folks,
> Sorry for raising a new xineliboutput issue.
> 
> The Problem:
> Start vdr-1.7.12, xineliboutput from cvs and vdr-sxfe as frontend.
> 1. start to watch a recording (done with vdr-1.7.12 ts-format)
> 2. press 0 to set a cuttingmark 
> 3. let the recording run for a while and press 7 to jump to the
> previously added mark.
> 4. Vdr jumps to the mark and pauses the playback
> 5. hitk play to resume playback
> Result:
> The playback can't be resume.
> Restarting the frontend after pressing play start playback.
> 
> Any Ideas what's wrong there?

I filed a bug a few days ago:
http://sourceforge.net/tracker/?func=detail&aid=2945795&group_id=160063&atid=814342

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


Re: [vdr] Channel sorting idea

2006-09-20 Thread Frank Scherthan
Carsten Koch schrieb:
> I have tried to sort away channels that I do not care for into groups
> (using the existing channel group feature). The trouble with that is,
> that such a channel could change into a channel I do care for.
> 
> Channels I do not care for include:
> 
> *  Channels that I cannot decrypt.
> 
> *  Channels that only have audio languages that I do not understand.
> 
> *  Shopping / Advertizing / Porn 0900.
> 
> *  Sports.
> 
> *  Radio.
There are plugins that do what you want :)

Autosort:
http://www.copypointburscheid.de/linux/autosort.htm
It does all the wanted sorting in the background

together with the decruft Plugin
http://www.rst38.org.uk/vdr/
(that removes unwanted channels) you will have a nice channel list.

And there are plugins like
http://famillejacques.free.fr/vdr/prefermenu/
that can keep a list of your fav. channels...

But I still want a categories-feature, too :)


Frank Scherthan

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


Re: [vdr] Failed to read channels.conf after adding transponder

2008-06-17 Thread Frank Scherthan
Hi list,


Udo Richter schrieb:
> Today I had an unexpected parse error in my channels.conf, in this line:
> 
> Test Feed;Test Feed:10920:hC56M2O0S0:S19.2E:22000:0:0:0:0:0:1:1063:0
> 
> The line was added by automatic transponder scan yesterday. The 'bug' of 
> this channel is that the SID (4'th last) is 0, triggering 
> tChannelID::Valid() to be false.

Due to this bug, my VDR didn't start today and I missed an episode of
DORA. I have no idea how I will explain this to my kid tomorrow...

Is there an easy fix I could test right now? Can I disable the
channel-checking?

Frank :(

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


Re: [vdr] Failed to read channels.conf after adding transponder

2008-06-18 Thread Frank Scherthan
Hi

Hanno Zulla schrieb:
>> Is there an easy fix I could test right now? Can I disable the
>> channel-checking?
> Yes, you can. Check the DVB settings menu.
You are wrong. I am not talking about *updating channels*.
I know about that and as a workaround, I switched it off.
BUT:
This is NOT what I am looking for.

I want to disable the check, for invalid channels in channels.conf

I just don't care, if a channel is not "tuneable". I won't switch to 
that channel anyway...
-- 
Mit freundlichen Grüßen aus Landau,
--
      Dipl. Psych. Frank Scherthan
Universitaet Koblenz - Landau, Campus Landau
Fortstrasse 7   (Bau H - Zimmer 116)
76829 Landau   Tel. +49/6341 280-260
 E-Mail: [EMAIL PROTECTED]

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