Re: [vdr] vdr-1.4.3-1.diff epg problems
Thank you for your effort. But the attached patch still did not fix the "no title" in the epg guide or yaepg plugin. But like I said before removing the eit.c patch from your vdr-1.4.3-1.diff and it works fine.Klaus Schmidinger <[EMAIL PROTECTED]> wrote: V Live wrote:> I patched your vdr-1.4.3-1.diff against my vdr-1.4.3 version and since > the epg guide and vdr-yaepg plugin show "no title" in th epg. Seems that > there is an error there.> However if I remove the patches to eit.c and eit.h but keep the rest of > the patch the epg guide works like it should.Well, meanwhile I guess I found it.The problem only occurs if there is external EPG data (withtable id 0x00). The attached patch should fix that.Klaus--- eit.c 2006/10/07 12:32:24 1.121+++ eit.c 2006/10/09 16:14:36@@ -234,7 +234,7 @@ pEvent->SetTitle(ShortEventDescriptor->name.getText(buffer, sizeof(buffer))); pEvent->SetShortText(ShortEventDescriptor->text.getText(buffer, sizeof(buffer))); }- else {+ else if (!HasExternalData) { pEvent->SetTitle(NULL); pEvent->SetShortText(NULL); }@@ -242,7 +242,7 @@ char buffer[ExtendedEventDescriptors->getMaximumTextLength(": ") + 1]; pEvent->SetDescription(ExtendedEventDescriptors->getText(buffer, sizeof(buffer), ": ")); }- else+ else if (!HasExternalData) pEvent->SetDescription(NULL); } delete ExtendedEventDescriptors;@@ -250,7 +250,8 @@pEvent->SetComponents(Components); - pEvent->FixEpgBugs();+ if (!HasExternalData)+ pEvent->FixEpgBugs(); if (LinkChannels) channel->SetLinkChannels(LinkChannels); Modified = true;___vdr mailing listvdr@linuxtv.orghttp://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr Get your own web address for just $1.99/1st yr. We'll help. Yahoo! Small Business. ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] Re: [ANNOUNCE] VDRAdmin-AM-3.4.7
Hi, that's a known issue with Internet Explorer. I don't know how to fix this correctly. Other browsers (FireFox, Opera, Konqueror) do fine. You can take a look at contrib/user.css_example to find a workaround or use another browser ;) Regards, Andreas On Tuesday 10 October 2006 20:56, Suur Karu wrote: > Hi! > For some reason vdradmin's 'Playing Today' and 'What's on Now?' screens > doesn't fit to browser window regardless of window size (IE6 and > Maxthon) and last button is half-visible. > > Screenshots: > http://kodu.neti.ee/~pa000t/files/Clipboard01.jpg > http://kodu.neti.ee/~pa000t/files/Clipboard02.jpg > > > Regards, > SK > > ___ > vdr mailing list > vdr@linuxtv.org > http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr -- http://andreas.vdr-developer.org --- VDRAdmin-AM VDR user #303 ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] vdr-1.4.3-1.diff epg problems
I can confirm this as well. Tried the new patch, didn't solve the problem. EIT -1, Klaus - 0 ;)On 10/10/06, V Live < [EMAIL PROTECTED]> wrote:Thank you for your effort. But the attached patch still did not fix the "no title" in the epg guide or yaepg plugin. But like I said before removing the eit.c patch from your vdr-1.4.3-1.diff and it works fine.Klaus Schmidinger < [EMAIL PROTECTED]> wrote: V Live wrote: > I patched your vdr-1.4.3-1.diff against my vdr-1.4.3 version and since > the epg guide and vdr-yaepg plugin show "no title" in th epg. Seems that > there is an error there.> However if I remove the patches to eit.c and eit.h but keep the rest of > the patch the epg guide works like it should.Well, meanwhile I guess I found it.The problem only occurs if there is external EPG data (withtable id 0x00). The attached patch should fix that. Klaus--- eit.c 2006/10/07 12:32:24 1.121+++ eit.c 2006/10/09 16:14:36@@ -234,7 +234,7 @@ pEvent->SetTitle(ShortEventDescriptor->name.getText(buffer, sizeof(buffer))); pEvent->SetShortText(ShortEventDescriptor->text.getText (buffer, sizeof(buffer))); }- else {+ else if (!HasExternalData) { pEvent->SetTitle(NULL); pEvent->SetShortText(NULL); }@@ -242,7 +242,7 @@ char buffer[ExtendedEventDescriptors->getMaximumTextLength(": ") + 1]; pEvent->SetDescription(ExtendedEventDescriptors->getText(buffer, sizeof(buffer), ": ")); }- else+ else if (!HasExternalData) pEvent->SetDescription(NULL); } delete ExtendedEventDescriptors;@@ -250,7 +250,8 @@pEvent->SetComponents(Components); - pEvent->FixEpgBugs();+ if (!HasExternalData)+ pEvent->FixEpgBugs(); if (LinkChannels) channel->SetLinkChannels(LinkChannels); Modified = true;___ vdr mailing listvdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr Get your own web address for just $1.99/1st yr. We'll help. Yahoo! Small Business. ___vdr mailing listvdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] Re: [ANNOUNCE] VDRAdmin-AM-3.4.7
Andreas Mair wrote: that's a known issue with Internet Explorer. I don't know how to fix this correctly. Other browsers (FireFox, Opera, Konqueror) do fine. You can take a look at contrib/user.css_example to find a workaround or use another browser ;) Thats one of the flaws of the IE layout engine. The page has automatic scrollbars in the frame that appear as soon as the content is longer than the browser window. The IE engine is not able to re-layout the page if the vertical scrollbar pops up. Since the vertical scroller needs some space, the frame gets smaller. Instead of re-flowing the content to the new width, IE just adds a horizontal scroller. (Ever wondered why the IE main window vertical scroller (on no-frames pages) never hides, but gets disabled when not needed? Thats why.) One workaround is to enforce the vertical scroller to be always visible. That way, the scroller space is static and will be taken into account. Change the content frame to this: Then add this to style.css: * html.scroller { overflow-y:scroll; } The * html is a browser switch that will limit this ugly hack to IE browsers only. Cheers, Udo ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] vdr-1.4.3-1.diff epg problems
2006/10/10, V Live <[EMAIL PROTECTED]>: Thank you for your effort. But the attached patch still did not fix the "no title" in the epg guide or yaepg plugin. But like I said before removing the eit.c patch from your vdr-1.4.3-1.diff and it works fine. Are you using vdr with DN and EIT patch for this network?, If you do, I think is important to remark, cause the problem maybe is that this patch is broken by the recent changes may in vdr source, so you should seek help from the author of the patch. regards Carlos Javier -- Carlos Javier Linux User #268006 Jabber: [EMAIL PROTECTED] Habana, CUBA ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
[vdr] demux fails in burn plugin
Hi, I recently installed the burn plugin but I have a problem. When I start the job I see: Job active (converting) [ No any (#). I have attached the dvd.log. I understand that there is a problem with demux because I see in dvd.log: [mplex] + mplex -f 8 -S 0 -M -o /tmp/vdr-burn.SABER_Y_GANAR__.CCBXy3/VDRSYNC.0/movie.mpg /tmp/vdr-burn.SABER_Y_GANAR__.CCBXy3/VDRSYNC.0/vdrsync.mpv /tmp/vdr-burn.SABER_Y_GANAR__.CCBXy3/VDRSYNC.0/vdrsync0.mpa /tmp/vdr-burn.SABER_Y_GANAR__.CCBXy3/VDRSYNC.0/vdrsync1.mpa [mplex]INFO: [mplex] mplex version 1.8.0 (2.2.4 $Date: 2005/08/28 17:50:54 $) [demux] Got parameter -o [demux] Got parameter -v-filter [demux] Unknown parameter -v-filter [demux] + exit 0 [vdr] process demux (pid = 5927) exited gracefully (exit code 0) [vdr] process "demux" exited I use vdr-1.4.2 and cvs burn version. Anyone knows how to solve the problem? It's possible that I have an old vdrburn-dvd.sh script? The lines related to demux are here: demux) IGNORE="" if [ ! -z $IGNORE_TRACKS ]; then IGNORE="-ignore $IGNORE_TRACKS" fi CUT="" if [ ! -z $USE_CUTTING ]; then CUT="-cut" fi vdrsync.pl -o "$MPEG_TMP_PATH" \ -v-filter "burn-buffers" \ -a-filter "burn-buffers" \ -ac3-filter "burn-buffers" \ $CUT $IGNORE "$RECORDING_PATH/" ;; Any help would be apreciated. Thanks. [vdr] starting sh -c 'vdrburn-dvd.sh render' (pid = 5917) [render] + set -e [render] + '[' -z ']' [render] + export JAVA_HOME=/opt/j2re1.4.2 [render] + JAVA_HOME=/opt/j2re1.4.2 [render] + '[' -z ']' [render] + export PROJECTX_HOME=/opt/ProjectX [render] + PROJECTX_HOME=/opt/ProjectX [render] + unset SUDO_COMMAND [render] + case $1 in [render] + png2yuv -j /videoteca/v0/vdr-burn.SABER_Y_GANAR__.6scyAT/menu-bg-0.png -f 25 -n 1 -I t -L 1 [render]INFO: [png2yuv] Parsing & checking input files. [render] + mpeg2enc -f 8 -n p -o /videoteca/v0/vdr-burn.SABER_Y_GANAR__.6scyAT/menu-background.m2v [render]INFO: [mpeg2enc] SETTING EXTENDED MMX for MOTION! [render]INFO: [mpeg2enc] SETTING SSE and MMX for TRANSFORM! [render]INFO: [mpeg2enc] SETTING EXTENDED MMX for PREDICTION! [render]INFO: [png2yuv] Image dimensions are 720x576 [render]INFO: [png2yuv] Movie frame rate is: 25.00 frames/second [render]INFO: [png2yuv] Interlaced frames, top field first. [render]INFO: [png2yuv] Frame size: 720 x 576 [render]INFO: [png2yuv] Now generating YUV4MPEG stream. [render]INFO: [mpeg2enc] Selecting DVD output profile [render] ++ WARN: [mpeg2enc] No aspect ratio specifed and no guess possible: assuming 4:3 display aspect! [render]INFO: [mpeg2enc] Interlaced input - selecting interlaced encoding. [render]INFO: [mpeg2enc] Encoding MPEG-2 video to /videoteca/v0/vdr-burn.SABER_Y_GANAR__.6scyAT/menu-background.m2v [render]INFO: [mpeg2enc] Horizontal size: 720 pel [render]INFO: [mpeg2enc] Vertical size: 576 pel [render]INFO: [mpeg2enc] Aspect ratio code: 2 = 4:3 display [render]INFO: [mpeg2enc] Frame rate code: 3 = 25.0 (PAL/SECAM VIDEO / converted FILM) [render]INFO: [mpeg2enc] Bitrate: 7500 KBit/s [render]INFO: [mpeg2enc] Quality factor: 8 (Quantisation = 9) (1=best, 31=worst) [render]INFO: [mpeg2enc] Field order for input: top-field-first [render]INFO: [mpeg2enc] Sequence unlimited length [render]INFO: [mpeg2enc] Search radius: 16 [render]INFO: [mpeg2enc] DualPrime: no [render]INFO: [mpeg2enc] Using one-pass rate controller [render]INFO: [mpeg2enc] GOP SIZE RANGE 9 TO 15 [render]INFO: [mpeg2enc] Setting colour/gamma parameters to "PAL B/G" [render]INFO: [mpeg2enc] Progressive format frames = 0 [render]INFO: [mpeg2enc] Using default unmodified quantization matrices [render]INFO: [mpeg2enc] Buffering 33 frames [render]INFO: [mpeg2enc] Signaling last frame = 0 [render]INFO: [mpeg2enc] SETTING MMX and MMX for QUANTIZER! [render]INFO: [mpeg2enc] NEW GOP INIT length 15 [render]INFO: [mpeg2enc] Frame 0 0 I q=8.00 sum act=351.70138 [render]INFO: [mpeg2enc] Sequence end inserted [render]INFO: [mpeg2enc] Guesstimated final muxed size = 17248 [render] [render] + spumux -v 2 /videoteca/v0/vdr-burn.SABER_Y_GANAR__.6scyAT/menu-0.xml [render] + mplex -f 8 -o /dev/stdout /videoteca/v0/vdr-burn.SABER_Y_GANAR__.6scyAT/menu-background.m2v /etc/vdr/plugins/burn/menu-silence.mp2 [render]INFO: [mplex] mplex version 1.8.0 (2.2.4 $Date: 2005/08/28 17:50:54 $) [render]INFO: [mplex] File /videoteca/v0/vdr-burn.SABER_Y_GANAR__.6scyAT/menu-background.m2v looks like an MPEG Video stream. [render]INFO: [mplex] File /etc/vdr/plugins/burn/menu-silence.mp2 looks like an MPEG Audio stream. [render]INFO: [mplex] Video stream 0: profile 8 selected - ignoring no