Search found 45 matches

by Superlexx
Fri Feb 18, 2005 1:44 am
Forum: Fixed
Topic: artist_alphabetical is always same as artist (and other)
Replies: 4
Views: 8894

hm, I'm afraid I've misunderstood the purpose of artist_alphabetical and artist ;). What I expected from it was to allow sorting like WMP9/10 does, but it seems that it's for converting "Cure, The" to "The Cure", my folder names are all like "The Cure" anyway :D. So I m...
by Superlexx
Fri Feb 18, 2005 12:50 am
Forum: Fixed
Topic: artist_alphabetical is always same as artist (and other)
Replies: 4
Views: 8894

artist_alphabetical is always same as artist (and other)

in update.php, about line 392: $temp = explode(', ', $artist_alphabetic); should be $temp = split('[, ]', $artist_alphabetic); , because explode will only split the string on exact ', ' match and not on any of the contained characters. it would also be better to do instead of if (in_array ($temp[1],...
by Superlexx
Thu Feb 17, 2005 1:30 am
Forum: General discussion
Topic: ogg vorbis streaming and WinAmp
Replies: 22
Views: 30042

Damn WinAmp, with foobar I get no sound problems while transcoding from mp3 to vorbis. I've done a test, the original transcoder gave me 2.66x speed and the optimized one did 5.25x (a 3:09 song was transcoded in 36 seconds), which should be enough for every PC > 500MHz. I don't know if there is a se...
by Superlexx
Wed Feb 16, 2005 7:08 pm
Forum: General discussion
Topic: ogg vorbis streaming and WinAmp
Replies: 22
Views: 30042

Maybe it's because our boxes lack CPU power, I have a 1.5GHz AthlonXP and oggenc is keeping it 100% busy.
by Superlexx
Wed Feb 16, 2005 1:56 pm
Forum: General discussion
Topic: ogg vorbis streaming and WinAmp
Replies: 22
Views: 30042

lol

Code: Select all

stream.php?...&ext=.ogg
did the trick.
Winamp - it really whips the llamas ass :roll:
by Superlexx
Wed Feb 16, 2005 12:42 pm
Forum: General discussion
Topic: ogg vorbis streaming and WinAmp
Replies: 22
Views: 30042

ogg vorbis streaming and WinAmp

Hello, I've transcoded parts of my music library to ogg vorbis at about 64kb/s, but streaming those files with WinAmp (v5.08) fails, "error synching to mpeg". When adding a link to the .ogg directly (the .ogg files are publically accessible ATM), WinAmp plays it. Also foobar2000 plays the ...
by Superlexx
Tue Feb 15, 2005 1:11 pm
Forum: Implemented
Topic: Unicode support
Replies: 34
Views: 56506

I've played around with Phalanger and yes, it supports unicode better than PHP (readdir is unicode-aware, so probably other functions), but its function set is quite limited, i.e. no 1:1 support for pack() (hmacsha1() alsways rerturns "00") and worst of all, no preg_match() which means tha...
by Superlexx
Mon Feb 14, 2005 6:32 pm
Forum: Implemented
Topic: Unicode support
Replies: 34
Views: 56506

Is this the best site to check if HTML is W3C compliant? http://validator.w3.org/ yes, btw I am using Opera because checking the code is just as easy as pressing Alt+Ctrl+v, even if it's a local file (unlike FireFox, Opera uploads the data for validation and not just the URL). To save you some time...
by Superlexx
Mon Feb 14, 2005 4:59 pm
Forum: Implemented
Topic: Unicode support
Replies: 34
Views: 56506

W3C compliancy isn't a big deal, just move the formatting to the CSS and turn ampersands ('&') in URLs to "&" (plus other minor stuff like removing the iframe from the table), but without unicode support it doesn't make much sence to me at this moment . First I will check out Phala...
by Superlexx
Sun Feb 13, 2005 9:46 pm
Forum: Implemented
Topic: Unicode support
Replies: 34
Views: 56506

After I switched the MySQL charset to default (latin1_swedish_ci) and disabled mbstring.dll in php.ini, the >127 characters work as intended. Still I have some albums with cyrillic characters that don't work. Btw. in menu.php, line 119 should be </tr> instead of <tr> ;). I have modified some of the ...
by Superlexx
Sun Feb 13, 2005 6:46 pm
Forum: Implemented
Topic: Unicode support
Replies: 34
Views: 56506

well, for some reason, I even have problems with Björk since at some stage the name becomes "Bj" like other names containing high byte characters (some german and scandinavian band names and tracks). Maybe it's because the mbstring.dll PHP extension is installed or MySQL running in UTF-8 m...
by Superlexx
Sat Feb 12, 2005 4:20 pm
Forum: Implemented
Topic: Unicode support
Replies: 34
Views: 56506

MySQL does support unicode and phpMyAdmin too, but after looking into NJB code, the first problem that I encountered was readdir() that returns question marks instead of unicode characters while working well with characters >127 (like in "Björk"). Looks like we'll have to wait for PHP6 or ...
by Superlexx
Fri Feb 11, 2005 10:07 am
Forum: Fixed
Topic: bug in stream.php
Replies: 3
Views: 8257

http://de2.php.net/manual/en/reserved.variables.php#reserved.variables.server : 'HTTP_HOST' Contents of the Host: header from the current request, if there is one. http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.23 : A "host" without any trailing port information implies the d...
by Superlexx
Thu Feb 10, 2005 10:09 pm
Forum: Fixed
Topic: bug in stream.php
Replies: 3
Views: 8257

bug in stream.php

Hi, stream.php, line 59-60: instead of if ($_SERVER['SERVER_PORT'] == 80) $port = ''; else $port = ':' . $_SERVER['SERVER_PORT']; it should be something like $port = $_SERVER['SERVER_PORT'] == 80 ? ':80' : ''; because otherwise the port is written twice into the URLs in the playlist. I doubt this $p...
by Superlexx
Thu Feb 10, 2005 9:27 pm
Forum: Implemented
Topic: Unicode support
Replies: 34
Views: 56506

Unicode support

Hello,

is it possible for netjukebox to support multibyte strings (for file name and tags)? Is this a PHP issue?

Thank you