Re: [vdr] DIVX recordings? :)
Hi, I've generated H264 TS with VLC but VDR cannot play it. Avidemux can produce only MPEG2 TS and it also doesn't work with VDR. Mencoder doesn't support TS as output container at all. Is there a way to produce TS that would work with VDR? Michal On 09/05/2010 02:38 PM, Teemu Suikki wrote: Hi! This is a good idea, I didn't think about that! I also watch my recordings with PS3, it has good support for H.264 TS too. -- Teemu 2010/9/5 Rolf Ahrenberg: On Sun, 5 Sep 2010, Teemu Suikki wrote: So basicly I would like to be able to compress vdr recording to divx, but still view it like normal VDR recording. It would be quite enough Why don't you just use H.264 TS instead of Divx? VDR already natively supports it... ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] [ANNOUNCE] vdr-webvideo 0.3.2
On 11.09.2010 18:45, Rolf Ahrenberg wrote: On Sat, 11 Sep 2010, Antti Ajanki wrote: On 09/11/2010 01:44 PM, Jouni Karvo wrote: May I suggest adding a VDRINCLUDEDIR variable, and -I option, and removing the "vdr/" from the #include statements in the future versions. Thanks for the suggestion. I will add variable for the include dir as you proposed. I'd rather suggest to use the VDR standard to compose the Makefile: VDRDIR = ../../.. ... -include $(VDRDIR)/Make.global -include $(VDRDIR)/Make.config ... INCLUDES += -I$(VDRDIR)/include I followed Rofa's suggestion, and this way it compiles nicely for 1.7.15 (and seems to work, too). Thanks! yours, Jouni ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] [ANNOUNCE] vdr-webvideo 0.3.2
On Sat, 11 Sep 2010, Antti Ajanki wrote: On 09/11/2010 01:44 PM, Jouni Karvo wrote: May I suggest adding a VDRINCLUDEDIR variable, and -I option, and removing the "vdr/" from the #include statements in the future versions. Thanks for the suggestion. I will add variable for the include dir as you proposed. I'd rather suggest to use the VDR standard to compose the Makefile: VDRDIR = ../../.. ... -include $(VDRDIR)/Make.global -include $(VDRDIR)/Make.config ... INCLUDES += -I$(VDRDIR)/include BR, -- rofa ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] [ANNOUNCE] vdr-webvideo 0.3.2
On 09/11/2010 01:44 PM, Jouni Karvo wrote: On 27.08.2010 20:44, Antti Ajanki wrote: New version of the Webvideo plugin is available at http://users.tkk.fi/~aajanki/vdr/webvideo/ Tried compiling with vdr 1.7.15. Does not work, because the "vdr" include directory is under "include", not where the sources are. May I suggest adding a VDRINCLUDEDIR variable, and -I option, and removing the "vdr/" from the #include statements in the future versions. Thanks for the suggestion. I will add variable for the include dir as you proposed. I have tested it only in 1.6.0. Does it compile after changing the include path or are other modifications needed? Antti ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] [ANNOUNCE] vdr-webvideo 0.3.2
On 27.08.2010 20:44, Antti Ajanki wrote: New version of the Webvideo plugin is available at http://users.tkk.fi/~aajanki/vdr/webvideo/ Tried compiling with vdr 1.7.15. Does not work, because the "vdr" include directory is under "include", not where the sources are. May I suggest adding a VDRINCLUDEDIR variable, and -I option, and removing the "vdr/" from the #include statements in the future versions. yours, Jouni ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
[vdr] Arabic language EPG is inappropriately displayed
This will only build vdr, no plugins, no installation into the system It will just give you the idea if the patch still works This is basically my setup if I test new vdr stuff (patches, upgrades, etc) sudo aptitude install libfribidi-dev sudo apt-get build-dep vdr mkdir -v /usr/local/src/vdr cd /usr/local/src/vdr wget ftp://ftp.tvdr.de/vdr/Developer/vdr-1.7.15.tar.bz2 tar -xvjf vdr-1.7.15.tar.bz2 wget ftp://ftp.tvdr.de/vdr/Developer/vdr-1.7.0-bidi.diff.gz gunzip -d vdr-1.7.0-bidi.diff.gz sed 's/vdr-1.7.0.alrawab/vdr-1.7.15/g;s/vdr-1.7.0/vdr-1.7.15/g' \ vdr-1.7.15-bidi.patch patch -b -p 0 -i vdr-1.7.15-bidi.patch cd vdr-1.7.15/ make make plugins mkdir -pv $HOME/vdr-1.7.15/videos cp -vai *.conf $HOME/vdr-1.7.15/ cp -vai runvdr.template $HOME/vdr-1.7.15/runvdr ## adjust runvdr: nano $HOME/vdr-1.7.15/runvdr export VDR_LANG="$LANG" export LC_COLLATE="$LANG" export VDR_CHARSET_OVERRIDE="ISO-8859-6" VDRPRG="/usr/local/src/vdr/vdr-1.7.15/vdr" VDROPTIONS="-w 60 --port=2001 --log=3 \ --localedir=/usr/local/src/vdr/vdr-1.7.15/locale/ \ --video=$HOME/vdr-1.7.15/videos --config=$HOME/vdr-1.7.15/ \ --lib=/usr/local/src/vdr/vdr-1.7.15/PLUGINS/lib" # have a look @ syslog on a second terminal: tail -fn100 /var/log/syslog | grep vdr # now run vdr using the runvdr start script: sudo sh $HOME/vdr-1.7.15/runvdr #Replace CHANNEL with the channel you like to see # LSTE does list EPG data of that channel /usr/local/src/vdr/vdr-1.7.15/svdrpsend.pl -p 2001 -d localhost LSTE CHANNEL \ | grep '215-' | cut -d - -f2- | sed -s '/^e/d;/^c/d' # stop vdr with "killall vdr" on another terminal The patch applies/builds fine after the path adjustment, don't know if it does what it's supposed to without arrabic channels to test... d ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
[vdr] vdr-filemanager plugin not compiling
Hi, I am trying to compile on vdr 1.7.15 the filebrowser-0.2.0 plugin g++ -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses -fPIC -c -DFILEBROWSER_PLUGIN_BUILD -DUSE_LIEMIEXT -DUSE_SETUP -DUSE_SORTRECORDS -DUSE_TTXTSUBS -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"filebrowser"' -I/usr/src/linux-2.6.34-ARCH/include/linux/dvb//include -I../../../include -I/usr/src/linux-2.6.34-ARCH/include/linux/dvb//include filebrowser.c g++ -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses -fPIC -c -DFILEBROWSER_PLUGIN_BUILD -DUSE_LIEMIEXT -DUSE_SETUP -DUSE_SORTRECORDS -DUSE_TTXTSUBS -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"filebrowser"' -I/usr/src/linux-2.6.34-ARCH/include/linux/dvb//include -I../../../include -I/usr/src/linux-2.6.34-ARCH/include/linux/dvb//include menu-filebrowser.c menu-filebrowser.c: In member function ‘void cOsdMenuFilebrowser::LoadDir(cString)’: menu-filebrowser.c:205:70: error: invalid conversion from ‘const char*’ to ‘char*’ menu-filebrowser.c: In member function ‘void cOsdMenuFilebrowser::Refresh(const char*)’: menu-filebrowser.c:243:112: error: invalid conversion from ‘const char*’ to ‘char*’ menu-filebrowser.c:260:154: error: invalid conversion from ‘int (*)(const void*, const void*)’ to ‘int (*)(const dirent64**, const dirent64**)’ menu-filebrowser.c:260:154: error: initializing argument 4 of ‘int scandir64(const char*, dirent64***, int (*)(const dirent64*), int (*)(const dirent64**, const dirent64**))’ make: *** [menu-filebrowser.o] Error 1 Anybody has managed to compile it? Ideally does anybody have a patched filebrowser plugin or a patch to get it to compile under vdr 1.7.15? ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr