![]() |
2007-10-15
, 18:06
|
Posts: 191 |
Thanked: 10 times |
Joined on Feb 2006
|
#11
|
![]() |
2007-10-15
, 19:02
|
Posts: 450 |
Thanked: 16 times |
Joined on Mar 2006
|
#12
|
![]() |
2007-10-15
, 19:21
|
Posts: 450 |
Thanked: 16 times |
Joined on Mar 2006
|
#13
|
![]() |
2007-10-15
, 21:18
|
Posts: 191 |
Thanked: 10 times |
Joined on Feb 2006
|
#14
|
![]() |
2007-10-15
, 21:24
|
Posts: 75 |
Thanked: 5 times |
Joined on Aug 2007
|
#15
|
![]() |
2007-10-16
, 00:43
|
Posts: 450 |
Thanked: 16 times |
Joined on Mar 2006
|
#16
|
Got to the root of the problem. Looking at the sample playlist file, I saw that your playlists are saved in utf-8 encoding. I'm guessing the m3u-reader part of Kagu doesn't understand that. We'll fix that in the next release. That's the reason for the playlist files not being read correctly.
But how did the playlist files got utf8 encoding in the first place? I'm guessing it's something Python automagically does when needed, as one of the files in the sample playlist had a "ö" in it.
Anyway. I'm attaching a utf8-to-ascii format converter I just hacked up in Python to this message.
1. Save it as utf2ascii.py in the main filesystem (main filesystem = not in one of the mmc's) of the device, preferably in where you keep your playlist files. I had attach it as "utf2ascii.txt" because of ITT's attachment filename regulations.
2. Run "chmod +x utf2ascii.py" to make it executable (you'll need to be in the same directory)
3. Run "./utf2ascii.py < playlist_filename > playlist_new_filename" for each playlist.
Example would be:
./utf2ascii.py < playlist.m3u.pop_songs > playlist.m3u.pop_songs_fixed
The command on the third step will read the file "playlist_filename" file, and write the contents to the file "playlist_new_filename". During this process some playlist entries (the ones with non-latin1 characters like "ö" in it) will be skipped.
If you add those files to the playlist again, the playlist file will be broken once again. Best way to avoid it is to go over your mp3 files and rename all non-latin1 characters in the filenames. Don't forget to run kagu scanner afterwards. We'll fix this issue in the next Kagu release.
![]() |
2007-10-16
, 00:50
|
Posts: 330 |
Thanked: 57 times |
Joined on May 2007
@ BKNYC
|
#17
|
![]() |
2007-10-16
, 01:32
|
Posts: 191 |
Thanked: 10 times |
Joined on Feb 2006
|
#18
|
![]() |
2007-10-16
, 03:13
|
Posts: 450 |
Thanked: 16 times |
Joined on Mar 2006
|
#19
|
![]() |
2007-10-16
, 05:43
|
Posts: 450 |
Thanked: 16 times |
Joined on Mar 2006
|
#20
|