[vdr] vdr-2.4.1 and xineliboutput: video and audio freeze

2020-05-06 Thread Peter Münster
Hello,

On my vdr-box, I cannot watch some channels. For example when switching
to France 2, the image stutters and then freezes after some seconds. And
the audio output stops too.

I have 2 outputs with some messages:

1.) From stdout/stderr (only some samples, because there are a lot of lines):

ffmpeg_audio_dec: not enough data to decode
metronom: video jump by -23415 pts.
metronom: video jump by 72000 pts.
video_out_vdpau: b 0 c 128 s 128 h 0 [ITU-R 709 / HDTV]
ffmpeg_audio_dec: not enough data to decode
video_out: throwing away image with pts 24396186 because it's too old (diff : 
124178).
ffmpeg_audio_dec: not enough data to decode
metronom: video jump by -48960 pts.
video_out: throwing away image with pts 24358421 because it's too old (diff : 
286741).
ffmpeg_audio_dec: not enough data to decode
audio_out: flushed out 0 buffers.
ffmpeg_audio_dec: resetting parser
audio_out: ao_flush (loop running: 1)
set_speed 0.
video_out: new speed 0.
set_speed 100.
video_out: new speed 100.
audio_out: new speed 100.
audio_out: flushed out 0 buffers.
audio_out: flushed out 0 buffers.
ffmpeg_audio_dec: resetting parser
audio_out: ao_flush (loop running: 1)
metronom: prebuffer=14400 pts.
metronom: video discontinuity #78, type is 3, disc_off 0.
metronom: waiting for audio discontinuity #78...
ffmpeg_audio_dec: resetting parser
metronom: audio discontinuity #78, type is 3, disc_off 0.
metronom: vpts adjusted with prebuffer to 24818015.
metronom: prebuffer=2000 pts.
metronom: prebuffer=14400 pts.
video_out_vdpau: b 0 c 128 s 128 h 0 [ITU-R 470 BG / SDTV]
metronom: prebuffer=14400 pts.
set_speed 0.


2.) From syslog:

vdr[2239]: [2252] [vdr-fe]Keypress: XKeySym Next
vdr[2239]: [2239] [xine..put] cXinelibOsd::CanHandleAreas(): Device does not 
support ARGB
vdr[2239]: [2239] switching to channel 39 T-8442-1-257 (France 2)
vdr[2239]: [2735] device 1 TS buffer thread ended (pid=2239, tid=2735)
vdr[2239]: [2734] buffer stats: 91932 (1%) used
vdr[2239]: [2734] device 1 receiver thread ended (pid=2239, tid=2734)
vdr[2239]: [2788] device 1 receiver thread started (pid=2239, tid=2788, 
prio=high)
vdr[2239]: [2789] device 1 TS buffer thread started (pid=2239, tid=2789, 
prio=high)
vdr[2239]: [2262] [demux_vdr] PMT changed, resetting demuxer
vdr[2239]: [2788] [xine..put] H.264: Found NAL SPS at offset 6/156
vdr[2239]: [2788] [xine..put] H.264 SPS: profile_idc 100
vdr[2239]: [2788] [xine..put] H.264 SPS: pic_width:  120 mbs
vdr[2239]: [2788] [xine..put] H.264 SPS: pic_height: 34 mbs
vdr[2239]: [2788] [xine..put] H.264 SPS: frame only flag: 0
vdr[2239]: [2788] [xine..put] H.264 SPS: MBAFF
vdr[2239]: [2788] [xine..put] H.264 SPS: cropping 0 0 0 2
vdr[2239]: [2788] [xine..put] H.264 SPS: aspect_ratio_idc 1
vdr[2239]: [2788] [xine..put] H.264 SPS: -> aspect ratio 1 / 1
vdr[2239]: [2788] [xine..put] H.264 SPS: -> video size 1920x1080, aspect 1:1
vdr[2239]: [2788] [xine..put] Detected video size 1920x1080
vdr[2239]: [2262] [demux_vdr] audio stream changed:  -> 0341
vdr[2239]: [2788] ERROR: 1 TS packet(s) not accepted in Transfer Mode
vdr[2239]: [2788] [xine..put] H.264: Found NAL SPS at offset 6/156
vdr[2239]: [2788] [xine..put] H.264 SPS: profile_idc 100
vdr[2239]: [2788] [xine..put] H.264 SPS: pic_width:  120 mbs
vdr[2239]: [2788] [xine..put] H.264 SPS: pic_height: 34 mbs
vdr[2239]: [2788] [xine..put] H.264 SPS: frame only flag: 0
vdr[2239]: [2788] [xine..put] H.264 SPS: MBAFF
vdr[2239]: [2788] [xine..put] H.264 SPS: cropping 0 0 0 2
vdr[2239]: [2788] [xine..put] H.264 SPS: aspect_ratio_idc 1
vdr[2239]: [2788] [xine..put] H.264 SPS: -> aspect ratio 1 / 1
vdr[2239]: [2788] [xine..put] H.264 SPS: -> video size 1920x1080, aspect 1:1
vdr[2239]: [2788] [xine..put] Detected video size 1920x1080


What could I do please, do watch such channels?


Thanks in advance for any hints. Kind regards,
-- 
   Peter


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


Re: [vdr] priority -1 too low to trigger deleting an old recording

2016-02-24 Thread Peter Münster
On Fri, Feb 19 2016, Klaus Schmidinger wrote:

> In the file cutter.c locate the line
>
>   AssertFreeDiskSpace(-1);
>
> in the function cCuttingThread::ProcessSequence(). Chnage the '-1'
> to whatever value between 1 and 100 you like. Note, though, that this
> will remove old recordings with priorities up to the given value minus
> one.

Hi Klaus,

This does not work, because when cutting, vdr writes to disk too fast.
That means that "Factor = 10" is needed in AssertFreeDiskSpace().
So "-1" is the right choice here.

I think, that the solution is much simpler: IMO there is no need for
special treatment of priorities -1 and 0 in AssertFreeDiskSpace().
If you remove the line "if (Priority > 0) {", then the problem is
solved. I've tested it, and it works ok.

You should remove this line anyway, because if someone selects
priority = 0 for some timer, the recording would fail if the disk is
full, even when there are recordings with expired lifetime.

-- 
   Peter


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


[vdr] priority -1 too low to trigger deleting an old recording

2016-02-18 Thread Peter Münster
Hi,

On my system, disk usage is always about 99%, because VDR cares about
deleting old recordings, when needed.

But when editing a recording, the automatic deletion fails:

--8<---cut here---start->8---
17:36:28 vdr[28116]: [28116] info: Editing process started
17:36:50 vdr[28116]: [28834] low disk space while recording, trying to remove a 
deleted recording...
17:36:50 vdr[28116]: [28834] ...no deleted recording found, priority -1 too low 
to trigger deleting an old recording
17:36:50 vdr[28116]: [28116] warning: Low disk space!
17:37:01 vdr[28116]: [28834] low disk space while recording, trying to remove a 
deleted recording...
17:37:01 vdr[28116]: [28834] ...no deleted recording found, priority -1 too low 
to trigger deleting an old recording
17:37:01 vdr[28116]: [28116] warning: Low disk space!
17:37:09 vdr[28116]: [28116] ERROR: 'safe_write' during editing process
17:37:10 vdr[28116]: [28116] ERROR: Editing process failed!
--8<---cut here---end--->8---

How could I make VDR delete old recordings, when low on disk space
because of an editing process please?

TIA for any hints,
-- 
   Peter


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


Re: [vdr] playing VDR-recordings on Samsung Smart TV with subtitles

2016-01-15 Thread Peter Münster
On Wed, Jan 13 2016, Luca Olivetti wrote:

> and there's a derived (and possibly better) version here
>
> https://github.com/philhansen/dvbsubrip

Thanks, it works! I just had to add "-l deu" to the arguments for
tesseract so that ä, ö and ü get recognized.

-- 
   Peter


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


[vdr] playing VDR-recordings on Samsung Smart TV with subtitles

2016-01-13 Thread Peter Münster
Hi,

Is is possible to play VDR-recordings on Samsung Smart TV with
subtitles, and if yes, how please?

It seems, that the Samsung Smart needs 2 files: an mp4 and an srt file.

I've tried:  "ffmpeg -i 1.ts -vn -an -codec:s:0 srt 1.srt"
But no 1.srt is created...

TIA for any hints,
-- 
   Peter


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


Re: [vdr] bad characters in epg.data

2015-12-06 Thread Peter Münster
On Wed, Dec 02 2015, Klaus Schmidinger wrote:

>> C S19.2E-133-3-263 SVM - GR\326D
>> 
>> Would it be possible/easy to patch vdr to filter out such errors?
>> What is the right function to look at?
>
> Take a look at StripControlCharacters() or cEvent::FixEpgBugs() in epg.c.

