Re: [vdr] Using some mediaplayer as set top box player for VDR

2011-12-07 Thread Petric Frank
Hello,

Am Mittwoch, 7. Dezember 2011, 23:30:09 schrieb Dieter Hametner:
> Am Mittwoch, 7. Dezember 2011 schrieb Kartsa:
> > I tried to find some comparison or like to find out if there a other
> > mediaplayers to view recordings than MediMVP. My MediaMVP has started to
> > act funny (=does not want to work) and I started to find a replacement
> > for it. It seems to be quite difficulta task or I just havent found good
> > sites. If someone has any pointers I would appreciate it.
> > 
> > I was looking at Freeagent GoFlex TV HD and was wondering if it could be
> > used as a playback device and then I started to google for some sites
> > for different possibilities with no real luck. So if anyone has either
> > any good sites to chack or any experience in set top boxes I would love
> > to hear.
> 
> You might want to look at
>   http://www.raspberrypi.org/

[dream on]
If this box supports HDMI-CEC to use the remote control of the TV set to 
manage the VDR system ...
[dream off]

regards
  Petric

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


Re: [vdr] Using some mediaplayer as set top box player for VDR

2011-12-07 Thread Dieter Hametner
Hi

Am Mittwoch, 7. Dezember 2011 schrieb Kartsa:
> Hi
> 
> I tried to find some comparison or like to find out if there a other
> mediaplayers to view recordings than MediMVP. My MediaMVP has started to
> act funny (=does not want to work) and I started to find a replacement
> for it. It seems to be quite difficulta task or I just havent found good
> sites. If someone has any pointers I would appreciate it.
> 
> I was looking at Freeagent GoFlex TV HD and was wondering if it could be
> used as a playback device and then I started to google for some sites
> for different possibilities with no real luck. So if anyone has either
> any good sites to chack or any experience in set top boxes I would love
> to hear.

You might want to look at
  http://www.raspberrypi.org/

Regards
Dieter

-- 
Dieter Hametnerdh (plus) vdr (at) gekrumbel (dot) de
live plugin developer  http://live.vdr-developer.org

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


[vdr] Using some mediaplayer as set top box player for VDR

2011-12-07 Thread Kartsa

Hi

I tried to find some comparison or like to find out if there a other 
mediaplayers to view recordings than MediMVP. My MediaMVP has started to 
act funny (=does not want to work) and I started to find a replacement 
for it. It seems to be quite difficulta task or I just havent found good 
sites. If someone has any pointers I would appreciate it.


I was looking at Freeagent GoFlex TV HD and was wondering if it could be 
used as a playback device and then I started to google for some sites 
for different possibilities with no real luck. So if anyone has either 
any good sites to chack or any experience in set top boxes I would love 
to hear.


Thanks
\\Kartsa

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


Re: [vdr] vdr-prefermenu and vdr 1.7.21

2011-12-07 Thread Joachim
Am 07.12.2011 um 18:03 schrieb VDR User :

> 
> Can you please provide a few screenshots.
> 
> Thanks,
> Derek
> 
> 

I could, but it basically looks like the vdr channels menu ;). 

Regards,

Joachim


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


Re: [vdr] [ANNOUNCE] VDR developer version 1.7.22

2011-12-07 Thread Detlef Heine

Am 06.12.2011 18:42, schrieb Klaus Schmidinger:


Do you have only two deivces that share a cable, or is there
a third one? There is a bug with more than two devices that
share one cable.

Please try this:

