-
10-01-2012, 08:15 AM #1New Member
Achievements:


- Join Date
- Oct 2012
- Location
- england
- Posts
- 7
- Points
- 232
- Level
- 2
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Rep Power
- 0
Vibe and Linux - Unknown everything!
I've spent a fun 4 hours learning more than anyone should really need to know about Id3.
I have set up a library of MP3 files in Rhythmbox under Ubuntu, carefully edited the tags to be tidy, and then used rsync to transfer to mounted player.
This was easy.
All the tracks showed up as Unknown Album and Unknown Artist.
I then spent lots of time finding out that "at least some" Philips players don't support ID3 v2.4, which is what the modern Linux software is writing by default.
Fair enough, with manufacturing leadtimes, that could make sense.
I found a nice piece of software (eyeD3) that has an option to take v2.4 tags and re-write them as v2.3, which was "reputed" to work.
No dice; everything was still "Unknown".
Questions:
* Can someone please tell me, for an SA3VBE08KN (aka GoGear Vibe mk 3), precisely what ID3 format is supported?
* is there a firmware update to improve ID3 support, either current or planned?
* has anybody manage to correctly tag up MP3 data on Linux for this model?
BugBear
-
10-01-2012, 01:38 PM #2New Member
Achievements:


- Join Date
- Oct 2012
- Location
- england
- Posts
- 7
- Points
- 232
- Level
- 2
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Rep Power
- 0
I'm guessing my SA3 is at least as modern w.r.t. ID3 the SA2 models;
http://www.p4c.philips.com/cgi-bin/d...1002&faqview=1
BugBear
-
10-01-2012, 01:40 PM #3New Member
Achievements:


- Join Date
- Oct 2012
- Location
- england
- Posts
- 7
- Points
- 232
- Level
- 2
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Rep Power
- 0
I'm guessing my SA3 is at least as modern w.r.t. ID3 the SA2 models;
http://www.p4c.philips.com/cgi-bin/d...1002&faqview=1
BugBear
-
10-02-2012, 09:05 AM #4New Member
Achievements:


- Join Date
- Oct 2012
- Location
- england
- Posts
- 7
- Points
- 232
- Level
- 2
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Rep Power
- 0
I found this, for the SA2 range:
Answer
It supports both ID3 version 2.3 and ID3 version 2.4 tags.
However, for those ID3 version 2 tags with “unsynchronization scheme” or “UTF8 encoding”, they will not be supported.
No answer yet.
The UTF8 was the killer, as it turns out. Rhythmbox uses UTF8 all the time, and that's fatal.
The following script fixed up my archive, which I then mirror to the file system mounted player via rsync.
#!/usr/bin/perl
use strict;
use warnings;
use File::HomeDir;
my $HOME = File::HomeDir->my_home();
# rewrite id3 tags so that the cruddy Vibe can handle them
my $time_file = "${HOME}/.id3_stamp";
my $src = "${HOME}/Music";
print "rewriting ID3 tags to be v2.3\n";
if(!(-d $src) || !(-w $src)) {
print "$src is not a writable directory?\n";
exit 1;
}
my $n="";
if(-e $time_file) {
$n = "-newer '$time_file'";
}
my $cmd = "eyeD3 --to-v2.3 --set-encoding=latin1 --force-update";
system("find $src $n -name '*.mp3' -exec $cmd {} \\;");
system("touch '$time_file'");
Here's my rsync script:
#!/usr/bin/perl
use strict;
use warnings;
use File::HomeDir;
my $HOME = File::HomeDir->my_home();
# N.B. in rsync trailing slash means "contents of"
my $src = "${HOME}/Music/";
my $dst = "/media/9CC0-B939/Music";
# $dst = "/home/bugbear/FAKE_VIBE/Music"; # TEST
print "syncing music to vibe player over mp3\n";
if(! -e $dst) {
print "$dst does not exist - is Player plugged in?\n";
exit 1;
}
if(!(-d $dst) || !(-w $dst)) {
print "$dst is not a writable directory - is Player OK?\n";
exit 1;
}
my $flags = "--archive --modify-window 2 -v --update --delete";
my $which = "--include '*/' --include '*.mp3' --exclude '*'";
system("rsync $flags $which '$src' '$dst'");
BugBear
Similar Topics
-
SA3VBE04 (GoGear Vibe 4GB) - Philips SongBird Video Covert on Linux
By CarlWalters in forum Sound: GoGear SA3-series (2011)Replies: 6Last Post: 12-03-2012, 08:30 AM -
Battlestar Galactica Blu ray Unknown Error on multiple discs on bdp5100/12
By benkeightley in forum Blu-ray: BDP5000 & 6000 SeriesReplies: 1Last Post: 09-12-2012, 07:54 AM -
Android and Linux
By Manuel in forum TV: OtherReplies: 0Last Post: 05-25-2012, 11:50 AM -
WADM for Linux Red Hat 6
By luisa in forum Sound: Streamium MCi series (MCi900| Mci8080| MCi730| MCi500| MCi298)Replies: 1Last Post: 01-27-2012, 06:46 PM -
BDP9500 unknown disc
By doc_gk in forum Blu-ray: BDP9000 SeriesReplies: 2Last Post: 08-22-2011, 03:54 AM

Reply With Quote

Bookmarks