Sponsored links

Go Back   MP3Car.com > Mp3Car Technical > Software & Software Development > Front Ends > StreetDeck


Reply
 
Share Thread Tools Display Modes
Old 04-30-2006, 01:31 PM   #1
Newbie
 
Join Date: Feb 2006
Location: New York
Posts: 9
mm2000 is on a distinguished road
mp3 song title

Some of my mp3s are chinese song, is possible to display chinese in streetdeck?? how can i do it?? Thanks
mm2000 is offline   Reply With Quote
Advertisement
 
Advertisement
Sponsored links

Old 04-30-2006, 05:31 PM   #2
Raw Wave
 
god_of_cpu's Avatar
 
Join Date: Jan 2004
Location: SilverSpring Maryland
Posts: 2,960
god_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond repute
Non-standard characters will not display in Streetdeck.
__________________
StreetDeck.com Developer (I am Chuck)
Get StreetDeck at http://www.streetdeck.com
The Official StreetDeck Forums have moved, please visit us at http://www.streetdeck.com/forum for official support for Streetdeck.
god_of_cpu is offline   Reply With Quote
Old 05-01-2006, 02:42 PM   #3
pim
Low Bitrate
 
Join Date: Mar 2006
Location: The Hague, the Netherlands
Posts: 66
pim is on a distinguished road
Quote: Originally Posted by god_of_cpu
Non-standard characters will not display in Streetdeck.

What is standard? US-ASCII ? ISO-8859-1? Windows-1252?

Pim
pim is offline   Reply With Quote
Old 05-02-2006, 02:46 AM   #4
Variable Bitrate
 
debugger's Avatar
 
Join Date: Mar 2006
Location: CA
Posts: 313
debugger is on a distinguished road
Quote: Originally Posted by god_of_cpu
Non-standard characters will not display in Streetdeck.


THAT SUCKS! No Unicode support? You guys should definatly fix this problem!!!!!
debugger is offline   Reply With Quote
Old 05-02-2006, 09:40 AM   #5
pim
Low Bitrate
 
Join Date: Mar 2006
Location: The Hague, the Netherlands
Posts: 66
pim is on a distinguished road
It has been written elsewhere that StreetDeck
uses PNG images to display text, rather than
use Windows to render it.

So the source of these fonts would need to
make every character available as a bitmap
in order to fully support unicode.

Maybe this can be done if the fonts are rendered
from a TrueType or PostScript font, but I
don't know the origin of the fonts.

Edit: I see it's actually quite well documented in
http://www.mp3car.com/vbulletin/digitalmods-scripts-api/70007-streetdeck-fonts.html

Unfortunately, the situation is worse than I expected:
there's only US-ASCII support, so even accented characters
will not display ... That really hurts!

Seeing this I suppose asking for Unicode is too much, but
can't you at least extend the character set to Windows-1252 ?

Pim

Last edited by pim; 05-02-2006 at 03:03 PM.
pim is offline   Reply With Quote
Old 05-05-2006, 09:17 AM   #6
Variable Bitrate
 
debugger's Avatar
 
Join Date: Mar 2006
Location: CA
Posts: 313
debugger is on a distinguished road
Quote: Originally Posted by pim

Unfortunately, the situation is worse than I expected:
there's only US-ASCII support, so even accented characters
will not display ... That really hurts!

Seeing this I suppose asking for Unicode is too much, but
can't you at least extend the character set to Windows-1252 ?

Pim


If there is a will there is a way! I'll look into the ".png" deal, there might be a way to get other languages into streetDeck. Because many of my song titles are in other languages. And would think more than 1/2 people that will use StreetDeck will be really disappointed about this fact.
debugger is offline   Reply With Quote
Old 05-05-2006, 11:55 AM   #7
Raw Wave
 
god_of_cpu's Avatar
 
Join Date: Jan 2004
Location: SilverSpring Maryland
Posts: 2,960
god_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond repute
Version 1.0.4.5 will support ASCII charecters 32-256. You will have to delete the bitmap font files for the fonts you want to have extended support for. If the font isn't found, a font will be generated from the ASCII character set with extended support. You will lose drop shadows, outlines, and all other features specific to bitmap fonts when the font is auto generated.
__________________
StreetDeck.com Developer (I am Chuck)
Get StreetDeck at http://www.streetdeck.com
The Official StreetDeck Forums have moved, please visit us at http://www.streetdeck.com/forum for official support for Streetdeck.
god_of_cpu is offline   Reply With Quote
Old 05-07-2006, 11:41 AM   #8
pim
Low Bitrate
 
Join Date: Mar 2006
Location: The Hague, the Netherlands
Posts: 66
pim is on a distinguished road
Quote: Originally Posted by god_of_cpu
Version 1.0.4.5 will support ASCII charecters 32-256

That's great! But ASCII defines only characters 32-127. So the rest will be probably defined either according to iso-8859-1 (aka latin1) or windows-1252. Windows-1252 (aka Windows Western) is a superset of iso-8859-1; using that would enable a few characters (like curly quotes) that would otherwise only be encodable in utf-8 or utf-16.

