Re: [vdr] Patch for DVB-T WideView WT-220U PenType Receiver (Typhoon/Freecom).
2008/2/23, Albert Gall <[EMAIL PROTECTED]>: > This patch fixes the problem by changing the channel the same transponder: > Patch : Thx. It works. Regards Oleg ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] vdr-pictures and pic2mpg
On 02/25/08 06:48, Stefan Wagner wrote: > Klaus Schmidinger <[EMAIL PROTECTED]> wrote: >> On 02/24/08 21:42, Stefan Wagner wrote: >>> the pic2mpg script aceptis only files with lower case caracters. >>> is it posible to support upper case caracters by default? >>> >>> my pictures are named DSCN*.JPG and the script only acepts DSCN*.jpg. >> --- PLUGINS/src/pictures/pic2mpg2008/02/02 11:34:43 1.2 >> +++ PLUGINS/src/pictures/pic2mpg2008/02/24 22:00:18 >> @@ -143,7 +143,7 @@ >> sub ConvertFile >> { >> my ($Pict, $Mpeg) = @_; >> - (my $Type) = $Pict =~ /\.([^\.]*)$/; >> + (my $Type) = lc($Pict) =~ /\.([^\.]*)$/; >> if (!defined $PNMCONV{$Type}) { >> return if ($Ignore); >> die "unknown file type '$Type': '$Pict'\n"; >> >> >> (untested). >> >> Klaus > > works fine now with uper and lower case. > > [EMAIL PROTECTED]:/media/daten/burn$ pic2mpg -v 1 /media/daten/burn/ > /media/daten/burn/dest/ > ./dscn0015.jpg -> /media/daten/burn/dest//./dscn0015.jpg.mpg > ./DSCN00051.JPG -> /media/daten/burn/dest//./DSCN00051.JPG.mpg > > but wen i call the script with relative paths: > [EMAIL PROTECTED]:/media/daten/burn$ pic2mpg -v 1 ./ dest/ > ./dscn0015.jpg -> dest//./dscn0015.jpg.mpg > ./DSCN00051.JPG -> dest//./DSCN00051.JPG.mpg > removing ./DSCN00051.JPG.mpg > removing ./dscn0015.jpg.mpg > dest/: No such file or directory > > why will the script remove the files? > they are in dest/ before ending script. >From the README file: Just don't make the destination directory a subdirectory of the source directory, because this would surely lead to problems. Klaus ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] VDR developer version 1.5.16 - Makefile
On 02/24/08 17:28, [EMAIL PROTECTED] wrote: > Hi there, > > First time i'm using the Makefile to install vdr. > Why is it : > > install-i18n: > @mkdir -p $(DESTDIR)$(LOCDIR) > @(cd $(LOCALEDIR); cp -r --parents * $(DESTDIR)$(LOCDIR)) > > and > > install-plugins: plugins > @mkdir -p $(DESTDIR)$(PLUGINLIBDIR) > @cp --remove-destination $(PLUGINDIR)/lib/lib*-*.so.$(APIVERSION) > $(DESTDIR)$(PLUGINLIBDIR) > > > with > DESTDIR ?= > PREFIX ?= /usr/local > MANDIR = $(PREFIX)/share/man > BINDIR = $(PREFIX)/bin > LOCDIR = ./locale > > being the default ? > > is there a $(PREFIX) missing after $(DESTDIR) in install-i18n and > install-plugins ? I don't use this myself, so somebody else will have to look into this. Klaus ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] VDR developer version 1.5.16 - strange characters
On Mon, Feb 25, 2008 at 07:25:34PM +0100, Klaus Schmidinger wrote: > > Maybe these are control codes (like 0x86 and 0x87). > > Please add some debug output to the two String::decodeText() > functions in libsi/si.c to see what's going on here. > 0x86 and 0x87 should already get filtered out, but maybe these > are different ones. With 1.5.16 with DVB-S2 patch under BBC 1 Cl I got : grep "BBC 1 C" -5 /media/video0/epg.data So the BBC News aren't well recognized, they are displayed as square. I do use en_GB.UTF-8 as locale. X 2 03 eng Audio - Attheraces X 2 03 ara Audio 2 - ATR 2nd AV X 3 02 eng Teletext/Subtitle - Attheraces e c C S28.2E-2-2050-6904 BBC 1 CI E 27753 1203962400 1800 4E 18 T BBC News D National and international news from the BBC, followed by Weather. [S] X 1 01 ___ Video - BBC ONE CI X 2 03 eng Audio 1 - BBC ONE CI Thanks. -- Grégoire FAVRE http://gregoire.favre.googlepages.com http://www.gnupg.org http://picasaweb.google.com/Gregoire.Favre ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] VDR developer version 1.5.16 - Makefile
[EMAIL PROTECTED] wrote: > Hi there, > > First time i'm using the Makefile to install vdr. > Why is it : > > install-i18n: > @mkdir -p $(DESTDIR)$(LOCDIR) > @(cd $(LOCALEDIR); cp -r --parents * $(DESTDIR)$(LOCDIR)) > > and > > install-plugins: plugins > @mkdir -p $(DESTDIR)$(PLUGINLIBDIR) > @cp --remove-destination $(PLUGINDIR)/lib/lib*-*.so.$(APIVERSION) > $(DESTDIR)$(PLUGINLIBDIR) > > > with > DESTDIR ?= > PREFIX ?= /usr/local > MANDIR = $(PREFIX)/share/man > BINDIR = $(PREFIX)/bin > LOCDIR = ./locale > > being the default ? > > is there a $(PREFIX) missing after $(DESTDIR) in install-i18n and > install-plugins ? No. What is the problem, exactly? -- Anssi Hannula ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] VDR developer version 1.5.16 - strange characters
On 02/25/08 19:34, Gregoire Favre wrote: > On Mon, Feb 25, 2008 at 07:25:34PM +0100, Klaus Schmidinger wrote: >> Maybe these are control codes (like 0x86 and 0x87). >> >> Please add some debug output to the two String::decodeText() >> functions in libsi/si.c to see what's going on here. >> 0x86 and 0x87 should already get filtered out, but maybe these >> are different ones. > > With 1.5.16 with DVB-S2 patch under BBC 1 Cl I got : > > grep "BBC 1 C" -5 /media/video0/epg.data > > So the †BBC News‡ aren't well recognized, they are displayed as > square. I do use en_GB.UTF-8 as locale. > > X 2 03 eng Audio - Attheraces > X 2 03 ara Audio 2 - ATR 2nd AV > X 3 02 eng Teletext/Subtitle - Attheraces > e > c > C S28.2E-2-2050-6904 BBC 1 CI > E 27753 1203962400 1800 4E 18 > T †BBC News‡ > D National and international news from the BBC, followed by Weather. [S] > X 1 01 ___ Video - BBC ONE CI > X 2 03 eng Audio 1 - BBC ONE CI So apparently these *are* 0x86 and 0x87. Please try removing the line || (*from == 0x86 || *from == 0x87) from libsi/si.c (should be line 418). It may take a while before the EPG data is updated, so at first you may still see the old version. Please report if this causes any unexpected side effects. Klaus ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] VDR developer version 1.5.16 - strange characters
On 02/24/08 18:53, [EMAIL PROTECTED] wrote: > This is the output of my dvb-ttpci FF card: > http://img252.imageshack.us/my.php?image=t1yz3.png > What are the box around the titles ? > > Is anybody able to reproduce and fix this ? Maybe these are control codes (like 0x86 and 0x87). Please add some debug output to the two String::decodeText() functions in libsi/si.c to see what's going on here. 0x86 and 0x87 should already get filtered out, but maybe these are different ones. Klaus ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] vdr-pictures and pic2mpg
Klaus Schmidinger <[EMAIL PROTECTED]> wrote: >> [EMAIL PROTECTED]:/media/daten/burn$ pic2mpg -v 1 /media/daten/burn/ >> /media/daten/burn/dest/ >> ./dscn0015.jpg -> /media/daten/burn/dest//./dscn0015.jpg.mpg >> ./DSCN00051.JPG -> /media/daten/burn/dest//./DSCN00051.JPG.mpg >> >> but wen i call the script with relative paths: >> [EMAIL PROTECTED]:/media/daten/burn$ pic2mpg -v 1 ./ dest/ >> ./dscn0015.jpg -> dest//./dscn0015.jpg.mpg >> ./DSCN00051.JPG -> dest//./DSCN00051.JPG.mpg >> removing ./DSCN00051.JPG.mpg >> removing ./dscn0015.jpg.mpg >> dest/: No such file or directory >> >> why will the script remove the files? >> they are in dest/ before ending script. > > From the README file: > > Just don't make the destination directory a subdirectory of > the source directory, because this would surely lead to problems. ok, but with relative paths it don't works. [EMAIL PROTECTED]:~/tests$ ls dest source [EMAIL PROTECTED]:/tmp$ pic2mpg -v 1 source dest ./DSCN2155.JPG -> dest/./DSCN2155.JPG.mpg ./DSCN2154.JPG -> dest/./DSCN2154.JPG.mpg removing ./DSCN2155.JPG.mpg removing ./DSCN2154.JPG.mpg dest: Datei oder Verzeichnis nicht gefunden the script will create a dest dir in source (/tmp/source/dest/) and delete the files after finishing. the script only works with absolute paths correctly. stefan ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] VDR developer version 1.5.16 - strange characters
On Mon, Feb 25, 2008 at 07:45:55PM +0100, Klaus Schmidinger wrote: > >> Please add some debug output to the two String::decodeText() > >> functions in libsi/si.c to see what's going on here. > >> 0x86 and 0x87 should already get filtered out, but maybe these > >> are different ones. > > So apparently these *are* 0x86 and 0x87. > > Please try removing the line > > || (*from == 0x86 || *from == 0x87) > > from libsi/si.c (should be line 418). > It may take a while before the EPG data is updated, so at first you may > still see the old version. > > Please report if this causes any unexpected side effects. What I reported is that they aren't filtered. Commenting the lign in libsi/si.c seems to fix it :-) Thanks. -- Grégoire FAVRE http://gregoire.favre.googlepages.com http://www.gnupg.org http://picasaweb.google.com/Gregoire.Favre ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr