2014-12-17, 10:48
I've build a new TV-Server including a DD Cine S2 + TT-Butget S2-3200.
I use Ubuntu 14.04.1 headless with VDR 2.1.6
I compiled VDR with the following plugins.
1.)
2.)
there is a patch to fix this (osd.patch) but I don't get it patched.
I copied the patch in source folder from vdr-plugin-live
but I get the following error
so I think I must doing something wrong but I don't know what...
3.)
for this error google found the following to fix it....
I use Ubuntu 14.04.1 headless with VDR 2.1.6
I compiled VDR with the following plugins.
- VDR 2.1.6
- vnsi-server-plugin
- epgsearch-plugin
- streamdev-server-plugin
- live-plugin
1.)
Code:
Dec 16 08:03:54 Gotham-City vdr: [5072] [live] ERROR: Unable to load cert/key (/var/lib/vdr/plugins/live/live.pem//var/lib/vdr/plugins/live/live-key.pem): Datei oder Verzeichnis nicht gefunden
2.)
Code:
Dec 16 08:03:55 Gotham-City vdr: [5044] ERROR: no OSD provider available - using dummy OSD!
I copied the patch in source folder from vdr-plugin-live
Code:
patch -p1 <./osd.patch
Code:
can't find file to patch at input line 360
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|diff --git a/pages/Makefile b/pages/Makefile
|old mode 100644
|new mode 100755
|index 78a4a9c..2ca1b8d
|--- a/pages/Makefile
|+++ b/pages/Makefile
--------------------------
File to patch:
3.)
Code:
Dec 16 08:03:55 Gotham-City vdr: [5044] ERROR: Kanal blockiert (zeichnet auf)!
Quote:Looks like a problem with the new way VDR tries to keep the currentbut I'm not sure if this is the right way....
channel active on the primary device. It assumes that the primary
device is able to actually replay something, which in your case is
not true.
Please try changing the line
if (!cDevice:rimaryDevice()->HasProgramme()) {
in VDR/vdr.c into
if (!cDevice:rimaryDevice()->HasProgramme() && cDevice:
rimaryDevice()->HasDecoder()) {
This will prevent a primary device that can't actually replay or show live video
from continuously trying to set the channel.