NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) Old Stuff (Legacy) GB-PVR Support (legacy) v
« Previous 1 … 1052 1053 1054 1055 1056 … 1231 Next »
Problems with accents...

 
  • 0 Vote(s) - 0 Average
Problems with accents...
FRD
Offline

Junior Member

Posts: 9
Threads: 3
Joined: Apr 2005
#1
2005-04-23, 03:32 PM (This post was last modified: 2005-04-23, 03:37 PM by FRD.)
Hello,

I am quite new to GBPVR, started to play with it Yesterday, but today it seems that I found a quite annoying problem: I live in Hungary, and we have letters with accents like "ő" and "ű". Of course we have tonns of programs and shows containing these letters. Also there are programs that contains a colon ":" in their title.
Now If I change to a channel, where one of these shows are going, then Live TV can not create the file (as it would have a filename that can not be created with, like "Élő: Visszatekintés" - colon will blow things up...), and it ends up with a big blank screen, as of course the decoder can not find the file to play back... Sad

Maybe it is known and solved, and I've just missed some information from Wiki...
Anyone has any idea? (Don't write that I should use live preview, as that is not working for me... Sad
But perhaps to change the filenaming pattern somehow not to add the title of the show...

Thanks, BR:
FRD
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,823
Threads: 769
Joined: Nov 2003
#2
2005-04-23, 05:36 PM
Send one of your XMLTV files to me at support@devnz.com and I'll take a look.
sss
Offline

Junior Member

Posts: 25
Threads: 5
Joined: Apr 2005
#3
2005-04-23, 10:34 PM (This post was last modified: 2005-04-23, 10:40 PM by sss.)
Sorry I was wrong in http://forums.nextpvr.com/showthread.php?t=5628

sub, you are right: the reason not in spaces, but in "special"
(not ASCII?) symbols (i removed them with spaces in that case)...

I'm in Switzerland and many channels are French with "acsent grave"
and so on... The foreign languages support (fonts) (English,French) is installed on WinXP (with native Russian Smile
If I try timeshifting or scheduled record for show with "special" symbols
the file is created (!) and AFTER finishing of records I CAN play it by GBPVR.
But GBPVR CAN'T play file DURING recording. There is no crash: simply
return to "Pending" list of shows.
For me log file does not show something special (?) (below).
The title of show(cartoon) results in the next filename:

Scooby-Doo et lécole des sorcières_20050422_10001135.mpg

----------------------------------------------------------------------
23.04.2005 23:01:21.296 VERBOSE [2] Loading button images: .\skin\Blue\OSD\pbmenubtn.png, .\skin\Blue\OSD\pbmenubtn-selected.png
23.04.2005 23:01:21.312 VERBOSE [2] RecordLiveTV: 1
23.04.2005 23:01:22.530 VERBOSE [2] About to play LiveTV File: Scooby-Doo et lécole des sorcières_20050422_10001135.mpg Channel: tsr
23.04.2005 23:01:22.530 VERBOSE [2] Before LiveTV Play
23.04.2005 23:01:23.296 VERBOSE [2] After LiveTV Play
23.04.2005 23:01:23.296 VERBOSE [2] RenewLease: 1
23.04.2005 23:01:23.327 VERBOSE [2] getValue cached value: /settings/DefaultSkipSecondsForward : 60
23.04.2005 23:01:23.327 VERBOSE [2] getValue cached value: /settings/DefaultSkipSecondsBack : 30
23.04.2005 23:01:23.327 VERBOSE [2] getValue cached value: /settings/ManualSkipTimebase : Minutes
23.04.2005 23:01:23.343 VERBOSE [2] Received event code: 1
23.04.2005 23:01:23.359 VERBOSE [2] StopLiveTV()
23.04.2005 23:01:23.515 VERBOSE [2] at au.j()
23.04.2005 23:01:27.702 VERBOSE [2] PreviewLiveTV(1)
23.04.2005 23:01:27.718 VERBOSE [2] PreviewLiveTV() done
23.04.2005 23:01:27.718 VERBOSE [2] DirectRecordingSource::getPreviewGraph(1)
23.04.2005 23:01:28.749 VERBOSE [2] Received event code: 14
23.04.2005 23:01:59.015 VERBOSE [2] RenewLease: 1
FRD
Offline

Junior Member

Posts: 9
Threads: 3
Joined: Apr 2005
#4
2005-04-23, 11:02 PM
Thanks for the quick reacting...

The problem is that I don't want to record anything, just watch the TV. As I am not using the Live preview feature (yet) I can not see anything, as it would need playing it during recording.
Things are worse with shows that have colons in their title (just think "Earth: Final Conflict" for example) as here the filename can not be created at all...

Anyway, I've just sent a mail with an XMLTV file in it, as You asked. I will try the Live Preview feature tomorrow (I had problems with that too, but in another topic I got answer, hopefully that will work)

Many thanks, BR:
FRD
sss
Offline

Junior Member

Posts: 25
Threads: 5
Joined: Apr 2005
#5
2005-04-25, 11:14 PM
It would be great to resolve the issue on the level of GBPVR
(and may be even start to support fonts for other languagesSmile
For the time being I've ended with the below string in perl - not full translation but enough for French (for some reason there is a space in translation string - not needed Smile

------------------------------------------------------------------------
#!/usr/bin/perl

open(ACCENTS,'+<','accents.xml') or die "Can't find file accents.xml: $!\n";
open(NEWACCENTS,'+>','accents-new.xml') or die "Can't find file 'accents-new.xml': $!\n";

while (<ACCENTS>) {
tr/ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖÙÚÛÜÝàáâãäåæçèéêëìíîïñòóôõöùúûüýÿ/AAAAAAACEEEEIIIIDNOOOOOUUUUYaaaaaaaceeeeiiiinooooouuuuyy/;

print NEWACCENTS $_;
}
--------------------------------------------------------------------------
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,823
Threads: 769
Joined: Nov 2003
#6
2005-04-25, 11:48 PM
Its sorted in the next version of GB-PVR.
sss
Offline

Junior Member

Posts: 25
Threads: 5
Joined: Apr 2005
#7
2005-04-26, 06:41 AM
Thank you!

And really how hard to support other languages?
Currently I can't see russian fonts (music titles and so on)
on GBPVR screen (system has installed fonts).
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,823
Threads: 769
Joined: Nov 2003
#8
2005-04-26, 07:06 AM
Quote:And really how hard to support other languages?
Currently I can't see russian fonts (music titles and so on)
on GBPVR screen (system has installed fonts).
To be quite honest, I dont know how it works with other languages like Russian. I dont purposefully do anything that'll stop other languages being used, but I dont actively test anything other than english.

It definitely works with some non-english languages such as Swedish, but other languages may have issues I'm not aware of.
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)



Possibly Related Threads…
Thread Author Replies Views Last Post
  USA Cable Discovery Channel problems with Schedules Direct ram4x4nut 0 4,057 2013-02-21, 05:08 AM
Last Post: ram4x4nut
  New Machine (probably old problems), Video Render Options jvcleave 12 5,697 2011-02-01, 08:37 AM
Last Post: stustunz
  Problems after installing new capture card mikeh49 1 1,918 2010-11-02, 05:19 PM
Last Post: mikeh49
  Filter Problems imilne 2 2,407 2010-10-29, 12:48 PM
Last Post: imilne
  Weird GBPVR problems jfm 12 4,456 2010-10-01, 03:17 AM
Last Post: jfm
  MCE2XML or General EPG Problems ToughRowToHoe 8 3,589 2010-06-22, 01:16 AM
Last Post: ToughRowToHoe
  Djkxml problems? jezz2020 11 4,722 2010-06-14, 10:43 AM
Last Post: time_lord
  1.4.7 Configuration Problems - Can´t get any TV-channel immigrant 9 3,337 2010-06-08, 07:39 PM
Last Post: immigrant
  Mapping Digital cable problems jh61408 6 3,178 2010-06-07, 03:49 AM
Last Post: sub
  EPG Updating Problems Caseyjones 2 1,666 2010-05-30, 04:47 PM
Last Post: Caseyjones

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode