Unoffical empeg BBS

Quick Links: Empeg FAQ | RioCar.Org | Hijack | BigDisk Builder | jEmplode | emphatic
Repairs: Repairs

Page 1 of 4 1 2 3 4 >
Topic Options
#139901 - 04/02/2003 13:08 Where is the number of plays stored?
skibum
enthusiast

Registered: 27/03/2002
Posts: 248
Loc: Swindon, UK
I was just wondering if the data on the number of plays per track is stored anywhere you can access?

Or is it somwhere in dynamic partition?
_________________________
Andy MK2a 60GB Amber 040103916 32mb/Light Kit MK2a 50GB Amber 030102560 32mb

Top
#139902 - 04/02/2003 13:09 Re: Where is the number of plays stored? [Re: skibum]
tfabris
carpal tunnel

Registered: 20/12/1999
Posts: 31565
Loc: Seattle, WA
It's part of the dynamic data partition.
_________________________
Tony Fabris

Top
#139903 - 04/02/2003 13:28 Re: Where is the number of plays stored? [Re: tfabris]
skibum
enthusiast

Registered: 27/03/2002
Posts: 248
Loc: Swindon, UK
logical place really.

Thanks Tony. Shame that stuff isn't documented.
_________________________
Andy MK2a 60GB Amber 040103916 32mb/Light Kit MK2a 50GB Amber 030102560 32mb

Top
#139904 - 05/02/2003 06:18 Re: Where is the number of plays stored? [Re: skibum]
simspos
enthusiast

Registered: 28/03/2002
Posts: 230
Loc: Dudley, UK
Out of pure interest, what were you thinking of doing with the data? (maybe someone has already done it / is doing it).

Cheers, Sim

Your order number is 73
Order placed at Mon 3 Feb 2003 8:27 am

Top
#139905 - 05/02/2003 07:07 Re: Where is the number of plays stored? [Re: simspos]
skibum
enthusiast

Registered: 27/03/2002
Posts: 248
Loc: Swindon, UK
I've got 2 empegs and use rsync to update them. I was thinking it might be possible to somehow combine the play counter. Silly I know
_________________________
Andy MK2a 60GB Amber 040103916 32mb/Light Kit MK2a 50GB Amber 030102560 32mb

Top
#139906 - 05/02/2003 10:50 Re: Where is the number of plays stored? [Re: skibum]
tfabris
carpal tunnel

Registered: 20/12/1999
Posts: 31565
Loc: Seattle, WA
Silly, maybe, but a complete reverse-engineering of that partition would be helpful for many reasons. There have been posts on this BBS by the Cambridge guys, suggesting that it's a fairly simple format and it shouldn't be all that hard to suss out.
_________________________
Tony Fabris

Top
#139907 - 05/02/2003 10:56 Re: Where is the number of plays stored? [Re: tfabris]
tonyc
carpal tunnel

Registered: 27/06/1999
Posts: 7058
Loc: Pittsburgh, PA
Silly, maybe, but a complete reverse-engineering of that partition would be helpful for many reasons. There have been posts on this BBS by the Cambridge guys, suggesting that it's a fairly simple format and it shouldn't be all that hard to suss out.

Or they could just, *gasp* supply us with the format...

In the past, the justification for not doing so was that it wouldn't be worthwhile to do so since the format changes so much. With that in mind, reverse-engineering it and then writing something which depends on that format wouldn't be any more productive. Why can't they just give us a spec?
_________________________
- Tony C
my empeg stuff

Top
#139908 - 05/02/2003 11:01 Re: Where is the number of plays stored? [Re: tonyc]
Daria
carpal tunnel

Registered: 24/01/2002
Posts: 3937
Loc: Providence, RI
Then they can tell us they didn't tell us the format, and not feel guilty. I'm debating reverse engineering it, but if I do I'm not putting out anything until I can figure out how to tie it to a version or disable itself if it doesn't match.

Top
#139909 - 05/02/2003 11:06 Re: Where is the number of plays stored? [Re: Daria]
oliver
addict

Registered: 02/04/2002
Posts: 691
I think we will probably get the spec when 2.0 is released.
_________________________
Oliver mk1 30gb: 129 | mk2a 30gb: 040104126

Top
#139910 - 05/02/2003 11:56 Re: Where is the number of plays stored? [Re: tonyc]
peter
carpal tunnel

Registered: 13/07/2000
Posts: 4172
Loc: Cambridge, England
In the past, the justification for not doing so was that it wouldn't be worthwhile to do so since the format changes so much.

OK. At this stage of the game it's pretty clear that the format isn't going to change for 2.0. We will change it post-2.0 as it includes two of the hard limits on the total number of songs usable on a car-player.

So you've got /dev/hda3. It's 16 megabytes long, or 32,768 sectors of 512 bytes. Sectors 4,096 to 32,767 inclusive contain the dynamic data, one sector per FID. So the data for, say, FID 0x4230 would be at sector 4,096 + 0x423.

Each sector contains a 2-byte length field, a 2-byte CRC field, and a data structure the prefix of which is described in lib/protocol/dyndata_format.h in an emptool source release. The CRC algorithm, which obviously only applies to the main data structure and not the length and CRC fields, is the "CRC::CRC16" algorithm from lib/protocol/crc.h in an emptool source release. None of this has changed substantially since before v1.00, although the structure length has increased and some fields were never filled in in older releases.

As you'll have spotted, this imposes a maximum of 28,672 files on the player (in fact, sixteen less than that, because the first fid is 0x100 not 0). So at some post-2.0 point, we'll rejig it to store several fids' data per sector, and whatever tools you're going to write with the information in this post will break.

Of course, tools which use lib/protocol to read and write dynamic data, like emptool does, will be insulated from this change.

(The other hard limit I mentioned is on the size of playlist that can be remembered over a shutdown: this information is stored in the first 512 sectors, in a way which changed between v1 and v2.)

Peter

Top
#139911 - 05/02/2003 12:00 Re: Where is the number of plays stored? [Re: peter]
tfabris
carpal tunnel

Registered: 20/12/1999
Posts: 31565
Loc: Seattle, WA
COOOOOOOOOOL.

Someone please put this in the Developer Info section, posthaste.
_________________________
Tony Fabris

Top
#139912 - 05/02/2003 12:19 Re: Where is the number of plays stored? [Re: tfabris]
tonyc
carpal tunnel

Registered: 27/06/1999
Posts: 7058
Loc: Pittsburgh, PA
_________________________
- Tony C
my empeg stuff

Top
#139913 - 05/02/2003 12:22 Re: Where is the number of plays stored? [Re: tonyc]
tfabris
carpal tunnel

Registered: 20/12/1999
Posts: 31565
Loc: Seattle, WA
Cool. So... No mention was made of how the tuner presets are stored. Is that something that can be gleaned from the emptool sources? Or is our assumption that they're stored on the dynamic data partition incorrect? While we're at it, aren't the EQ presets stored there, too?
_________________________
Tony Fabris

Top
#139914 - 05/02/2003 12:22 Re: Where is the number of plays stored? [Re: peter]
skibum
enthusiast

Registered: 27/03/2002
Posts: 248
Loc: Swindon, UK
Peter,

Thanks for the info. Now for the fun :-)
In reply to:

As you'll have spotted, this imposes a maximum of 28,672 files on the player (in fact, sixteen less than that, because the first fid is 0x100 not 0). So at some post-2.0 point, we'll rejig it to store several fids' data per sector, and whatever tools you're going to write with the information in this post will break.



I guess Paul is worried about this limit

If you have 2 drives, does it double the number of tracks or does it only use hda3?
_________________________
Andy MK2a 60GB Amber 040103916 32mb/Light Kit MK2a 50GB Amber 030102560 32mb

Top
#139915 - 05/02/2003 12:23 Re: Where is the number of plays stored? [Re: skibum]
tfabris
carpal tunnel

Registered: 20/12/1999
Posts: 31565
Loc: Seattle, WA
If you have 2 drives, does it double the number of tracks or does it only use hda3?

I think only the first drive is used to store dynamic data.
_________________________
Tony Fabris

Top
#139916 - 05/02/2003 12:44 Re: Where is the number of plays stored? [Re: tfabris]
tonyc
carpal tunnel

Registered: 27/06/1999
Posts: 7058
Loc: Pittsburgh, PA
lib/protocol/dyndata_format.h doesn't mention tuner or EQ stuff, both of which are supposedly on the dyndata partition.
_________________________
- Tony C
my empeg stuff

Top
#139917 - 05/02/2003 12:57 Re: Where is the number of plays stored? [Re: tonyc]
pgrzelak
carpal tunnel

Registered: 15/08/2000
Posts: 4859
Loc: New Jersey, USA
OW!!! It is not nice to put hard limits on things!!!

I still have some headroom, though. At latest figuring, I have 20,301 unique files on the player, including playlists. (4f4d0&1)
_________________________
Paul Grzelak
200GB with 48MB RAM, Illuminated Buttons and Digital Outputs

Top
#139918 - 05/02/2003 13:01 Re: Where is the number of plays stored? [Re: pgrzelak]
tfabris
carpal tunnel

Registered: 20/12/1999
Posts: 31565
Loc: Seattle, WA
Well, it's good to know one thing:

They can keep close tabs on how well their software works at the edge of the envelope, just by using Paul as their guide.
_________________________
Tony Fabris

Top
#139919 - 05/02/2003 13:08 Re: Where is the number of plays stored? [Re: tfabris]
pgrzelak
carpal tunnel

Registered: 15/08/2000
Posts: 4859
Loc: New Jersey, USA
It will take a little while to get out there, though. It took me this long to get to that 20,000 mark. They might be on 3.0 by the time I get close to the edge.
_________________________
Paul Grzelak
200GB with 48MB RAM, Illuminated Buttons and Digital Outputs

Top
#139920 - 05/02/2003 13:12 Re: Where is the number of plays stored? [Re: tonyc]
peter
carpal tunnel

Registered: 13/07/2000
Posts: 4172
Loc: Cambridge, England
bing!

I'd prefer to see a big bold warning at the top of that entry, saying that while the information applies to all software versions between 1.00 and 2.00 inclusive, it will become incorrect after that (I realise that the text says that further in as well).

Another thing to bear in mind, is that none of the player software was written in the expectation that third-parties would be writing to that partition, and so if anyone does feel like writing a tool that accesses it directly and not via lib/protocol, they should keep a clean backup of the whole partition somewhere ready to dd it back again if their changes make the player crash.

People wishing to back up their EQ and tuner settings should back up the 32 sectors starting at sector 2,048. The format of these blocks has changed several times since 1.0.

While we're on, the other entry on that riocar.org page is slightly misinformed: the swap partition can't be used for anything other than a swap partition, or synchronising will fail.

Peter

Top
#139921 - 05/02/2003 13:27 Re: Where is the number of plays stored? [Re: peter]
tfabris
carpal tunnel

Registered: 20/12/1999
Posts: 31565
Loc: Seattle, WA
People wishing to back up their EQ and tuner settings should back up the 32 sectors starting at sector 2,048. The format of these blocks has changed several times since 1.0.

What about since 2.0 Beta 13? We've been talking about using the GPS to reprogram one of the banks of tuner presets. Any chance that format will change between 2.0b13 and Final?
_________________________
Tony Fabris

Top
#139922 - 05/02/2003 13:27 Re: Where is the number of plays stored? [Re: pgrzelak]
skibum
enthusiast

Registered: 27/03/2002
Posts: 248
Loc: Swindon, UK
Well if they put 8 fids in each sector and start using both drives partition 3 you would be ok for a while as the max would be 458,752

I would have thought that they could multiple (8) fids per seconds with just a couple of lines of change in the code.
_________________________
Andy MK2a 60GB Amber 040103916 32mb/Light Kit MK2a 50GB Amber 030102560 32mb

Top
#139923 - 05/02/2003 13:28 Re: Where is the number of plays stored? [Re: peter]
tonyc
carpal tunnel

Registered: 27/06/1999
Posts: 7058
Loc: Pittsburgh, PA
I'm going ahead and updating the entry with the disclaimers and such. I hope that when changes are made in the post-2.0 releases, we'll be able to get an update on how the format has changed.
_________________________
- Tony C
my empeg stuff

Top
#139924 - 05/02/2003 13:41 Re: Where is the number of plays stored? [Re: tonyc]
mlord
carpal tunnel

Registered: 29/08/2000
Posts: 14478
Loc: Canada
Note that anybody who wants a remote PC/workstation tool for reading (or re-writing) the dynamic data partition can start out by simply using Hijack kftpd/khttpd to GET/PUT /dev/hda3 (16MB file).

For software on the player that doesn't use the Empeg libs, just open "/dev/hda3"), and lseek() to the byte offset for the sector you want to read.

Cheers

Top
#139925 - 05/02/2003 13:47 Re: Where is the number of plays stored? [Re: peter]
skibum
enthusiast

Registered: 27/03/2002
Posts: 248
Loc: Swindon, UK
Is the skipped_count updated?

I selected 1 album and put it on repeat. After it playing a few tracks I started again skipped all the tracks (including the 1 I was watching multiple times)

Here's the data :-
  

0000000 003c 32f7 0000 0000 0000 0007 75bb 3e41
0000020 472f 1df4 0000 0000 55a9 1555 ffff aa9a
0000040 a956 aaaa aaff fabf aaab fffe aa96 aaaa
0000060 fff9 bfff 0000 0000 306b 0000 03b6 0000
0000100 0000 0000 0000 0000 0000 0000 0000 0000

_________________________
Andy MK2a 60GB Amber 040103916 32mb/Light Kit MK2a 50GB Amber 030102560 32mb

Top
#139926 - 05/02/2003 14:06 Re: Where is the number of plays stored? [Re: skibum]
tfabris
carpal tunnel

Registered: 20/12/1999
Posts: 31565
Loc: Seattle, WA
Is the skipped_count updated?

No.
_________________________
Tony Fabris

Top
#139927 - 05/02/2003 19:36 Re: Where is the number of plays stored? [Re: tonyc]
Daria
carpal tunnel

Registered: 24/01/2002
Posts: 3937
Loc: Providence, RI
lib/protocol/dyndata_format.h doesn't mention tuner or EQ stuff, both of which are supposedly on the dyndata partition.

Working on it...

Top
#139928 - 05/02/2003 20:04 Re: Where is the number of plays stored? [Re: Daria]
Daria
carpal tunnel

Registered: 24/01/2002
Posts: 3937
Loc: Providence, RI
Bleah, I need to go put the empeg in the dash so it has a tuner in order to do that part usefully. I'll look at the eq stuff now.

Top
#139929 - 05/02/2003 21:29 Re: Where is the number of plays stored? [Re: peter]
Daria
carpal tunnel

Registered: 24/01/2002
Posts: 3937
Loc: Providence, RI
Sector 2048 has the eq stuff in it. I'm still playing, but it looks like the left channel starts at byte 229 and the right channel at byte 269, (each of the EQ bands using 4 bytes) and the left and right use up through bytes 268 and 308.

Makes sense since there are 10 bands, I haven't yet figured out the encoding or the significance of bytes 178 and 188 (which are 0 until the EQ is modified, and which probably represent some sort of bitmask of which bands are active (left and right respectively) or of bytes 5 and 6 (but it's going to be size or checksum)

Top
#139930 - 05/02/2003 21:41 Re: Where is the number of plays stored? [Re: Daria]
Daria
carpal tunnel

Registered: 24/01/2002
Posts: 3937
Loc: Providence, RI
Actually I think I mischaracterized that slightly. Stay tuned.

Top
Page 1 of 4 1 2 3 4 >