--- dvbdevice.c 2011/12/03 15:24:27 2.48
+++ dvbdevice.c 2011/12/06 17:38:18
@@ -1126,7 +1126,7 @@
if (cDevice *Device2 = cDevice::GetDevice(d)) {
if (cDvbDevice *DvbDevice1 = dynamic_cast(Device1)) {
if (cDvbDevice *DvbDevice2 = dynamic_cast(Device2)) {
- if (!DvbDevice2->Bond(DvbDevice1))
+ if (!DvbDevice1->Bond(DvbDevice2))
return false; // Bond() has already logged the error
}
else

Klaus

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



It´s the same. But I think the "3rd device" is the problem. I had used a 
very ugly plugin. Without this plugin everything is OK.

Thank you for your quick response.

Detlef.

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


[vdr] compile error vompserver

2011-12-07 Thread Andreas Hölscher
Hallo,
ich habe vor kurzem auf openSuSE 12.1 geupdated und wollte jetzt die
aktuelle Version des VDR mit meinen Plugins kompilieren. Leider bekomme
ich beim vompserver immer eine Fehlermeldung. Da ich keine Ahnung vom
Programmieren habe, hoffe ich hier ein paar Tipps zu bekommen. Hier ist
die Fehlermeldung:
> mediafile.c: In member function ‘virtual MediaList* 
> MediaFile::getMediaList(const MediaURI*)’:
> mediafile.c:126:21: error: expected primary-expression before ‘struct’
> mediafile.c:126:36: error: ‘d_name’ was not declared in this scope
> mediafile.c:126:42: error: ‘offsetof’ was not declared in this scope
> mediafile.c:126:58: error: array bound is not an integer constant before ‘]’ 
> token

und hier die entsprechenden Zeilen aus der Datei mediafile.c:
> MediaList* MediaFile::getMediaList(const MediaURI * parent){
>   ULONG mediaType=parent->getAllowedTypes();
>   Log::getInstance()->log("MediaFile::getMediaList",Log::DEBUG,"parent 
> %s,types=0x%0lx",parent->getName(),mediaType);
>   MediaList *rt=NULL;
>   rt=new MediaList(parent);
>   const char *dirname=parent->getName();
>   //open the directory and read out the entries
>   DIR *d=opendir(dirname);
>   struct dirent *e;
>   union { // according to "The GNU C Library Reference Manual"
> struct dirent d;
> char b[offsetof(struct dirent, d_name) + NAME_MAX + 1];
> } u;

Zeile 126 ist "char b[offsetof(struct dirent, d_name) + NAME_MAX + 1];"

Ich freue mich über jeden Tipp, bei Bedarf kann ich natürlich auch mehr
Code zitieren, ich wollte die Zitate nicht zu lang werden lassen.

Danke,
Andreas


openSuSE 12.1
Kernel 3.1.0-1.2-desktop
vdr 1.7.22
vompserver 0.3.1-3-Yaris (von http://www.russle.net/vomp/)


-- 
Andreas Hölscher, Roetgen/Eifel
http://www.andreas-hoelscher.de

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


Re: [vdr] vdr-prefermenu and vdr 1.7.21

2011-12-07 Thread VDR User
On Wed, Dec 7, 2011 at 7:54 AM, Joe  wrote:
> A while ago, I forked the prefermenu-plugin and named it favorites. It can
> be downloaded from the German vdr-portal:
> http://www.vdr-portal.de/board1-news/board2-vdr-news/106482-announce-favorites-0-0-1-aka-skin-enabled-prefermenu/
>   .  My version is skin enabled, so it uses the original vdr menu functions
> and skin. The drawback might be that the channel list is now a normal vdr
> menu with uses the whole OSD area.

Can you please provide a few screenshots.

Thanks,
Derek

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


Re: [vdr] vdr-prefermenu and vdr 1.7.21

2011-12-07 Thread Matti Lehtimäki

On 12/07/2011 01:01 PM, Arturo Martinez wrote:

Is there a patch for vdr-prefermenu to work with vdr 1.7.21 ?


If you prefer the small OSD of original prefermenu-plugin then there are 
3 patches in debian unstable so it works also with new versions of vdr 
(I tested it with 1.7.22). The patches are attached.


--
Matti Lehtimäki

#! /bin/sh /usr/share/dpatch/dpatch-run

## 01_Makefile-fPIC-fix.dpatch by Thomas Schmidt 
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Adds -fPIC to Makefile 

@DPATCH@
diff -urNad /usr/src/self-compiled/vdr/plugins/prefermenu/vdr-plugin-prefermenu-0.6.2/Makefile vdr-plugin-prefermenu-0.6.2/Makefile
--- /usr/src/self-compiled/vdr/plugins/prefermenu/vdr-plugin-prefermenu-0.6.2/Makefile	2004-08-05 22:48:29.0 +0200
+++ vdr-plugin-prefermenu-0.6.2/Makefile	2004-08-05 22:49:27.0 +0200
@@ -16,7 +16,7 @@
 ### The C++ compiler and options:
 
 CXX  ?= g++
-CXXFLAGS ?= -O2 -Wall -Woverloaded-virtual
+CXXFLAGS ?= -fPIC -O2 -Wall -Woverloaded-virtual
 
 ### The directory environment:
 
#!/bin/sh /usr/share/dpatch/dpatch-run

## makefile
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: add -D_GNU_SOURCE to enable GNU extensions

@DPATCH@
Index: vdr-plugin-prefermenu-0.6.6/Makefile
===
--- vdr-plugin-prefermenu-0.6.6.orig/Makefile	2011-04-09 13:51:33.0 +0200
+++ vdr-plugin-prefermenu-0.6.6/Makefile	2011-04-09 13:51:34.0 +0200
@@ -46,6 +46,7 @@
 endif
 
 DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
+DEFINES += -D_GNU_SOURCE
 
 ### The object files (add further files here):
 
#! /bin/sh /usr/share/dpatch/dpatch-run
## 90_prefermenu-0.6.6-1.5.3+SetAreas-bugfix.dpatch by Thomas Günther 
## http://toms-cafe.de/vdr/download/prefermenu-0.6.6-1.5.3+SetAreas-bugfix.diff
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Changes for VDR >= 1.5.3.

@DPATCH@
Index: vdr-plugin-prefermenu-0.6.6/prefermenu.c
===
--- vdr-plugin-prefermenu-0.6.6.orig/prefermenu.c	2005-01-11 20:09:40.0 +0100
+++ vdr-plugin-prefermenu-0.6.6/prefermenu.c	2011-04-09 13:51:46.0 +0200
@@ -75,6 +75,7 @@
   }
   // Clean up the file with current VDR channels.conf
   PreferedChannelsList.Save();
+  const int LINEHEIGHT = cFont::GetFont(fontOsd)->Height();
   config.height= (config.lines * (LINEHEIGHT+BORDERSIZE+2))+BORDERSIZE;
   return new cPreferOsd;
 }
Index: vdr-plugin-prefermenu-0.6.6/preferosd.c
===
--- vdr-plugin-prefermenu-0.6.6.orig/preferosd.c	2006-05-06 15:19:28.0 +0200
+++ vdr-plugin-prefermenu-0.6.6/preferosd.c	2011-04-09 13:51:46.0 +0200
@@ -60,7 +60,8 @@
   }
   osd=cOsdProvider::NewOsd(config.originx, config.originy);
   if (osd) {
-tArea Area = { 0, 0, config.width+LINEHEIGHT, config.height-1, 4};
+const int LINEHEIGHT = cFont::GetFont(fontOsd)->Height();
+tArea Area = { 0, 0, ((config.width+LINEHEIGHT) & ~0x01) - 1, config.height-1, 4};
 osd->SetAreas(&Area, 1);
 DrawPreferMenu(0,0);
 DisplayPreferMenu();
@@ -168,6 +169,7 @@
 {
   if (current > 1) {
 current -= 1;
+const int LINEHEIGHT = cFont::GetFont(fontOsd)->Height();
 DrawPreferMenu(-LINEHEIGHT,1);
 DisplayPreferMenu();
 //DrawPreferMneu(-10,1);
@@ -181,6 +183,7 @@
 {
   if (current < number) {
 current += 1; 
+const int LINEHEIGHT = cFont::GetFont(fontOsd)->Height();
 DrawPreferMenu(+LINEHEIGHT,-1);
 DisplayPreferMenu();
 //DrawPreferMenu(+10,-1);
@@ -315,6 +318,8 @@
 
 void cPreferOsd::DrawPreferMenu(int delta, int highlight)
 {
+  const cFont *font = cFont::GetFont(fontOsd);
+  const int LINEHEIGHT = font->Height();
   
   int middle = int(config.height/2) + config.height%2;
 
@@ -390,6 +395,8 @@
 
 void cPreferOsd::DrawChannelsNames(int delta)
 {
+  const cFont *font = cFont::GetFont(fontOsd);
+  const int LINEHEIGHT = font->Height();
 
   // XXX The margin is hardcoded for now
   // TODO: make it more flexible
Index: vdr-plugin-prefermenu-0.6.6/preferosd.h
===
--- vdr-plugin-prefermenu-0.6.6.orig/preferosd.h	2006-05-04 21:59:17.0 +0200
+++ vdr-plugin-prefermenu-0.6.6/preferosd.h	2011-04-09 13:51:46.0 +0200
@@ -4,8 +4,6 @@
 #include 
 
 static const int BORDERSIZE = 2;
-static const cFont *font = cFont::GetFont(fontOsd);
-static const int LINEHEIGHT = font->Height();
 
 
 class cPreferOsd : public cOsdObject {
___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] vdr-prefermenu and vdr 1.7.21

2011-12-07 Thread Joe

Am 07.12.2011 12:01, schrieb Arturo Martinez:

Is there a patch for vdr-prefermenu to work with vdr 1.7.21 ?

___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
A while ago, I forked the prefermenu-plugin and named it favorites. It 
can be downloaded from the German vdr-portal: 
http://www.vdr-portal.de/board1-news/board2-vdr-news/106482-announce-favorites-0-0-1-aka-skin-enabled-prefermenu/ 
  
.  My version is skin enabled, so it uses the original vdr menu 
functions and skin. The drawback might be that the channel list is now a 
normal vdr menu with uses the whole OSD area.

@ Klaus
Would it be possible to implement a general small menu in vdr like 
cDisplayTracks with functionality of cOsdMenu ?


Regards,

Joachim

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


[vdr] vdr-prefermenu and vdr 1.7.21

2011-12-07 Thread Arturo Martinez
Is there a patch for vdr-prefermenu to work with vdr 1.7.21 ?

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


[vdr] vdr-xine sync early patch

2011-12-07 Thread Arturo Martinez
Hi,

What is the situation with the syncearly patch for vdr-xine?

Does it help with vdr 1.7.x ?

Is there a version of the patch that applies cleanly on vdr 1.7.21 ?

Is it recommended?

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


Re: [vdr] Streamdev script to stream audio only?

2011-12-07 Thread Teemu Suikki
Hi, i need transcoding, the DVB stream is 224kbps mp2 which is too
high bitrate for mobile use..

--
Teemu

2011/12/7 Füley István :
> Just a question:
> Do you need to transcode the audio stream? Why don't use the elementary
> audio stream from the DVB source?
> something like this:
> http://www.fuley.ro:3014/ES/S1.0W-1536-705-30511+1
>
> István
>
>
> On 2011.12.06. 17:00, Teemu Suikki wrote:
>>
>> Hi!
>>
>> I need a mp3 audio stream of live tv channels.. I tried to do it with
>> ffmpeg, but it doesn't work properly. No data is transferred, I guess
>> ffmpeg doesn't like to write to a fifo?
>>
>> Any ideas?
>>
>>
>>
>> ___
>> 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
>



-- 
Teemu Suikki
http://www.z-power.fi/

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


Re: [vdr] Streamdev script to stream audio only?

2011-12-07 Thread Füley István

Just a question:
Do you need to transcode the audio stream? Why don't use the elementary 
audio stream from the DVB source?

something like this:
http://www.fuley.ro:3014/ES/S1.0W-1536-705-30511+1

István

On 2011.12.06. 17:00, Teemu Suikki wrote:

Hi!

I need a mp3 audio stream of live tv channels.. I tried to do it with
ffmpeg, but it doesn't work properly. No data is transferred, I guess
ffmpeg doesn't like to write to a fifo?

Any ideas?



___
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