Dear visitor, welcome to VDR Portal. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

Quoted
System mit der apt.sh aktuallisiert und nun lassen sich audirecorder, image und osdpip nicht mehr erstellen
|
|
Source code |
1 2 |
apt-get install libpostproccvs51/stable libpostproccvs51-dev/stable libavcodeccvs51/stable libavcodeccvs51-dev/stable libavutilcvs49/stable libavutilcvs49-dev/stable apt-get install ffmpeg/stable |
This post has been edited 3 times, last edit by "zulu" (Jul 24th 2006, 2:47pm)

Quoted
Hab gestern abend mal versucht das control-plugin zu installieren.
Hab alles gem. how-to gemacht. Leider hat er aber die datei nicht runterladen oder auch nicht compiliert, nachdem ich sie manuell in den entsprechenden ordner (../plugins/control) abgelegt habe?
)This post has been edited 1 times, last edit by "MChrisZ" (Jul 24th 2006, 6:17pm)
|
|
Source code |
1 2 |
cd /usr/include/ffmpeg patch < PATH_TO/ffmpeg.diff |
Quoted
#!/bin/sh
# x-vdr (vdr-installer für kanotix)
# von Marc Wernecke - www.zulu-entertainment.de
# 28.04.2006
#
# vdr-dvd
# defaults
source ./../../x-vdr.conf
source ./../../setup.conf
source ./../../functions
WEB="http://ricomp.de/vdr/vdr-control-0.0.2a.tgz"
VERSION="vdr-control-0.0.2a"
LINK="control"
VAR=`basename $WEB`
DIR=`pwd`
# plugin entfernen
function clean_plugin() {
cd $SOURCEDIR/VDR/PLUGINS/src
rm -rf $LINK
rm -rf $VERSION
rm -f $VDRLIBDIR/libvdr-$LINK.so*
log "cleaning $LINK"
}
# plugin installieren
function install_plugin() {
download_plugin
extract_plugin
cd $SOURCEDIR/VDR/PLUGINS/src
rm -f $LINK
ln -vfs $VERSION $LINK
patch_plugin
## plugin specials - start ##
## plugin specials - ende ##
}
# plugin commands
if [ $# \> 0 ]; then
cmd=$1
cmd_plugin
else
install_plugin
log "install-plugin fuer $VERSION ist fertig"
fi
exit 0
|
|
Source code |
1 |
VERSION="control-0.0.2a" |

This post has been edited 2 times, last edit by "zulu" (Jul 25th 2006, 1:43am)
Quoted
deine 0.6.1 hat ja viele tolle neuigkeiten.
This post has been edited 1 times, last edit by "MChrisZ" (Jul 25th 2006, 9:50pm)
|
|
Source code |
1 2 3 4 5 6 7 8 9 |
# You will need ffmpeg-0.4.8 for dvb/fb-devices and for softmpeg, so install it and set path below: FFMDIR = ../../../../ffmpeg-0.4.8 ... ... ... ### Allow user defined options to overwrite defaults: -include $(VDRDIR)/Make.config -include Make.config |
|
|
Source code |
1 |
FFMDIR = ../../../../_ffmpeg-0.4.8 |
|
|
Source code |
1 2 |
./configure --prefix=/usr --enable-shared make |
|
|
Source code |
1 |
make plugins |
This post has been edited 1 times, last edit by "zulu" (Jul 26th 2006, 10:43am)
Quoted
root@vdr:/usr/local/src/_ffmpeg-0.4.8# ./configure --prefix=/usr --enable-shared
./configure: line 717: sdl-config: command not found
./configure: line 717: sdl-config: command not found
Install prefix /usr
Source path /usr/local/src/_ffmpeg-0.4.8
C compiler gcc
make make
CPU x86 (generic)
Big Endian no
MMX enabled yes
Vector Builtins yes
gprof enabled no
zlib enabled yes
mp3lame enabled no
vorbis enabled no
faad enabled no
faadbin enabled no
a52 support no
a52 dlopened no
pp support no
debug symbols yes
optimize yes
shared pp no
Video hooking yes
SDL support no
risky / patent encumbered codecs yes
Imlib2 support yes
freetype support yes
Sun medialib support no
AMR-NB float support no
AMR-NB fixed support no
Creating config.mak and config.h
config.h is unchanged
root@vdr:/usr/local/src/_ffmpeg-0.4.8# make
make -C libavcodec all
make[1]: Entering directory `/usr/local/src/_ffmpeg-0.4.8/libavcodec'
gcc -g -O3 -Wall -DHAVE_AV_CONFIG_H -I.. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE -c -o common.o common.c
In file included from avcodec.h:14,
from common.c:27:
common.h:66: error: array type has incomplete element type
common.h:70: error: array type has incomplete element type
make[1]: *** [common.o] Fehler 1
make[1]: Leaving directory `/usr/local/src/_ffmpeg-0.4.8/libavcodec'
make: *** [lib] Fehler 2
|
|
Source code |
1 |
PLUGINS="$PLUGINS -P'control'" |
|
|
Source code |
1 |
[ "$control" = "on" ] && PLUGINS="$PLUGINS -P'control $control_args'" |
|
|
Source code |
1 2 3 |
# control control=on control_args="" |
|
|
Source code |
1 2 3 4 |
apt-get install gcc-3.3 cd /usr/local/src/_ffmpeg-0.4.8 ./configure --prefix=/usr --enable-shared --cc=gcc-3.3 make |
|
|
Source code |
1 |
[ -d "$SOURCEDIR/_ffmpeg-0.4.8" ] && echo "FFMDIR = ../../../../_ffmpeg-0.4.8" > $SOURCEDIR/VDR/PLUGINS/src/$LINK/Make.config |
This post has been edited 1 times, last edit by "zulu" (Jul 27th 2006, 11:05am)