Rockbox.org home
Downloads
Release release
Dev builds dev builds
Extras extras
themes themes
Documentation
Manual manual
Wiki wiki
Device Status device status
Support
Forums forums
Mailing lists mailing lists
IRC IRC
Development
Bugs bugs
Patches patches
Dev Guide dev guide
Search



Donate

Rockbox Technical Forums


Login with username, password and session length
Home Help Search Staff List Login Register
News:

Welcome to the Rockbox Technical Forums!

+  Rockbox Technical Forums
|-+  Rockbox General
| |-+  Rockbox General Discussion
| | |-+  Sansa / Playcount / Ratings / Mediamonkey???
« previous next »
  • Print
Pages: [1] 2

Author Topic: Sansa / Playcount / Ratings / Mediamonkey???  (Read 4778 times)

Offline sun

  • Member
  • *
  • Posts: 2
Sansa / Playcount / Ratings / Mediamonkey???
« on: September 05, 2007, 09:52:46 AM »
Hi there!

I´m new to Rockbox and think this project is just fantastic...

So I´m thinking about switching from my Trekstor Vibez to a Sansa with Rockbox.

Newbie question:
Once that USB-Connection works on the Sansa will I be able to sync my playcounts/ratings back to the PC?
I assume that Rockbox has the same functionality on different devices, so I think if someone with a different player i.e. Iaudio, Ipod can do this now I will be able to do this for sure in the near future with the Sansa?!

Thanks a lot for your help!!!  :D
Logged

Offline GodEater

  • Member
  • *
  • Posts: 2829
Re: Sansa / Playcount / Ratings / Mediamonkey???
« Reply #1 on: September 05, 2007, 09:54:46 AM »
Someone would have to write a PC side application in order to sync that information.

The database on the player that Rockbox maintains has that information in it - but I know of no PC applications which know how to import it.
Logged

Read The Manual Please

Offline sun

  • Member
  • *
  • Posts: 2
Re: Sansa / Playcount / Ratings / Mediamonkey???
« Reply #2 on: September 05, 2007, 03:49:53 PM »
Really?

If this is the case I don´t understand it.
I mean, what if the device is broken/stolen or you switch to another device: Then all your playcounts and ratings are gone forever?

And if I hear 50% music on the PC and 50% on the portable device, there HAS to be the need and a way to synchronize the data...

Is there really no application that can read out and process the Rockbox DB?

Anyone?  ???

Logged

Offline Llorean

  • Member
  • *
  • Posts: 12931
Re: Sansa / Playcount / Ratings / Mediamonkey???
« Reply #3 on: September 05, 2007, 04:53:38 PM »
As was said, contact the application writers. Rockbox is a firmware project, go post a feature request to Seamonkey to add support for the Rockbox database, for example.
Logged

Offline elborak

  • Member
  • *
  • Posts: 177
Re: Sansa / Playcount / Ratings / Mediamonkey???
« Reply #4 on: September 05, 2007, 09:33:54 PM »
It sounds like all you really want is to be able to backup your data files to your PC. If so, there are literally dozens of applications available to do directory/file backups.
Logged

Offline GodEater

  • Member
  • *
  • Posts: 2829
Re: Sansa / Playcount / Ratings / Mediamonkey???
« Reply #5 on: September 06, 2007, 02:16:04 AM »
Not really - he wants the metadata that goes with his file - and that's only stored in the rockbox database.

Sure - he could back the files up which contain the database - but it's not much good to him on his PC for keeping track of what he's listened to unless he has an application which understands the file format.
Logged

Read The Manual Please

Offline elborak

  • Member
  • *
  • Posts: 177
Re: Sansa / Playcount / Ratings / Mediamonkey???
« Reply #6 on: September 06, 2007, 03:37:17 AM »
Agreed, but he was talking about switching to another device. In that case a raw backup of the database files is sufficient.
Logged

Offline GodEater

  • Member
  • *
  • Posts: 2829
Re: Sansa / Playcount / Ratings / Mediamonkey???
« Reply #7 on: September 06, 2007, 03:52:59 AM »
Quote
And if I hear 50% music on the PC and 50% on the portable device, there HAS to be the need and a way to synchronize the data...

But he also wants to sync his playcounts and rating between his device and his PC. So simply backing up will gain him nothing in that direction.
Logged

