Dear list,
I was amazed how easy a Linux VDR can be set up, using (in my case) Sidux (recent Debian sid packages). I installed several plugins, and especially LIVE is what we need to have remote access via LAN.
There was no problem to use the online EPG in order to time recordings. Also, it is possible to watch current streams of any channel. But as it comes to finished recordings, we miss a button that would open vlc[plugin] and give the corresponding stream.
Do we need extra settings/plugins?
Sorry for being less detailed, but I have to describe our problem from memory.
Extra question: Is there a way to use specific PAM-modules for login or, at least, create additional users (rather than giving away "admin" account to anybody)?
Thanks Ralf.
Hi Ralf,
RalfGesellensetter schrieb:
But as it comes to finished recordings, we miss a button that would open vlc[plugin] and give the corresponding stream.
please try the current cvs or git version:
git clone git://projects.vdr-developer.org/vdr-plugin-live.git live
This one already has streaming support for recordings.
Extra question: Is there a way to use specific PAM-modules for login or, at least, create additional users (rather than giving away "admin" account to anybody)?
sorry, nothing til now. Anyway, we should first think about the possible user rights to control, e.g. access the settings menu, delete recordings, create timers,...
BR,
Christian
Am Mittwoch 26 August 2009 schrieb Christian Wieninger:
please try the current cvs or git version:
git clone git://projects.vdr-developer.org/vdr-plugin-live.git live
Hi there, thanks for the hint, but:
I miss precise instructions on how to proceed. I got the most recent version into /tmp.
Further on, I tried "make" - resulting in:
sed: can't read ../../../config.h: No such file or directory [: 1: -ge: unexpected operator sed: can't read ../../../config.h: No such file or directory ./buildutil/version-util gen_version_suffix.h || ./buildutil/version-util -F gen_version_suffix.h [: 18: gen_version_suffix.h: unexpected operator make -C pages CXX="g++" CXXFLAGS="-fPIC -O2 -Wall `tntnet-config --cxxflags`" make[1]: Entering directory `/tmp/live/pages' g++ -fPIC -O2 -Wall -I/usr/include -Wno-unused-variable -Wno-non-virtual-dtor -c -D_GNU_SOURCE - DPLUGIN_NAME_I18N='"live"' -DTNTVERSION=1630 -I.. -I../../../../include menu.cpp menu.ecpp:3:24: error: vdr/plugin.h: No such file or directory
Do I need further sources?
ii gcc 4:4.3.3-9 ii libtntnet-dev 1.6.3-3 ii vdr 1.6.0-11 ii vdr-plugin-live 0.2.0-4 ii sidux-vdr 1.3.14 ii libcxxtools-dev 1.4.8-3 ii vdr-plugin-streamdev-server 0.3.4+cvs20090707.2111-2+b1
My packages seem to be mixed from http://ftp2.de.debian.org unstable/main and http://debian.tu-bs.de sid/main Packages
Cheers & Regards Ralf
Hi,
RalfGesellensetter schrieb:
sed: can't read ../../../config.h: No such file or directory
to use the git repository you need a complete development environment for vdr.
My packages seem to be mixed from http://ftp2.de.debian.org unstable/main and http://debian.tu-bs.de sid/main Packages
Probably it's better to look for someone who has a deb package of the git version for you. Anyone there?
BR,
Christian
Hello
Am Donnerstag, 27. August 2009 schrieb RalfGesellensetter:
Am Mittwoch 26 August 2009 schrieb Christian Wieninger:
please try the current cvs or git version:
git clone git://projects.vdr-developer.org/vdr-plugin-live.git live
Hi there, thanks for the hint, but:
I miss precise instructions on how to proceed. I got the most recent version into /tmp.
Further on, I tried "make" - resulting in: [ ... removed error codes ]
You need the package 'vdr-dev' to build vdr plugins outside of VDR sources.
I use the following small script to build LIVE outside of VDR sources (cd into the to level 'live' directory and execute): ----- snip ----- #!/bin/sh # make-live: call make in the vdr live plugin sources with correct settings. [ -d live ] || exit 0
mkdir -p .libs VDRDIR=/usr/include/vdr LIBDIR=.libs make $* ---- snip -----
If you try a manual installation of the live-plugin into VDR you should carefully read the README file in the LIVE distribution. And you need to be aware, that different Linux distributions have VDR setups which differ from what is documented in VDR or LIVE.
In your case I suggest to check also the LIVE-Threads on the german www.vdr- portal.de: Version 0.2.0 announce: http://www.vdr-portal.de/board/thread.php?threadid=76629 Version 0.1.0 announce: http://www.vdr-portal.de/board/thread.php?threadid=64821
There are also hints on how to build a Debian package from the LIVE sources in CVS/Git.
Regards Dieter