It would be even better if the character set would be user selectable; for instance you would be able to load a font containg greek characters (above value 127) and have utf-16 encoded ID3 tags be translated to the character set corresponding to the font.

Doing so would enable almost any language, beit that only only language can be displayed correctly at a time without reloading a font.

Pim
pim is offline   Reply With Quote
Sponsored links
Advertisement
 
Advertisement
Old 05-11-2006, 05:54 AM   #9
Variable Bitrate
 
debugger's Avatar
 
Join Date: Mar 2006
Location: CA
Posts: 313
debugger is on a distinguished road
Quote: Originally Posted by pim
That's great! But ASCII defines only characters 32-127. So the rest will be probably defined either according to iso-8859-1 (aka latin1) or windows-1252. Windows-1252 (aka Windows Western) is a superset of iso-8859-1; using that would enable a few characters (like curly quotes) that would otherwise only be encodable in utf-8 or utf-16.

It would be even better if the character set would be user selectable; for instance you would be able to load a font containg greek characters (above value 127) and have utf-16 encoded ID3 tags be translated to the character set corresponding to the font.

Doing so would enable almost any language, beit that only only language can be displayed correctly at a time without reloading a font.

Pim

For now just use TagScanner 4.9 Final:

http://www.free-codecs.com/download_...hp?d=230&s=160

It will allow you to change ID3 Tags from you native language into English translit automatically. Also you can batch rename files... etc
debugger is offline   Reply With Quote
Old 05-15-2006, 07:39 PM   #10
pim
Low Bitrate
 
Join Date: Mar 2006
Location: The Hague, the Netherlands
Posts: 66
pim is on a distinguished road
Quote: Originally Posted by debugger
It will allow you to change ID3 Tags from you native language into English translit automatically.

Are you suggesting I translate all my utf-8/utf-16/iso-8859-1 encoded tags, which display perfectly in every other application, to us-ascii, in order to suit a single broken application?

Pim
pim is offline   Reply With Quote
Old 05-15-2006, 08:42 PM   #11
Constant Bitrate
 
fooshizn1x's Avatar
 
Join Date: May 2005
Location: 714 - Socal baby!
Posts: 154
fooshizn1x is on a distinguished road
why not copy the files and re-name/translate them.. that way you can use them in both instances without ruining one or the other? And no were not saying you should translate them to use them with a 'broken' piece of software, were suggesting that the software isnt 'broken' it just doesnt do exactly what you want it to do.. wouldnt it be great if when I bought a computer it had one program on it called "Idoeverythingforeverybody" and it did everything that everybody in the entire world wanted it to do.. that'd be sweet...
__________________
Sell me your stuff.. please see what i'm looking to buy
http://mp3car.com/vbulletin/showthread.php?t=75182
fooshizn1x is offline   Reply With Quote
Old 05-16-2006, 05:47 PM   #12
pim
Low Bitrate
 
Join Date: Mar 2006
Location: The Hague, the Netherlands
Posts: 66
pim is on a distinguished road
Quote: Originally Posted by fooshizn1x
why not copy the files and re-name/translate them.. that way you can use them in both instances without ruining one or the other?

I see what you mean. But then, it would waste a lot of resources without much benefit. "Translating" to US-ASCII is not much different from dropping characters, which is what we are facing anyway.

Pim
pim is offline   Reply With Quote
Old 05-16-2006, 05:56 PM   #13
pim
Low Bitrate
 
Join Date: Mar 2006
Location: The Hague, the Netherlands
Posts: 66
pim is on a distinguished road
Freetype

god_of_cpu, I understand you need bitmap fonts for your UI. Why don't you just render them at runtime? Freetype could do that for you.

Pim
pim is offline   Reply With Quote
Old 05-17-2006, 03:10 AM   #14
Raw Wave
 
god_of_cpu's Avatar
 
Join Date: Jan 2004
Location: SilverSpring Maryland
Posts: 2,960
god_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond reputegod_of_cpu has a reputation beyond repute
Streetdeck already can create the fonts at runtime and infact will if you don't have any fonts in the skin directory. The whole point of having bitmap fonts though is so you can implement cool looking and usable skins with free form fonts with drop shadows, outlines, glow effects, warping, etc which you lose out on if you simply auto generate them from a standard ttf font.
__________________
StreetDeck.com Developer (I am Chuck)
Get StreetDeck at http://www.streetdeck.com
The Official StreetDeck Forums have moved, please visit us at http://www.streetdeck.com/forum for official support for Streetdeck.
god_of_cpu is offline   Reply With Quote
Sponsored links
Advertisement
 
Advertisement
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
RR+Flash = Song Title Scroll... guino Road Runner 4 02-12-2005 01:46 PM
Current Playing Song Title on front screen Gobby Road Runner 2 02-09-2005 02:50 PM
Song Title & Time Display Plugin AVGeek Software & Software Development 3 06-02-2003 08:16 PM
Screensaver that displays band + song title for Winamp/Win98? Tony S Software & Software Development 1 12-03-2001 04:04 AM



All times are GMT -5. The time now is 07:00 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.3.2
Copyright © 1999 - 2008 Mp3Car.com Inc.Ad Management by RedTyger
Message Board Statistics