It seems, that these functions only take care of the title and the
description, but not the channel name.

Finally, I've patched vdr like this:

--8<---cut here---start->8---
--- epg.c~  2013-12-28 12:33:08.0 +0100
+++ epg.c   2015-12-06 15:54:58.312233837 +0100
@@ -1064,11 +1064,32 @@
 }
 }
 
+static char *StripFunny8bitCharacters(const char *src)
+{
+static char dest[100];
+strn0cpy(dest, src, 100);
+char *s = dest;
+int len = strlen(s);
+while (len > 0) {
+int l = Utf8CharLen(s);
+uchar *p = (uchar *)s;
+if (l == 1 && *p > 0x7F) {  // this is not utf-8
+memmove(s, p + 1, len); // we also copy the terminating 0!
+len--;
+l = 0;
+}
+s += l;
+len -= l;
+}
+return dest;
+}
+
 void cSchedule::Dump(FILE *f, const char *Prefix, eDumpMode DumpMode, time_t 
AtTime) const
 {
   cChannel *channel = Channels.GetByChannelID(channelID, true);
   if (channel) {
- fprintf(f, "%sC %s %s\n", Prefix, *channel->GetChannelID().ToString(), 
channel->Name());
+ fprintf(f, "%sC %s %s\n", Prefix, *channel->GetChannelID().ToString(),
+ StripFunny8bitCharacters(channel->Name()));
  const cEvent *p;
  switch (DumpMode) {
case dmAll: {
--8<---cut here---end--->8---

It seems to work.
Would it be possible to integrate this patch into vdr?

-- 
   Peter


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


Re: [vdr] bad characters in epg.data

2015-12-02 Thread Peter Münster
On Sun, Nov 29 2015, Klaus Schmidinger wrote:

> Have you tried this (from the VDR “INSTALL” file)?
>
> Workaround for providers not encoding their DVB SI table strings correctly

Thanks, I've tried it. But unfortunately I've got today this line:

C S19.2E-133-3-263 SVM - GR\326D

with the same 0xD6 character...

Would it be possible/easy to patch vdr to filter out such errors?
What is the right function to look at?

TIA for any help,
-- 
   Peter


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


[vdr] bad characters in epg.data

2015-11-29 Thread Peter Münster
Hi,

It seems, that the encoding of the epg.data file is utf-8, but
sometimes, there are lines like this:

C S19.2E-133-3-263 18:00 GRÖD - RBS

The "Ö" is one byte (0xD6) that seems not conform to utf-8 encoding.

How could I avoid such characters in the epg.data file please?

TIA for any hints,
-- 
   Peter


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


Re: [vdr] sub-titles on Arte

2015-02-26 Thread Peter Münster
On Thu, Feb 26 2015, Arthur wrote:

 I've tried to zap to this channel and I got subtitles. See screenshots in
 attachment. VDR-2.2.0 in use.

Thanks. Indeed, now I get also French subtitles. Do you get the German
subtitles? I don't...

-- 
   Peter


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


Re: [vdr] sub-titles on Arte

2015-02-26 Thread Peter Münster
On Thu, Feb 26 2015, Arthur wrote:

 No. But regarding to the mediainfo there no real german subtitles in the
 transport stream. Maybe they only declared, but not transmitted?

I don't know. My parents have a normal TV device and they see German
subtitles. I would like to know how to get them with VDR...

-- 
   Peter


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


[vdr] sub-titles on Arte

2015-02-25 Thread Peter Münster
Hi,

There must be something wrong with my VDR-setup, I never see sub-titles
on Arte. This is my channel.conf line:

arte 
HD;ARD:11493:HC23M5O35P0S1:S19.2E:22000:5111=27:5112=deu@3,5113=fra@3,5117=mis@3;5116=mul@106:5114;5115=deu,5118=fra,5119=deu:0:10302:1:1019:0

How could I get sub-titles for this channel please?

TIA for any hints,
-- 
   Peter

P.S.: Thanks to Klaus and the other developers for the latest
improvements!


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


[vdr] still image with iptv without eating up all cpu

2014-12-28 Thread Peter Münster
Hi,

How can I display a still image with iptv + ffmpeg without eating up all
CPU power?

This my ffmpeg command, that uses 100% of CPU time:

ffmpeg -analyzeduration 0 -loop 1 -i ${IMAGE} -f mpegts -r 25 \
-vcodec mpeg2video -b 4000k -s 664x540 -an \
udp://127.0.0.1:${PORT}?pkt_size=16356

TIA for any hints,
-- 
   Peter


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


Re: [vdr] AllwinnerA20: vdr-sxfe dies after switching to radio station TV stations OK

2014-06-17 Thread Peter Münster
On Tue, Jun 17 2014, cedric.dew...@telfort.nl wrote:

 received X error event: BadMatch (invalid parameter attributes)
 X Error of failed request: BadMatch (invalid parameter attributes)
 Major opcode of failed request: 132 (XVideo)
 Minor opcode of failed request: 17 ()
 Serial number of failed request: 2124
 Current serial number in output stream: 2124

Hi,

I had the same problem. The reason was some library version mismatch,
libraries from opensuse mixed up with others from packman. I think that
it was libxine + dependencies. After switching vendor for some packages
(opensuse - packman) and updating, the problem was gone.

-- 
   Peter


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


Re: [vdr] still image at end of replay

2014-04-10 Thread Peter Münster
On Wed, Apr 09 2014, Matti Lehtimäki wrote:

 As this should be rather simple I'll look into it during the weekend
 and see if I'll manage to make a working plugin.

Thanks, that's fine.
Just a suggestion: it would be nice, if the plugin could take a
parameter for providing an image file to display. And the default would
be the last image of the recording.

-- 
   Peter


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


Re: [vdr] still image at end of replay

2014-04-10 Thread Peter Münster
On Thu, Apr 10 2014, VDR User wrote:

 Why don't you just tell your kids to turn the tv off when their show
 is over?

I keep the RC always with me. My children *never* touch it.


 This really sounds like something that should be solved in parenting
 and not code.

With code it's easier... ;)

-- 
   Peter


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


Re: [vdr] still image at end of replay

2014-04-10 Thread Peter Münster
On Thu, Apr 10 2014, fnu wrote:

 If these kids are so little, why do they watch TV at all w/o parental
 advice

They watch a recording with parental advice.


 and why could there be a channel underneath showing something what the
 little ones shouldn't watch?

There is always a channel underneath, and the children shouldn't watch
anything after the recording.


 But kids are kids, doing whatever come to their minds, they can't be
 controlled all times. What may be sufficient is to implement a kind of PIN
 control, like on commercial receivers. A function where to set a white list
 of channels which can be watched w/o PIN and the list is then valid for
 recordings, too, where the source channel is also stored.

Complicated, and it doesn't solve the problem. I just prefer, that after
the replay nothing interesting appears on the screen, just black or
whatever. For now, the easiest solution is to use mplayer instead of
VDR...


 But bed time is still human responsibility ... ;-)

bed time was just an example. The problem is more general.

-- 
   Peter


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


Re: [vdr] still image at end of replay

2014-04-10 Thread Peter Münster
On Thu, Apr 10 2014, Gerald Dachs wrote:

 This really sounds like something that should be solved in parenting
 and not code.

 With code it's easier... ;)

 Not for the coder.

You don't know my children... ;)

-- 
   Peter


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


Re: [vdr] still image at end of replay

2014-04-10 Thread Peter Münster
On Thu, Apr 10 2014, Matti Lehtimäki wrote:

 There is also another option for those using jumpplay-patch in which you can
 have the replay paused at the last cut mark.

Indeed, this is an option.


 As for displaying the last image of the recording it would be easier
 to have only a blank image as a default.

That sounds ok too.


 Additional thing to consider is the possibility call an external
 script after the end of replay to shutdown the system and/or display
 (through hdmi-cec for example) or whatever the user wants.

Yes, this is also an option.

Thanks for your efforts,
-- 
   Peter


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


Re: [vdr] still image at end of replay

2014-04-10 Thread Peter Münster
On Thu, Apr 10 2014, Peer Oliver Schmidt wrote:

 You can do that already. Use the iptv plugin

Thanks, I'll use it!

So, Matti, you can do better things now this week-end! ;)

-- 
   Peter


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


[vdr] still image at end of replay

2014-04-09 Thread Peter Münster
Hi,

Here a little feature request:

Problem: the children are watching a recording, and at the end VDR
switches to normal live TV, that can be anything. I have to be there at
the right moment to turn off the screen and the sound, in order to bring
them to leave the tv-room.

I would be nice, if VDR could turn off the sound at the end of a replay
and show a still image (e.g. Children, go to bed now!).

What do you think about that?
-- 
   Peter


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


Re: [vdr] skipping 5/10 seconds

2014-04-07 Thread Peter Münster
On Mon, Apr 07 2014, Klaus Schmidinger wrote:

 Or a Boolean configuration option for making 5s-skips instead of fast
 forward/rewind?

 Well, that's something we can talk about. You could make it so that during
 replay the Left and Right keys perform 5s skips, and the FastForward/-Rewind
 keys (if present on the user's remote control) still retain their normal
 function.

Thank you! Please find attached a new patch.

-- 
   Peter
diff -ur vdr-2.1.6/MANUAL vdr-2.1.6-new/MANUAL
--- vdr-2.1.6/MANUAL	2014-03-15 14:40:37.0 +0100
+++ vdr-2.1.6-new/MANUAL	2014-04-07 23:00:09.554580559 +0200
@@ -21,8 +21,8 @@
   MenuMenu on Menu off Menu off   Menu off   Menu off  Menu off  Menu off Menu off
   Back-   Menu off VDR menu   VDR menu   Discard   VDR menu  Recordings menu  Close
   Red -   Record   Edit   On/Off ABC/abc   Play/Commands(1)  Jump -
-  Green   -   AudioNewNewIns/Ovr   RewindSkip -60s-
-  Yellow  -   Pause live   Delete Delete DeleteDeleteSkip +60s-
+  Green   -   AudioNewNewIns/Ovr   RewindSkip backward-
+  Yellow  -   Pause live   Delete Delete DeleteDeleteSkip forward -
   Blue-   Stop/Resume  Mark   Info   - Info  Stop -
   0..9Ch select   -Sort(2)Day(3) Numeric inp.  Sort/Exec cmd(1)  Editing  -
 
@@ -330,7 +330,8 @@
   - BlueStops playback and stores the current position, so that
 playback can be resumed later at that point.
   - Left
-Right   Runs playback forward or backward at a higher speed; press
+Right   If Left Right Skip is 0 (default):
+Runs playback forward or backward at a higher speed; press
 again to resume normal speed. If in Pause mode, runs forward or
 backward at a slower speed; press again to return to pause mode.
 Pressing and holding down the key performs the function until
@@ -339,12 +340,17 @@
 function of these keys changes in a way that gives you three
 fast and slow speeds, through which you can switch by pressing
 the respective key several times.
+If Left Right Skip  0:
+Skips back or forward about Left Right Skip seconds.
+Pressing and holding down the key performs the function until
+the key is released again.
   - Red Jump to a specific location. Enter the time you want to jump to
 and then press Left or Right to jump relative to the current
 position, Up to jump to an absolute position, and Down to
 jump and pause at an absolute position.
   - Green
-Yellow  Skips about 60 seconds back or forward.
+Yellow  Skips back or forward. The amount of the skip is the value of
+Green Yellow Skip.
 Pressing and holding down the key performs the function until
 the key is released again.
   - Ok  Brings up the replay progress display, which shows the date,
diff -ur vdr-2.1.6/Makefile vdr-2.1.6-new/Makefile
--- vdr-2.1.6/Makefile	2014-03-16 13:47:35.0 +0100
+++ vdr-2.1.6-new/Makefile	2014-04-01 10:46:40.120294651 +0200
@@ -233,7 +233,7 @@
 	  fi;\
 	   fi;\
 	done;\
-	# Conclusion\
+# Conclusion\
 	if [ -n $$noapiv ] ; then echo; echo *** plugins without APIVERSION:$$noapiv; echo; fi;\
 	if [ -n $$oldmakefile ] ; then\
 	   echo; echo *** plugins with old Makefile:$$oldmakefile; echo;\
diff -ur vdr-2.1.6/config.c vdr-2.1.6-new/config.c
--- vdr-2.1.6/config.c	2013-08-31 14:41:28.0 +0200
+++ vdr-2.1.6-new/config.c	2014-04-07 23:01:03.800358590 +0200
@@ -466,6 +466,8 @@
   MinUserInactivity = 300;
   NextWakeupTime = 0;
   MultiSpeedMode = 0;
+  LeftRightSkip = 0;
+  GreenYellowSkip = 60;
   ShowReplayMode = 0;
   ShowRemainingTime = 0;
   ProgressDisplayTime = 0;
@@ -677,6 +679,8 @@
   else if (!strcasecmp(Name, MinUserInactivity))   MinUserInactivity  = atoi(Value);
   else if (!strcasecmp(Name, NextWakeupTime))  NextWakeupTime = atoi(Value);
   else if (!strcasecmp(Name, MultiSpeedMode))  MultiSpeedMode = atoi(Value);
+  else if (!strcasecmp(Name, LeftRightSkip))   LeftRightSkip  = atoi(Value);
+  else if (!strcasecmp(Name, GreenYellowSkip)) GreenYellowSkip= atoi(Value);
   else if (!strcasecmp(Name, ShowReplayMode))  ShowReplayMode = atoi(Value);
   else if (!strcasecmp(Name, ShowRemainingTime))   ShowRemainingTime  = atoi(Value);
   else if (!strcasecmp(Name, ProgressDisplayTime)) ProgressDisplayTime= atoi(Value);
@@ -792,6 +796,8 @@
   Store(MinUserInactivity,  MinUserInactivity);
   Store(NextWakeupTime, NextWakeupTime);
   Store(MultiSpeedMode, MultiSpeedMode);

Re: [vdr] skipping 5/10 seconds

2014-04-01 Thread Peter Münster
On Mon, Mar 31 2014, Peter Münster wrote:

 What about adding a possibility to skip ±5 or ±10 seconds when replaying
 a recording?

 Would you perhaps accept a patch for the developer version?

Hi Klaus,

What about the attached patch?

-- 
   Peter
diff -ur vdr-2.1.6/MANUAL vdr-2.1.6-new/MANUAL
--- vdr-2.1.6/MANUAL	2014-03-15 14:40:37.0 +0100
+++ vdr-2.1.6-new/MANUAL	2014-04-01 13:26:07.151101710 +0200
@@ -21,10 +21,10 @@
   MenuMenu on Menu off Menu off   Menu off   Menu off  Menu off  Menu off Menu off
   Back-   Menu off VDR menu   VDR menu   Discard   VDR menu  Recordings menu  Close
   Red -   Record   Edit   On/Off ABC/abc   Play/Commands(1)  Jump -
-  Green   -   AudioNewNewIns/Ovr   RewindSkip -60s-
-  Yellow  -   Pause live   Delete Delete DeleteDeleteSkip +60s-
+  Green   -   AudioNewNewIns/Ovr   RewindSkip backward-
+  Yellow  -   Pause live   Delete Delete DeleteDeleteSkip forward -
   Blue-   Stop/Resume  Mark   Info   - Info  Stop -
-  0..9Ch select   -Sort(2)Day(3) Numeric inp.  Sort/Exec cmd(1)  Editing  -
+  0..9Ch select   -Sort(2)Day(3) Numeric inp.  Sort/Exec cmd(1)  Editing/Skipping -
 
   In a numerical input field (like the response to a CAM enquiry) the keys 0..9
   are used to enter the data, and the Left key can be used to delete the last
@@ -330,7 +330,8 @@
   - BlueStops playback and stores the current position, so that
 playback can be resumed later at that point.
   - Left
-Right   Runs playback forward or backward at a higher speed; press
+Right   If Skip Amount 1 is 0 (default):
+Runs playback forward or backward at a higher speed; press
 again to resume normal speed. If in Pause mode, runs forward or
 backward at a slower speed; press again to return to pause mode.
 Pressing and holding down the key performs the function until
@@ -339,12 +340,19 @@
 function of these keys changes in a way that gives you three
 fast and slow speeds, through which you can switch by pressing
 the respective key several times.
+If Skip Amount 1  0:
+Skips back or forward about Skip Amount 1 seconds.
+Pressing and holding down the key performs the function until
+the key is released again.
   - Red Jump to a specific location. Enter the time you want to jump to
 and then press Left or Right to jump relative to the current
 position, Up to jump to an absolute position, and Down to
 jump and pause at an absolute position.
-  - Green
-Yellow  Skips about 60 seconds back or forward.
+  - 1, 3
+Green
+Yellow  Skips back or forward. The amount of the skip is the value of
+Skip Amount 2 for keys 1 and 3, and Skip Amount 3 for Green
+and Yellow.
 Pressing and holding down the key performs the function until
 the key is released again.
   - Ok  Brings up the replay progress display, which shows the date,
diff -ur vdr-2.1.6/Makefile vdr-2.1.6-new/Makefile
--- vdr-2.1.6/Makefile	2014-03-16 13:47:35.0 +0100
+++ vdr-2.1.6-new/Makefile	2014-04-01 10:46:40.120294651 +0200
@@ -233,7 +233,7 @@
 	  fi;\
 	   fi;\
 	done;\
-	# Conclusion\
+# Conclusion\
 	if [ -n $$noapiv ] ; then echo; echo *** plugins without APIVERSION:$$noapiv; echo; fi;\
 	if [ -n $$oldmakefile ] ; then\
 	   echo; echo *** plugins with old Makefile:$$oldmakefile; echo;\
diff -ur vdr-2.1.6/config.c vdr-2.1.6-new/config.c
--- vdr-2.1.6/config.c	2013-08-31 14:41:28.0 +0200
+++ vdr-2.1.6-new/config.c	2014-04-01 12:41:45.908325335 +0200
@@ -466,6 +466,9 @@
   MinUserInactivity = 300;
   NextWakeupTime = 0;
   MultiSpeedMode = 0;
+  Skip1Amount = 0;
+  Skip2Amount = 10;
+  Skip3Amount = 60;
   ShowReplayMode = 0;
   ShowRemainingTime = 0;
   ProgressDisplayTime = 0;
@@ -677,6 +680,9 @@
   else if (!strcasecmp(Name, MinUserInactivity))   MinUserInactivity  = atoi(Value);
   else if (!strcasecmp(Name, NextWakeupTime))  NextWakeupTime = atoi(Value);
   else if (!strcasecmp(Name, MultiSpeedMode))  MultiSpeedMode = atoi(Value);
+  else if (!strcasecmp(Name, Skip1Amount)) Skip1Amount= atoi(Value);
+  else if (!strcasecmp(Name, Skip2Amount)) Skip2Amount= atoi(Value);
+  else if (!strcasecmp(Name, Skip3Amount)) Skip3Amount= atoi(Value);
   else if (!strcasecmp(Name, ShowReplayMode))  ShowReplayMode = atoi(Value);
   else if (!strcasecmp(Name, ShowRemainingTime

[vdr] integrating jumpplay-patch

2014-03-31 Thread Peter Münster
Hi Klaus,

What about integrating the jumpplay-patch
(http://www.vdr-wiki.de/wiki/index.php/Jumpplay-patch) into the
VDR developer version?

That would be nice.
-- 
   Peter


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


[vdr] skipping 5/10 seconds

2014-03-31 Thread Peter Münster
Hi Klaus,

What about adding a possibility to skip ±5 or ±10 seconds when replaying
a recording?

Would you perhaps accept a patch for the developer version?

That would be nice.
-- 
   Peter


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


Re: [vdr] integrating jumpplay-patch

2014-03-31 Thread Peter Münster
On Mon, Mar 31 2014, Matthias Fechner wrote:

 Am 31.03.14 11:39, schrieb Peter Münster:
 What about integrating the jumpplay-patch
 (http://www.vdr-wiki.de/wiki/index.php/Jumpplay-patch) into the
 VDR developer version?

 I wish the patch whould not stop the playback on the last mark, as the
 last mark is in many cases not correct.

Why is the last mark not correct?
What about adjusting the last mark?
What about removing the last mark?
What about a setup-parameter jumpplay-dont-stop-on-last-mark?

-- 
   Peter


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


Re: [vdr] integrating jumpplay-patch

2014-03-31 Thread Peter Münster
On Mon, Mar 31 2014, Matthias Fechner wrote:

 Am 31.03.14 12:19, schrieb Peter Münster:
 Why is the last mark not correct?

 hehe, ask noad ;)

 What about adjusting the last mark?
 What about removing the last mark?
 What about a setup-parameter jumpplay-dont-stop-on-last-mark?

 I prefer a parameter to disable the end on the last mark.

And what do you bet, that Klaus will agree to such a
specialworkaroundforwrongmarkfromnoadparameter...? ;)

-- 
   Peter


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


Re: [vdr] Minimum CPU requirement for xineliboutput + vdr-sxfe for HDTV

2014-02-27 Thread Peter Münster
On Thu, Feb 27 2014, Stephan Loescher wrote:

 I am interested in your experiences with xineliboutput-plugin and vdr-sxfe for
 HDTV and not using VDPAU but using the plain CPU-power.

Hi,

I use vdr + xineliboutput-plugin (no vdr-sxfe). Here some information
for you:

1.) top:
top - 22:36:09 up 11:20,  2 users,  load average: 1.69, 1.60, 1.37
Tasks: 131 total,   2 running, 129 sleeping,   0 stopped,   0 zombie
%Cpu(s):  8.0 us,  3.3 sy, 74.8 ni, 14.0 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
KiB Mem:   2054468 total,  1980536 used,73932 free,   127328 buffers
KiB Swap:  5243900 total, 1692 used,  5242208 free,  1019884 cached

  PID USER  PR  NIVIRTRESSHR S  %CPU  %MEM TIME+ COMMAND
 1736 vdr   20   0 1613484 319576 156872 S 76.05 15.56  68:17.94 vdr
32228 root  20   0  370964 155840 148756 S 7.971 7.585  27:30.76 Xorg

2.) lspci:
01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] RV710 
[Radeon HD 4350/4550]

3.) /proc/cpuinfo:
processor   : 0
vendor_id   : AuthenticAMD
cpu family  : 15
model   : 47
model name  : AMD Athlon(tm) 64 Processor 3500+
stepping: 2
cpu MHz : 2205.056
cache size  : 512 KB
bogomips: 4410.11
TLB size: 1024 4K pages
clflush size: 64
cache_alignment : 64
address sizes   : 40 bits physical, 48 bits virtual


HTH,
-- 
   Peter


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


Re: [vdr] mp3 plugin for vdr-2.1.4

2014-02-14 Thread Peter Münster
On Fri, Feb 14 2014, Pertti Kosunen wrote:

 On 13.2.2014 23:36, Peter Münster wrote:
 Could anybody help please to make the plugin work with the latest vdr
 version?

 Try attached patch.

Thanks, it works! Have you already sent it to the plugin developer, or
should I do it?

-- 
   Peter


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


[vdr] mp3 plugin for vdr-2.1.4

2014-02-13 Thread Peter Münster
Hi,

When compiling the mp3 plugin, I get this error:

--8---cut here---start-8---
*** Plugin mp3:
WARNING: plugin mp3 is using an old Makefile!
g++ -g -O3 -Wall -Werror=overloaded-virtual -Wno-parentheses -fPIC 
-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  
-c -D_GNU_SOURCE -DAPIVERSNUM=20104 -DHAVE_SNDFILE -DHAVE_VORBISFILE 
-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE 
-I/vdr/soft/vdr-2.1.4/include decoder.c
decoder.c: In member function ‘bool cFileInfo::FileInfo(bool)’:
decoder.c:224:76: warning: format ‘%llx’ expects argument of type ‘long long 
unsigned int’, but argument 2 has type ‘__fsblkcnt64_t {aka long unsigned int}’ 
[-Wformat]
decoder.c:224:76: warning: format ‘%llx’ expects argument of type ‘long long 
unsigned int’, but argument 3 has type ‘__fsfilcnt64_t {aka long unsigned int}’ 
[-Wformat]
decoder.c: In member function ‘char* cInfoCache::CacheFile()’:
decoder.c:635:36: error: ‘VideoDirectory’ was not declared in this scope
decoder.c:636:1: warning: control reaches end of non-void function 
[-Wreturn-type]
make[1]: *** [decoder.o] Error 1
--8---cut here---end---8---

Could anybody help please to make the plugin work with the latest vdr
version?

Thanks in advance,
-- 
   Peter


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


Re: [vdr] freeze with ZDF HD and streamdev (solved)

2013-11-13 Thread Peter Münster
On Tue, Nov 12 2013, Peter Münster wrote:

 When watching ZDF HD (from Astra-19E), my vdr-2.0.4-streamdev-client
 freezes after about 10 seconds. When adding -wX to the command line,
 the watchdog works and makes vdr exit after X seconds.

 There is no such problem with Das Erste HD or Arte HD.

Hi,

The problem was the output plugin xineliboutput version 2.0.0. It
installs the file /usr/lib64/xine/plugins/xineplug_inp_xvdr.so that was
overwritten by the vdr-xineliboutput-client rpm package version 1.0.90.csv
Thus there was a version mismatch.

Strange: everything worked very well, only the ZDF HD channel triggered
the problem...

Sorry for the noise,
-- 
   Peter


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


[vdr] freeze with ZDF HD and streamdev

2013-11-12 Thread Peter Münster
Hi,

When watching ZDF HD (from Astra-19E), my vdr-2.0.4-streamdev-client
freezes after about 10 seconds. When adding -wX to the command line,
the watchdog works and makes vdr exit after X seconds.

There is no such problem with Das Erste HD or Arte HD.

Here the channel line:
ZDF 
HD;ZDFvision:11361:HC23M5O35P0S1:S19.2E:22000:6110=27:6120=deu@3,6121=mis@3,6123=mul@3;6122=deu@106:6130;6131=deu:0:0:1:1011:0

How could I solve that problem please?

TIA for any help,
-- 
   Peter


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


Re: [vdr] no image with TeVii S464 (solved)

2013-11-11 Thread Peter Münster
Hi,

The firmware has to be loaded (strange, the card is sold
without firmware??): cp dvb-fe-ds3000.fw /lib/firmware

I've found the solution here:
http://linuxtv.org/wiki/index.php/TeVii_S464

-- 
   Peter


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


Re: [vdr] no image with TeVii S464

2013-10-28 Thread Peter Münster
On Sun, Oct 27 2013, VDR User wrote:

 Basically there is not enough information to know the source of your
 issue. You've got to do further investigation.

Thanks, you're right. After the installation of the cable from the dish
to the vdr-system, I'll investigate further.
I've just hoped to find users of the same card here, who would know what
to do...
Later, I'll report about further results.

-- 
   Peter


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


[vdr] no image with TeVii S464

2013-10-27 Thread Peter Münster
Hi,

This is probably not a VDR problem, but I guess that here are people who
could help perhaps.

I use the femon plugin to check the signal, and there is only some 20%
of the first line (red), when I test my brand new TeVii S464, and no image.

When I replace the card with my old
Technotrend/Hauppauge WinTV Nexus-S rev2.X, I get green signals and an
image, so it seems that everything is fine with my dish.

Is there some configuration issue, or is this new card just broken?
Or do I need another LNB?

TIA for any hints,
-- 
   Peter


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


[vdr] TeVii S464 DVB-S and TBS 6220 DVB-T

2013-09-16 Thread Peter Münster
Hi,

It's not a VDR problem, but I hope to find people here with some
experience, who could help to get my 2 DVB cards working together.

I can use the DVB-S, and also the DVB-T, but not a the same time. Here
the details:

- openSUSE 12.3
- fresh installation of kernel-desktop-3.7.10-1.16.1.x86_64
- the TeVii S464 card works out of the box
- here the output of dmesg | grep -i dvb:
--8---cut here---start-8---
[   11.698342] cx88[0]: subsystem: d464:9022, board: TeVii S464 DVB-S/S2 
[card=86,autodetected], frontend(s): 1
[   12.253232] input: cx88 IR (TeVii S464 DVB-S/S2) as 
/devices/pci:00/:00:1a.0/:03:11.0/rc/rc0/input4
[   12.253553] rc0: cx88 IR (TeVii S464 DVB-S/S2) as 
/devices/pci:00/:00:1a.0/:03:11.0/rc/rc0
[   12.289676] cx88/2: cx2388x dvb driver version 0.0.9 loaded
[   12.289684] cx88/2: registering cx8802 driver, type: dvb access: shared
[   12.289688] cx88[0]/2: subsystem: d464:9022, board: TeVii S464 DVB-S/S2 
[card=86]
[   12.289693] cx88[0]/2: cx2388x based DVB/ATSC card
[   12.312408] DVB: registering new adapter (cx88[0])
[   12.312426] cx88-mpeg driver manager :03:11.2: DVB: registering adapter 
0 frontend 0 (Montage Technology DS3000/TS2020)...
--8---cut here---end---8---

- download of tbsdtv.com/download/document/common/tbs-linux-drivers_v130909.zip
- installation (tar -xf linux-tbs-drivers.tar.bz2 ; cd linux-tbs-drivers ;
  ./v4l/tbs-x86_64.sh  make  make install)
- reboot
- now the TBS card works, but not the TeVii card, output of dmesg | grep -i 
dvb:
--8---cut here---start-8---
[   12.125233] DVB: registering new adapter (SAA716x dvb adapter)
[   12.303860] DVB: registering adapter 0 frontend 0 (TurboSight TBS 62x0 
DVBT/T2 frontend)...
--8---cut here---end---8---

- output of modprobe cx88-dvb:
--8---cut here---start-8---
WARNING: Error inserting videobuf_dvb 
(/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/v4l2-core/videobuf-dvb.ko):
 Invalid argument
WARNING: Error inserting cx8802 
(/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/video/cx88/cx8802.ko): 
Invalid argument
WARNING: Error inserting cx88_vp3054_i2c 
(/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/video/cx88/cx88-vp3054-i2c.ko):
 Invalid argument
FATAL: Error inserting cx88_dvb 
(/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/pci/cx88/cx88-dvb.ko): 
Invalid argument
--8---cut here---end---8---

- there are now 2 versions of the cx88 module in my system, output of
  find /lib/modules/3.7.10-1.16-desktop -name cx88*:
--8---cut here---start-8---
/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/video/cx88
/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/video/cx88/cx88-blackbird.ko
/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/video/cx88/cx88xx.ko
/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/video/cx88/cx88-alsa.ko
/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/video/cx88/cx88-dvb-core.ko
/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/video/cx88/cx8802.ko
/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/video/cx88/cx8800.ko
/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/video/cx88/cx88-vp3054-i2c.ko
/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/pci/cx88
/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/pci/cx88/cx88-dvb.ko
/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/pci/cx88/cx88-blackbird.ko
/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/pci/cx88/cx88xx.ko
/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/pci/cx88/cx88-alsa.ko
/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/pci/cx88/cx8802.ko
/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/pci/cx88/cx8800.ko
/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/pci/cx88/cx88-vp3054-i2c.ko
--8---cut here---end---8---

- I've removed the cx88 version from the tbs-installation, but it did
  not help:
--8---cut here---start-8---
mv /lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/video/cx88 /tmp
depmod -a ; modprobe cx88-dvb
WARNING: Error inserting videobuf_dvb 
(/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/v4l2-core/videobuf-dvb.ko):
 Invalid argument
WARNING: Error inserting cx8802 
(/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/pci/cx88/cx8802.ko): 
Invalid argument
WARNING: Error inserting cx88_vp3054_i2c 
(/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/pci/cx88/cx88-vp3054-i2c.ko):
 Invalid argument
FATAL: Error inserting cx88_dvb 
(/lib/modules/3.7.10-1.16-desktop/kernel/drivers/media/pci/cx88/cx88-dvb.ko): 
Invalid argument
--8---cut here---end---8---


What could I do please, to get the 2 cards working?

TIA for any hints,
-- 
 

Re: [vdr] TeVii S464 DVB-S and TBS 6220 DVB-T

2013-09-16 Thread Peter Münster
On Mon, Sep 16 2013, Jukka Tastula wrote:

 The tbs driver package wants to replace _everything_ in the system. Mixing 
 v4l 
 modules with the kernel and the tbs package will lead to the issue you're 
 experiencing.

Is there any solution for this problem?

TIA for any hints,
-- 
   Peter


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


Re: [vdr] TeVii S464 DVB-S and TBS 6220 DVB-T

2013-09-16 Thread Peter Münster
On Mon, Sep 16 2013, Jukka Tastula wrote:

 Try to remove all the old conflicting v4l and dvb modules

Thanks!  It helped to remove kernel/drivers/media/pci/cx88 and
kernel/drivers/media/v4l2-core.

-- 
   Peter


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


Re: [vdr] small patch for vdr.c: continue even with read-only video directory

2013-03-10 Thread Peter Münster
On Sun, Mar 10 2013, fnu wrote:

 Since this is important for you personaly, you want to change VDR for all
 users, are you serious?

Yes, where is the problem?


 But to change it in a global way like this is IMHO not a way to go.

Did you understand my suggestion? Here again: not writable: warning, not
readable: exit. Is that a problem for real-life systems?


 The correct solution would be that any user needing it, must decide
 and configure something. So, a kind of a switch like an OSD option or
 even a better way, VDR does check existence of a file in this video
 directory, e.g. .vdrro, something similar to .nodelete ...

Of course: why use the simple way, when there is a complex one... ;)

-- 
   Peter


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


Re: [vdr] small patch for vdr.c: continue even with read-only video directory

2013-03-10 Thread Peter Münster
On Sun, Mar 10 2013, Klaus Schmidinger wrote:

 I'm afraid we're too close to releasing version 2.0.0 to make such
 changes now.

No problem. I would just like to know, if you agree with such a patch
(or something more elaborated).


 Besides, why don't you just use a writeable video directory and mount
 your read-only directory below that? Something like

 /video
 /video/readonly

1. I don't want, that the client VDR can write/record anything to
   /video.
2. I want my VDR setup to be as simple as possible.

(It just works... ;)

-- 
   Peter


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


Re: [vdr] small patch for vdr.c: continue even with read-only video directory

2013-03-10 Thread Peter Münster
On Sun, Mar 10 2013, Matthias Schniedermeyer wrote:

 Read-only CAN for e.g. happen after an error when the filesystem is 
 mounted with error=read-only

Sorry, didn't know about such a configuration option. Therefore I agree
with a somewhat more elaborated solution as mentioned by fnu.

Or please just forget about my request, since I'm probably the only
vdr-user with such a setup.

-- 
   Peter


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


[vdr] small patch for vdr.c: continue even with read-only video directory

2013-03-09 Thread Peter Münster
Hi Klaus,