Read The Manual Please

Offline polygonal

  • Member
  • *
  • Posts: 64
Re: Sansa / Playcount / Ratings / Mediamonkey???
« Reply #8 on: September 06, 2007, 09:21:54 AM »
You can probably achieve this by using a decent tagging software that can import text file to tag. From all the tagging softwares I know (which is not much, by the way ;-), MP3TAG can do it. You can export the database changelog and then have the data there write into your file. And for the rockbox side, there is a patch out there that read the rating tag and display that instead of the database rating.

It's rather cumbersome, but at least it is one way to do what you want instead of begging someone to understand how rockbox tagcache works and write a program for that.
Logged

Offline dcr693

  • Member
  • *
  • Posts: 36
Re: Sansa / Playcount / Ratings / Mediamonkey???
« Reply #9 on: September 25, 2007, 12:43:06 PM »
sun, this probably won't help you out, but I thought I'd mention my own system for working with playcounts. I've never attempted to deal with ratings and my system wouldn't work with it anyway.

I use MediaMonkey 2.x which stores data in an mdb file. The file type is used by MS Access as well as VB. I use Rockbox with the LastFM log feature to log when songs are played. I then take the scrobbler.log file (it's in txt format) and import it into Access. At that point, it's really easy to use an update query to update playcounts.

Other than the fact that this does not do anything for ratings, you probably won't want to use this system. First, MediaMonkey 3 beta 2 is out and it uses a different db format, based on mySQL. I searched (but not too hard) for an easy to use front end to it, but couldn't find one. Two, to easily use this method, you'd need MS Access though you could use VB for it also.
Logged

Offline GodEater

  • Member
  • *
  • Posts: 2829
Re: Sansa / Playcount / Ratings / Mediamonkey???
« Reply #10 on: September 25, 2007, 01:15:50 PM »
You could still use Access as the front end to a MySQL database, you just connect your .mdb file to it over ODBC. It's pretty trivial.
Logged

Read The Manual Please

Offline dcr693

  • Member
  • *
  • Posts: 36
Re: Sansa / Playcount / Ratings / Mediamonkey???
« Reply #11 on: September 26, 2007, 11:37:26 AM »
Quote from: GodEater on September 25, 2007, 01:15:50 PM
You could still use Access as the front end to a MySQL database, you just connect your .mdb file to it over ODBC. It's pretty trivial.
Cool. Yeah, I did a Google and found these ODBC downloads for mySQL: http://dev.mysql.com/downloads/connector/odbc/3.51.html. I didn't look too hard at first because I planned to keep using version 2.x as long as possible because I finally have my system working the way I want. Good to know it's out there though.
Logged

Offline Hulo

  • Member
  • *
  • Posts: 1
Re: Sansa / Playcount / Ratings / Mediamonkey???
« Reply #12 on: October 06, 2007, 03:41:42 PM »
Quote from: GodEater on September 05, 2007, 09:54:46 AM
Someone would have to write a PC side application in order to sync that information.


And this application exists already.
SansaMonkey
Logged

Offline onkel_enno

  • Member
  • *
  • Posts: 21
Re: Sansa / Playcount / Ratings / Mediamonkey???
« Reply #13 on: October 08, 2007, 07:24:16 AM »
Thanks Hulo, for the link to the application  ;)

If there are still feature requests for SansaMonkey, let me know, over in the MediaMonkey Thread.

BTW @GodEater + dcr693
What do you want with MySQL? Because of MediaMonkey 3? MM3 uses SQLite und it's not easy to access it like it was with MM2  :(
Logged

Offline GodEater

  • Member
  • *
  • Posts: 2829
Re: Sansa / Playcount / Ratings / Mediamonkey???
« Reply #14 on: October 08, 2007, 07:46:20 AM »
If there are ODBC drivers for SQLLite you should still be able to use MS Access as the front end.
Logged

Read The Manual Please

  • Print
Pages: [1] 2
« previous next »
+  Rockbox Technical Forums
|-+  Rockbox General
| |-+  Rockbox General Discussion
| | |-+  Sansa / Playcount / Ratings / Mediamonkey???
 

  • SMF 2.0.17 | SMF © 2019, Simple Machines
  • Rockbox Privacy Policy
  • XHTML
  • RSS
  • WAP2

Page created in 0.117 seconds with 14 queries.