Could you please delete line 577 from vdr.c or do something similar to
let vdr continue even with read-only video directory?

vdr runs fine with this patch on my system, and it's important for me,
that vdr cannot write anything to the video directory.
(see also http://pmrb.free.fr/vdr/)

Here a small patch:

--8---cut here---start-8---
--- vdr.c.orig  2013-03-09 21:13:57.846826771 +0100
+++ vdr.c   2013-03-09 21:16:33.503521762 +0100
@@ -574,7 +574,6 @@
 
   if (!DirectoryOk(VideoDirectory, true)) {
  fprintf(stderr, vdr: can't access video directory %s\n, VideoDirectory);
- return 2;
  }
 
   // Daemon mode:
--8---cut here---end---8---

If you prefer, I can write a better patch: stop if not readable, warn if
not writable.

TIA,
-- 
   Peter


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


Re: [vdr] read-only video directory

2013-03-06 Thread Peter Münster
On Wed, Mar 06 2013, VDR User wrote:

 With no bad side effects?

So far only some error messages in the log-file, whenever vdr tries to
write something. Quite reasonable for me.

-- 
   Peter


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


Re: [vdr] read-only video directory

2013-03-06 Thread Peter Münster
On Wed, Mar 06 2013, Stephan Loescher wrote:

 The workaround I use is to mount the server in a subdirectory e.g. mount the
 server-directory to /net/media/data/video/servervideo and start the client-vdr
 like this:
 vdr -Pstreamdev-client -Pxineliboutput -v/net/media/data/video


On Wed, Mar 06 2013, Udo Richter wrote:

 You can always mount an unionfs or aufs on top of the read only mount,
 and redirect all write access to a local disk or ram disk. That way VDR
 will be able to write its status files without changing the source file
 system.

Hi Stephan and Udo,

Unfortunately I don't understand. Could you please show examples?

I have for example this directory:
/net/media/data/video/Pippi-geht-von-Bord/2010-07-31.06.55.50.99.rec
The slave (nfs-client) should read it, but it should not write anything
to this directory (or its parents). Is this possible with your
solutions?

TIA,
-- 
   Peter


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


[vdr] read-only video directory

2013-03-05 Thread Peter Münster
Hi,

How is it possible, to mount the video directory in read-only mode?

I want to use a slave vdr like this:

vdr -Pstreamdev-client -Pxineliboutput -v/net/media/data/video

But it does not work, because /net/media/data is mounted read-only.

The slave vdr should not write anything, just read the recordings.

TIA for any hints,
-- 
   Peter


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


Re: [vdr] plugin for DVD images

2013-03-05 Thread Peter Münster
On Tue, Feb 26 2013, Peter Münster wrote:

 On Tue, Feb 26 2013, Füley István wrote:

 I'm using latest xineliboutput in client-server environment, and it works 
 fine
 for me.

 Perhaps I have the wrong DVDs... :(
 I've compiled latest xineliboutput from CVS, and then:
 - media player
 - play file
 - /data/DVDs/ice-age-2
 - red button for DVD title menu
 - select Play in DVD menu
 - freeze
 - watchdog restart...

Found the reason: all my DVDs were unpacked. xineliboutput does not seem
to like it. Now I've made ISO-images and no more crash!

-- 
   Peter


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


[vdr] some keys not passed to plugin

2013-03-05 Thread Peter Münster
Hi,

Some keys do not work with the mplayer plugin:
kAudio, kSubtitles, kInfo and perhaps more.

How could I use these keys please in the cMPlayerControl::ProcessKey()
function?

TIA for any help,
-- 
   Peter


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


Re: [vdr] read-only video directory

2013-03-05 Thread Peter Münster
On Tue, Mar 05 2013, VDR User wrote:

 A workaround is to use the mplayer plugin

I prefer the VDR interface. Finally it's very easy:

I've just deleted the lines

--8---cut here---start-8---
  if (!DirectoryOk(VideoDirectory, true)) {
 fprintf(stderr, vdr: can't access video directory %s\n, VideoDirectory);
 return 2;
 }
--8---cut here---end---8---

in vdr.c and now it works as expected...  :)

-- 
   Peter


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


[vdr] Call for development: enhancing mplayer-plugin

2013-02-27 Thread Peter Münster
Hi,

Support for seeing the VDR osd over mplayer doesn't exist yet.

Who could add this feature please? And what would be the price?

(Perhaps this could help: https://urandom.ca/mebox/downloads/vf_overlay.txt)

TIA for any proposals,
-- 
   Peter
   Tel.: +33/0 299 680 353


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


[vdr] No data in 8 seconds, queuing no signal image

2013-02-27 Thread Peter Münster
Hi,

Sometimes, when starting VDR, I get this message:
[input_vdr] No data in 8 seconds, queuing no signal image
And no video.

When switching channels of the same transponder, nothing happens. But
switching to a channel of another transponder (channel 7), video comes
back.

How could I avoid this problem please, when VDR starts automatically to
start a recording?

Here some log messages:

--8---cut here---start-8---
Feb 25 21:00:03 media vdr: [2916] [input_vdr] No data in 8 seconds, queuing no 
signal image
Feb 26 15:14:17 media vdr: [0] [xine..put] cXinelibOsd::CanHandleAreas(): 
Device does not support ARGB
Feb 26 15:14:18 media vdr: [0] switching to channel 1
Feb 26 15:14:18 media vdr: [0] [input_vdr] vdr_flush_engine: playback is 
paused 0
Feb 26 15:14:18 media vdr: [11133] TS buffer on device 2 thread ended 
(pid=0, tid=11133)
Feb 26 15:14:18 media vdr: [11132] buffer stats: 188 (0%) used
Feb 26 15:14:18 media vdr: [11132] receiver on device 2 thread ended 
(pid=0, tid=11132)
Feb 26 15:14:18 media vdr: [11129] [demux_vdr] PMT changed, resetting demuxer
Feb 26 15:14:18 media vdr: [11145] receiver on device 2 thread started 
(pid=0, tid=11145, prio=high)
Feb 26 15:14:18 media vdr: [11146] TS buffer on device 2 thread started 
(pid=0, tid=11146, prio=high)
Feb 26 15:14:22 media vdr: [0] switching to channel 2
Feb 26 15:14:22 media vdr: [0] [input_vdr] vdr_flush_engine: playback is 
paused 0
Feb 26 15:14:22 media vdr: [11146] TS buffer on device 2 thread ended 
(pid=0, tid=11146)
Feb 26 15:14:22 media vdr: [11145] buffer stats: 0 (0%) used
Feb 26 15:14:22 media vdr: [11145] receiver on device 2 thread ended 
(pid=0, tid=11145)
Feb 26 15:14:22 media vdr: [11129] [demux_vdr] PMT changed, resetting demuxer
Feb 26 15:14:22 media vdr: [11147] receiver on device 2 thread started 
(pid=0, tid=11147, prio=high)
Feb 26 15:14:22 media vdr: [11148] TS buffer on device 2 thread started 
(pid=0, tid=11148, prio=high)
Feb 26 15:14:27 media vdr: [0] switching to channel 3
Feb 26 15:14:27 media vdr: [0] [input_vdr] vdr_flush_engine: playback is 
paused 0
Feb 26 15:14:27 media vdr: [11148] TS buffer on device 2 thread ended 
(pid=0, tid=11148)
Feb 26 15:14:27 media vdr: [11147] buffer stats: 0 (0%) used
Feb 26 15:14:27 media vdr: [11147] receiver on device 2 thread ended 
(pid=0, tid=11147)
Feb 26 15:14:27 media vdr: [11129] [demux_vdr] PMT changed, resetting demuxer
Feb 26 15:14:27 media vdr: [11149] receiver on device 2 thread started 
(pid=0, tid=11149, prio=high)
Feb 26 15:14:27 media vdr: [11150] TS buffer on device 2 thread started 
(pid=0, tid=11150, prio=high)
Feb 26 15:14:30 media vdr: [0] switching to channel 4
Feb 26 15:14:30 media vdr: [0] [input_vdr] vdr_flush_engine: playback is 
paused 0
Feb 26 15:14:30 media vdr: [11150] TS buffer on device 2 thread ended 
(pid=0, tid=11150)
Feb 26 15:14:30 media vdr: [11149] buffer stats: 188 (0%) used
Feb 26 15:14:30 media vdr: [11149] receiver on device 2 thread ended 
(pid=0, tid=11149)
Feb 26 15:14:30 media vdr: [11129] [demux_vdr] PMT changed, resetting demuxer
Feb 26 15:14:30 media vdr: [11151] receiver on device 2 thread started 
(pid=0, tid=11151, prio=high)
Feb 26 15:14:30 media vdr: [11152] TS buffer on device 2 thread started 
(pid=0, tid=11152, prio=high)
Feb 26 15:14:32 media vdr: [0] switching to channel 5
Feb 26 15:14:32 media vdr: [0] [input_vdr] vdr_flush_engine: playback is 
paused 0
Feb 26 15:14:32 media vdr: [11152] TS buffer on device 2 thread ended 
(pid=0, tid=11152)
Feb 26 15:14:32 media vdr: [11151] buffer stats: 0 (0%) used
Feb 26 15:14:32 media vdr: [11151] receiver on device 2 thread ended 
(pid=0, tid=11151)
Feb 26 15:14:32 media vdr: [11129] [demux_vdr] PMT changed, resetting demuxer
Feb 26 15:14:32 media vdr: [11153] receiver on device 2 thread started 
(pid=0, tid=11153, prio=high)
Feb 26 15:14:32 media vdr: [11154] TS buffer on device 2 thread started 
(pid=0, tid=11154, prio=high)
Feb 26 15:14:34 media vdr: [0] switching to channel 6
Feb 26 15:14:34 media vdr: [0] [input_vdr] vdr_flush_engine: playback is 
paused 0
Feb 26 15:14:34 media vdr: [11154] TS buffer on device 2 thread ended 
(pid=0, tid=11154)
Feb 26 15:14:34 media vdr: [11153] buffer stats: 0 (0%) used
Feb 26 15:14:34 media vdr: [11153] receiver on device 2 thread ended 
(pid=0, tid=11153)
Feb 26 15:14:34 media vdr: [11129] [demux_vdr] PMT changed, resetting demuxer
Feb 26 15:14:34 media vdr: [11155] receiver on device 2 thread started 
(pid=0, tid=11155, prio=high)
Feb 26 15:14:34 media vdr: [11156] TS buffer on device 2 thread started 
(pid=0, tid=11156, prio=high)
Feb 26 15:14:37 media vdr: [0] switching to channel 7
Feb 26 15:14:37 media vdr: [0] [input_vdr] vdr_flush_engine: playback is 
paused 0
Feb 26 15:14:38 media vdr: [11156] TS buffer on device 2 thread ended 
(pid=0, 

Re: [vdr] No data in 8 seconds, queuing no signal image

2013-02-27 Thread Peter Münster
On Wed, Feb 27 2013, Lars Hanisch wrote:

  I don't know if it works, but you can configure vdr to start with always the
 same channel (which you'll never use for a
 recording) so that it has to switch explicitly when starting the recording.

Yes, that should work. That's what I'll do, if there is no other
solution.

-- 
   Peter


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


Re: [vdr] Call for development: enhancing mplayer-plugin

2013-02-27 Thread Peter Münster
On Wed, Feb 27 2013, Matthias Fechner wrote:

 Am 27.02.13 11:56, schrieb Peter Münster:
 Support for seeing the VDR osd over mplayer doesn't exist yet.

 I use xineliboutput with a nvidia on-board graphic card to replay all
 kind of video without problems (SD and HD).

I use xineliboutput too, but it crashes too often. See also
http://article.gmane.org/gmane.linux.vdr/47161

-- 
   Peter


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


Re: [vdr] No data in 8 seconds, queuing no signal image

2013-02-27 Thread Peter Münster
On Wed, Feb 27 2013, Bernard Jaulin wrote:

 Did you change your VDR release ?

Yes. Now it's 1.7.37 and before it was 1.2.6 (several years ago... ;)


 Have you the same issue with SoftHDdevice ?

I don't use this plugin, so I don't know.

-- 
   Peter


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


Re: [vdr] plugin for DVD images

2013-02-26 Thread Peter Münster
On Tue, Feb 26 2013, Füley István wrote:

 I'm using latest xineliboutput in client-server environment, and it works fine
 for me.

Perhaps I have the wrong DVDs... :(
I've compiled latest xineliboutput from CVS, and then:
- media player
- play file
- /data/DVDs/ice-age-2
- red button for DVD title menu
- select Play in DVD menu
- freeze
- watchdog restart...

No problem with smplayer.

-- 
   Peter


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


Re: [vdr] plugin for DVD images

2013-02-26 Thread Peter Münster
On Tue, Feb 26 2013, VDR User wrote:

 I use mplayer2 with the mplayer plugin. No probs.

Thanks, that works very well!

Just one issue: how can you see the OSD, while mplayer is running?
(my output device is xineliboutput)

TIA for any help,
-- 
   Peter


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


Re: [vdr] Request for translate the image-plugin

2013-02-20 Thread Peter Münster
On Wed, Feb 20 2013, Bernard Jaulin wrote:

 Here is an update for fr_FR.po UTF-8 image plugin.

Hi,

Here a small patch:

--8---cut here---start-8---
--- fr_FR.po.orig   2013-02-20 21:07:24.042559509 +0100
+++ fr_FR.po2013-02-20 21:18:06.296129073 +0100
@@ -39,7 +39,7 @@
 msgstr Conversion...
 
 msgid Select picture via key 1..9!
-msgstr Séléctionner l'image (touches 1..9)!
+msgstr Sélectionner l'image (touches 1..9) !
 
 msgid Zoom
 msgstr Zoom
@@ -54,7 +54,7 @@
 msgstr Montre les informations exif de l'image
 
 msgid Could not load exif data from image!
-msgstr Les données exif de l'image n'ont pu être chargé !
+msgstr Les données exif de l'image n'ont pu être chargées !
 
 msgid Marker
 msgstr Marquer
@@ -90,7 +90,7 @@
 msgstr Éjecter
 
 msgid Selected data medium is not mounted!
-msgstr La source séléctionnée n'est pas montée
+msgstr La source sélectionnée n'est pas montée !
 
 msgid Mount failed!
 msgstr Le montage a échoué !
@@ -99,7 +99,7 @@
 msgstr Montage réussi
 
 msgid Unmount succeeded!
-msgstr Démontage réussi!
+msgstr Démontage réussi !
 
 msgid Unmount failed!
 msgstr Le démontage a échoué !
--8---cut here---end---8---

-- 
   Peter


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


Re: [vdr] Request to translate cdplayer-plugin

2013-02-17 Thread Peter Münster
On Sun, Feb 17 2013, Bernard Jaulin wrote:

 Sure ! here is the french translation.

Impossibile - Impossible

-- 
   Peter


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


Re: [vdr] Call for translations for VDR version 2.0.0

2013-02-14 Thread Peter Münster
On Wed, Feb 13 2013, Bernard Jaulin wrote:

 If possible, here is the last french po file (and diff) according with a part
 of french community.

Here a new one with some spelling fixes.

-- 
   Peter


fr_FR.po
Description: Binary data
___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] Call for translations for VDR version 2.0.0

2013-02-11 Thread Peter Münster
On Mon, Feb 11 2013, Marc wrote:

 I forgot the attachment !

Here a new one with some spelling fixes.

(BTW, wouldn't utf-8 be a better choice nowadays?)

-- 
   Peter
# VDR language source file.
# Copyright (C) 2008 Klaus Schmidinger k...@tvdr.de
# This file is distributed under the same license as the VDR package.
# Jean-Claude Repetto j...@repetto.org, 2001, 2002, 2008
# Olivier Jacques jacquesoliv...@hotmail.com, 2003, 2005
# Gregoire Favre g...@magma.unil.ch, 2003
# Nicolas Huillard nhuill...@e-dition.fr, 2005
# Pierre Briec pbr...@free.fr, 2006
# Bruno Roussel bruno.rous...@free.fr, 2007
# Michael Nival mni...@club-internet.fr, 2007
# Marc Perrudin v...@ekass.net, 2013
#
msgid 
msgstr 
Project-Id-Version: VDR 1.6.0\n
Report-Msgid-Bugs-To: vdr-b...@tvdr.de\n
POT-Creation-Date: 2013-02-03 16:46+0100\n
PO-Revision-Date: 2013-02-11 11:19+0100\n
Last-Translator: Marc Perrudin v...@ekass.net\n
Language-Team: French vdr@linuxtv.org\n
Language: fr\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=ISO-8859-1\n
Content-Transfer-Encoding: 8bit\n

msgid *** Invalid Channel ***
msgstr *** Chaîne invalide ! ***

msgid Channel not available!
msgstr Chaîne non disponible !

msgid Can't start Transfer Mode!
msgstr Impossible d'utiliser le mode transfert !

msgid off
msgstr inactive

msgid on
msgstr active

msgid auto
msgstr auto

msgid none
msgstr aucun

msgid Polarization
msgstr Polarisation

msgid System
msgstr Système

msgid Srate
msgstr Srate

msgid Inversion
msgstr Inversion

msgid CoderateH
msgstr CoderateH

msgid CoderateL
msgstr CoderateL

msgid Modulation
msgstr Modulation

msgid Bandwidth
msgstr Bande passante

msgid Transmission
msgstr Transmission

msgid Guard
msgstr Intervalle de garde

msgid Hierarchy
msgstr Hiérarchie

msgid Rolloff
msgstr Rolloff

msgid PlpId
msgstr PlpId

msgid Starting EPG scan
msgstr Mise à jour du guide des programmes

msgid Content$Movie/Drama
msgstr Film/Drame

msgid Content$Detective/Thriller
msgstr Policier/Suspense

msgid Content$Adventure/Western/War
msgstr Aventure/Western/Guerre

msgid Content$Science Fiction/Fantasy/Horror
msgstr Science Fiction/Fantasy/Horreur

msgid Content$Comedy
msgstr Comédie

msgid Content$Soap/Melodrama/Folkloric
msgstr Soap/Mélodrame/Folklorique

msgid Content$Romance
msgstr Romance

msgid Content$Serious/Classical/Religious/Historical Movie/Drama
msgstr Averti/Classique/Religieux/Film Historique/Drame

msgid Content$Adult Movie/Drama
msgstr Film pour adulte/Drame

msgid Content$News/Current Affairs
msgstr Informations/Actualités

msgid Content$News/Weather Report
msgstr Informations/Météo

msgid Content$News Magazine
msgstr Magazine d'information

msgid Content$Documentary
msgstr Documentaire

msgid Content$Discussion/Inverview/Debate
msgstr Discussion/Interview/Débat

msgid Content$Show/Game Show
msgstr Spectacle/Jeu Télévisé

msgid Content$Game Show/Quiz/Contest
msgstr Jeu Télévisé/Quiz/Concours

msgid Content$Variety Show
msgstr Spectacle de variétés

msgid Content$Talk Show
msgstr Débat télévisé

msgid Content$Sports
msgstr Sports

msgid Content$Special Event
msgstr Événement spécial

msgid Content$Sport Magazine
msgstr Magazine sportif

msgid Content$Football/Soccer
msgstr Football/Foot

msgid Content$Tennis/Squash
msgstr Tennis/Squash

msgid Content$Team Sports
msgstr Sports d'équipe

msgid Content$Athletics
msgstr Athlétisme

msgid Content$Motor Sport
msgstr Sports mécaniques

msgid Content$Water Sport
msgstr Sports nautiques

msgid Content$Winter Sports
msgstr Sports d'hiver

msgid Content$Equestrian
msgstr Équitation

msgid Content$Martial Sports
msgstr Sports de combat

msgid Content$Children's/Youth Programme
msgstr Enfant/Programme jeunesse

msgid Content$Pre-school Children's Programme
msgstr Programme pour enfants de maternelle

msgid Content$Entertainment Programme for 6 to 14
msgstr Programme de divertissement pour les 6/14 ans

msgid Content$Entertainment Programme for 10 to 16
msgstr Programme de divertissement pour les 10/16 ans

msgid Content$Informational/Educational/School Programme
msgstr Informationnel/Éducatif/Programme Scolaire 

msgid Content$Cartoons/Puppets
msgstr Dessins animés/Marionnettes

msgid Content$Music/Ballet/Dance
msgstr Musique/Ballet/Danse

msgid Content$Rock/Pop
msgstr Rock/Pop

msgid Content$Serious/Classical Music
msgstr Averti/Musique Classique

msgid Content$Folk/Tradional Music
msgstr Folk/Musique Traditionnelle

msgid Content$Jazz
msgstr Jazz

msgid Content$Musical/Opera
msgstr Comédie Musicale/Opéra

msgid Content$Ballet
msgstr Ballet

msgid Content$Arts/Culture
msgstr Arts/Culture

msgid Content$Performing Arts
msgstr Performances artistiques

msgid Content$Fine Arts
msgstr Beaux Arts

msgid Content$Religion
msgstr Religion

msgid Content$Popular Culture/Traditional Arts
msgstr Culture Populaire/Arts Traditionnels

msgid Content$Literature
msgstr Littérature

msgid Content$Film/Cinema
msgstr Film/Cinéma

msgid Content$Experimental Film/Video
msgstr Film Expérimental/Vidéo

msgid 

Re: [vdr] Call for translations for VDR version 2.0.0

2013-02-11 Thread Peter Münster
On Mon, Feb 11 2013, Klaus Schmidinger wrote:

 Your file looks as if you have already changed it to UTF-8.

Strange... On my disk it's iso-8859, but the mailing software translates
the attachment to utf-8. I'll send a bug-report...

-- 
   Peter


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


Re: [vdr] channels.conf overwritten when installing vdr 1.7.30

2012-10-08 Thread Peter Münster
On Mon, Oct 08 2012, Klaus Schmidinger wrote:

 +install-conf:
 +   @cp *.conf $(DESTDIR)$(CONFDIR)

What about @cp -n?

-- 
   Peter


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


[vdr] playing two audio streams at the same time

2012-08-06 Thread Peter Münster
Hello,

Is it possible today with vdr, to send one audio channel to the
headphones and the other audio channel to the speakers (or another
headphones)?(it wasn't possible about 4 years ago)

Example: we watch a film recorded from Arte, and my wife wants to listen to
the French, and I want to listen to the German audio channel.

If it's possible, what version do I need at least and what must be
configured?

If not, what would be the effort for a VDR developer to implement such a
feature (in hours, $, € or whatever)?

Or do you know other free software for watching and recording TV, with
such a feature?

TIA for any hints!
-- 
   Peter

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


Re: [vdr] playing 2 audio streams at the same time

2008-07-22 Thread Peter Münster
On Sat, Jun 07 2008, Udo Richter wrote:

 Peter Münster wrote:
  Is it possible with vdr, to send one audio channel to the headphones and
  the other audio channel to the speakers (or another headphones)?
 
 I don't think that this is currently possible, though it would be a 
 really great feature. The easy way from hardware point - use stereo 
 channels separate - would be rather tricky as you would have to recode 
 the audio signal on the fly. But an secondary sound card output (dvb + 
 sound card out or 2 sound cards) should be possible as plugin. Maybe 
 even overlay an existing 5.1 output with different language on the rear 
 channels.
 
 Anyone who ever wanted to write a plugin and had just no idea what? ;)

Is there perhaps a dedicated page for such feature requests?
Cheers, Peter

-- 
http://pmrb.free.fr/contact/


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


[vdr] playing 2 audio streams at the same time

2008-06-02 Thread Peter Münster
Hello,

Is it possible with vdr, to send one audio channel to the headphones and
the other audio channel to the speakers (or another headphones)?

Example: we watch a film recorded from Arte, and my wife wants to listen to
the french, and I want to listen to the german audio channel.

If it's possible, what version do I need at least and what must be
configured?

If not, please consider this as a feature request.

Kind regards and thanks for this great software!
Peter

-- 
http://pmrb.free.fr/contact/


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


Re: [vdr] Straw poll: stable version 1.6.0 now?

2008-02-05 Thread Peter Münster
On Sun, Feb 03 2008, Klaus Schmidinger wrote:
 
 Yes or No?

No, because 1.4.7 is quite good enough today for most users and
distributions, and those who need more can compile 1.5.X with additional
kernel drivers. So you don't need to bother with 2 branches (1.6 and 1.7).
Cheers, Peter

-- 
http://pmrb.free.fr/contact/


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


Re: [vdr] need help with UTF-8 error - vdr: please turn off UTF-8 before starting VDR

2008-01-27 Thread Peter Münster
On Sun, Jan 27 2008, techno wrote:
 
 When I run vdr from the command line I get this message:
 
 vdr: please turn off UTF-8 before starting VDR
 
 How do I turn off UTF-8?

Hello,
With the command set | grep -i utf you can see what environment variables
have a value with utf. Those, that begin with LC_ and the variable LANG
have to be unset (example: unset LC_CTYPE LANG).

 Why would I want to?

Because vdr requires it (see the first paragraph in the file INSTALL
/usr/share/doc/packages/vdr/INSTALL).

Cheers, Peter

-- 
http://pmrb.free.fr/contact/


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