INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]  (Read 18197 times)

prod

  • Citizen of the Universe
  • *****
  • Posts: 958
  • Play nice
SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« on: March 03, 2010, 11:59:02 am »

SqlMyTunes for MC is an application which exports your MC media library to a chosen SQL server and allows you to write SELECT statements in SQL that create playlists and smartlists, as well as perform updates on your MC library. If you have more than one MC library, all can be exported, and subsequently utilized. That is, you are able to create playlists and smartlists or perform updates based on entries in other libraries, if you wish to.

Currently, SqlMyTunes supports Microsoft SQL Server and SQL Express.

Microsoft SQL Express is free and can be downloaded from here.

Screenshots:





Download
Logged

morrison

  • Galactic Citizen
  • ****
  • Posts: 335
Re: SqlMyTunes for MC v1.0
« Reply #1 on: March 04, 2010, 03:40:14 am »

Very interesting startup, I will try it

My main sync task - sync ratings and playstats from my car DB to main home DB. MC can't do this (.
I do it not very often - "removable media" in the car is 2,5 "500GB, frequent synchronization is not required. Statistics now I do not synchronize, and manually compare the ratings (

If you plan to do more examples, you maybe consider this too)
Logged

prod

  • Citizen of the Universe
  • *****
  • Posts: 958
  • Play nice
Re: SqlMyTunes for MC v1.0
« Reply #2 on: March 04, 2010, 05:45:05 am »

Cheers, hope you like it.

Off the top of my head, if HOME is your home database and CAR is your car database;

Copy all the HOME ratings to CAR;

Code: [Select]
CREATE PROCEDURE UpdateCarRatings
@libraryName VARCHAR(255)
AS
SELECT cf.[FileKey], hf.[Rating]
FROM HOME.dbo.[Files] hf
JOIN CAR.dbo.[Files] cf ON cf.[Filename] LIKE hf.[Filename]
WHERE cf.[Rating] != hf.[Rating]

If you also rate tracks in your car database and want a "proper" to-and-fro sync rather than straight copy then it would be a little more complicated, but this gives you a taste.

Update latest play stats;

Code: [Select]
CREATE PROCEDURE UpdateLastPlayed
@libraryName VARCHAR(255)
AS
IF @libraryName = 'My Car MC library'
BEGIN
    SELECT cf.FileKey, hf.[Last Played]
    FROM HOME.dbo.[Files] hf
    JOIN CAR.dbo.[Files] cf ON cf.[Filename] LIKE hf.[Filename]
    WHERE hf.[Last Played] > cf.[Last Played]
END
ELSE IF @libraryName = 'My Home MC library'
BEGIN
    SELECT hf.FileKey, cf.[Last Played]
    FROM CAR.dbo.[Files] cf
    JOIN HOME.dbo.[Files] hf ON hf.[Filename] LIKE cf.[Filename]
    WHERE cf.[Last Played] > hf.[Last Played]
END

The first example would be entered as an Updates to library action in your car library settings, the other in both your car and home settings. I'm using the filename to link the files in each database together.

Let me know if you want me to expand on those examples.
Logged

morrison

  • Galactic Citizen
  • ****
  • Posts: 335
Re: SqlMyTunes for MC v1.0
« Reply #3 on: March 04, 2010, 07:13:14 am »

Thank you very much for the detailed explanation prod. I will learn )
Logged

Quixote

  • Regular Member
  • World Citizen
  • ***
  • Posts: 158
  • Change this by choosing profile
Re: SqlMyTunes for MC v1.0
« Reply #4 on: March 04, 2010, 11:55:04 am »

Wow, this whole thing looks very promising!
Logged

prod

  • Citizen of the Universe
  • *****
  • Posts: 958
  • Play nice
Re: SqlMyTunes for MC v1.0
« Reply #5 on: March 06, 2010, 02:43:51 am »

Thanks Quixote let me know how you get on.

If anyone wants some help putting together an SQL script I'm happy to lend a hand.
Logged

prod

  • Citizen of the Universe
  • *****
  • Posts: 958
  • Play nice
Re: SqlMyTunes for MC v1.1
« Reply #6 on: March 11, 2010, 07:19:58 am »

SqlMyTunes for MC v1.1

  • Added: Support for custom DPI settings - i.e. sizeable windows and scrollbars. Window sizes are remembered for next time.
Logged

prod

  • Citizen of the Universe
  • *****
  • Posts: 958
  • Play nice
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2]
« Reply #7 on: March 14, 2010, 05:53:35 am »

SqlMyTunes for MC v1.2

  • Improved: Made some important improvements to the user interface.
Logged

prod

  • Citizen of the Universe
  • *****
  • Posts: 958
  • Play nice
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #8 on: March 17, 2010, 06:05:58 pm »

SqlMyTunes for MC v1.2.5

  • Added: "Check for updates" checkbox to settings. If checked, will check for updates to the software once every week.
Logged

idhToronto

  • Junior Woodchuck
  • **
  • Posts: 62
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #9 on: June 25, 2010, 10:05:08 am »

Hi

The documentation for this SqlMyTunes for MC does not state if it works with MC15 - would someone be able to confirm if it does or not?

Also, I presume that since this exports a library to a SQL database we can the produce reports using a report writer - is that correct?

Thanks

Ian
Logged

prod

  • Citizen of the Universe
  • *****
  • Posts: 958
  • Play nice
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #10 on: June 25, 2010, 05:13:48 pm »

Hi Ian

Yes SqlMyTunes works with MC15, and yes the resulting SQL database can be manipulated however you like - including producing reports with a report writer.
Logged

Lasse_Lus

  • Citizen of the Universe
  • *****
  • Posts: 999
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #11 on: May 17, 2011, 09:12:41 am »

Prod, i can't get SQLmyTunes to cowork with MC 16, any suggestions ?  :)
Logged
MT5FR

prod

  • Citizen of the Universe
  • *****
  • Posts: 958
  • Play nice
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #12 on: May 18, 2011, 03:49:36 pm »

Should work fine with MC16. It might be the old upgrading issue - if you've installed MC16 then uninstalled MC15 (in that order) then that can deregister MC from the COM registry.

Fix is simply rerun the MC16 setup exe. If that doesn't work let me know some details of the problem.
Logged

Lasse_Lus

  • Citizen of the Universe
  • *****
  • Posts: 999
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #13 on: May 19, 2011, 05:22:03 am »

Prod, i've tested now on a "fresh" machine with only MC installed never been "touched" by sqlmytunes
version 12,13,14,15 is working like a charm
version 16 says An Error occured communicating with MC. Try loading MC manually first.

i also reset the settings file, tried with a fresh deafault library, running as a admin, reinstalled MC --> no difference

something is different with the lastest MC version

regards L
Logged
MT5FR

prod

  • Citizen of the Universe
  • *****
  • Posts: 958
  • Play nice
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #14 on: May 20, 2011, 01:21:52 am »

OK thanks I'll have a good look over the weekend.
Logged

prod

  • Citizen of the Universe
  • *****
  • Posts: 958
  • Play nice
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #15 on: May 20, 2011, 01:28:40 am »

By the way, did you try what I suggested and rerun your MC16 setup exe? It sounds awfully like MC has been deregistered.
Logged

Lasse_Lus

  • Citizen of the Universe
  • *****
  • Posts: 999
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #16 on: May 20, 2011, 03:42:34 am »

understand prod, i did reinstall..i also went for a third machine with only MC 16 installed, same problem..sorry  :-[ thanks for your concern  :)
Logged
MT5FR

prod

  • Citizen of the Universe
  • *****
  • Posts: 958
  • Play nice
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #17 on: May 22, 2011, 01:42:45 pm »

Lasse_Lus

Sorry for doubting you, you're absolutely right, there is a problem with MC16. The way library information is stored in MC16 is different to previous versions, and so SqlMyTunes is unable to find the MC16 library or libraries. I'm not sure when this change was made.

I'll put a fix together hopefully in the next week.
Logged

Lasse_Lus

  • Citizen of the Universe
  • *****
  • Posts: 999
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #18 on: May 22, 2011, 04:42:02 pm »

thanks mate  :)
Logged
MT5FR

prod

  • Citizen of the Universe
  • *****
  • Posts: 958
  • Play nice
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #19 on: June 05, 2011, 08:07:56 am »

OK I've fixed this MC16-specific library problem in v1.2.6:

http://misterpete.co.uk/files/smtmcv126.zip

I've tested it and it works fine with all MC versions from 12.

Please note this is in beta, I'll make a formal release to the website next week.

Cheers!
Logged

Lasse_Lus

  • Citizen of the Universe
  • *****
  • Posts: 999
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #20 on: June 08, 2011, 02:37:41 am »

 :), seems to work again...thanks prod
Logged
MT5FR

drc

  • World Citizen
  • ***
  • Posts: 115
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #21 on: June 12, 2011, 01:13:07 pm »

I've reviewed the program, but can't get it to sync.  Right off, I know the problem starts with me.  Never really got into SQL, but now I really want to try it.

I've downloaded the MS SQL 2008 R@, it's installed as best I can tell...

From what I've able to summize The SQL Tunes is a GUI for interfacing with MC-15/16.

However, when I test the SQL, it says It can't find it. failed connection.   

Is there a user guide for beginners which shows how to install and map to database.  Looking at your example, I think my problem is that I don't see how to browse to the database I created.

Any help

Thanks
Logged

prod

  • Citizen of the Universe
  • *****
  • Posts: 958
  • Play nice
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #22 on: June 24, 2011, 02:52:33 pm »

Hi drc

Sorry it's taken so long to reply.

There are so many reasons why you might have a failed connection. Usernames, passwords, firewalls, non-existent databases

You should probably test it in the following way;

1. Have everything on the same machine
2. Create a database in SQL
3. Run SqlMyTunes and test the connection.
Logged

broncodan

  • World Citizen
  • ***
  • Posts: 212
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #23 on: September 21, 2012, 05:48:44 pm »

Hi Prod,

I was looking at this program and it looks like it will do what I want it to do:  create a smartlist/playlist for artists that have x number of songs with a rating.  But I am not sure how to use this.  I have got it so it connects to the SQL server and I can get it to sync successfully without changing any of the options (I did check export all library entries and selected the fields that I thought were needed - album, artist, name, track number, rating, etc).  I don't have any playlists selected and didn't change any of the settings.

You have the following 'procedure' on your website:

Auto-manage Rated Artist Smartlists

But I do not know where to cut and paste that information to get this to create the smartlists?

Thanks in advance for your help.
Logged

prod

  • Citizen of the Universe
  • *****
  • Posts: 958
  • Play nice
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #24 on: September 23, 2012, 03:01:57 am »

Hi broncodan

The example query can be pasted into a SQL Management Studio query window.

1. Load up SQL Management Studio
2. Select "New Query"
3. You should now select the SQL database that contains your MC library info. You can use the drop down in the toolbar or type USE database_name and press F5.
4. Paste in the query into the query window and execute it by pressing F5 or clicking the execute button.

That will create a stored procedure in your database that can be executed by SqlMyTunes. You can now add the name of it to the Playlists section in SqlMyTunes.

Hope this helps.
Logged

broncodan

  • World Citizen
  • ***
  • Posts: 212
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #25 on: September 23, 2012, 07:37:09 pm »

Hi Prod,

Thanks for your suggestions.  It is getting me closer....   I don't know a thing about SQL but I think I managed to get the query in sql managment studio correctly (as it says there is already one in the database) but I am not sure how to save it?

I am also getting the following error message from SQLmytunes:

<Result EndDateTime="2012-09-23T16:59:22">Could not find stored procedure 'RatedArtistSmartlists'.</Result>

I have attached 2 screen shots.  If I can get this working I will gladly buy the program as I really want to be able to generate these smartlists automatically.

Thanks again for your help.
Logged

broncodan

  • World Citizen
  • ***
  • Posts: 212
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #26 on: September 24, 2012, 05:33:49 pm »

Well after playing around a bit I finally got it to work.  Really cool.

I modified your template by changing the rating and number of tracks per artist, add some MC smartlist expressions - to remove duplicates and eliminate Christmas as a genre and it works great.  Not sure how to change the playlist path of RATED as this is noted in a couple of places but easy enough to rename the folder in MC.  

I imagine there are a lot of other awesome playlists you could come up with I would be interested to see if there are any other suggestions out there or to see what other people have used your program for.

I have a question - can you import a playlist and then reference that in the creation of the lists?  The reason I ask is that I have a series of smartlists that end up with a single playlist that has eliminated all duplicate songs, excluded genre's, etc from my library and it would be great to reference the songs in that list and then use that to run the query off of?  Right now I used the sort function to try to get the playlist to select the better versions (based off date) but it doesn't always work well.

As an FYI I had to use the beta version posted in this thread to get it to work with MC17.  Not sure if you want to update your website.  Off to pay for this....Hopefully my key will work with the version I am using.

Logged

broncodan

  • World Citizen
  • ***
  • Posts: 212
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #27 on: October 29, 2013, 11:42:54 pm »

Hi Prod,

I was hoping you could help me with an SQL question.  I have used your program to generate playlists for individual years, genres, rated artists, etc - but I was wondering what I would need to enter to get the playlists to be created in groups of 10 or something based off a range (e.g. - create smartlists based of BPM values - so I would get a smartlist for each block of 20 - BPM 0 - 20; 21 - 40; 41 - 60; or for decades - so I would get a smartlist for files that had year - 1960 - 1969; 1970 - 1979; 1980 - 1989; etc)

CREATE PROCEDURE [dbo].[BPMsmartlists]
@libraryName NVARCHAR(255) = NULL
AS

SELECT [BPM]
INTO #t
FROM [Files]
WHERE [Rating] >= 1
AND [Media Type] = 'Audio'
GROUP BY [BPM]..............................................................................H ow do I get the range here?
HAVING COUNT(*) > 5

SELECT DISTINCT 'BPM' [PlaylistPath],
      [BPM] [PlaylistName],
      '[BPM]=[' + [BPM] + '] [Rating]=>=1  ~nodup=[Artist],[Name] ~sort=Random' [Expression],
      'BPM: ' + [BPM] + CHAR(13) + CHAR(10) + 'Rating: 1 Stars' + CHAR(13) + CHAR(10) + 'Sort: Random' [Notes]
INTO #t2
FROM [Files]
WHERE [BPM] IN (SELECT [BPM] FROM #t)

SELECT * FROM #t2

SELECT [Path] [PlaylistPath], [Name] [PlaylistName], CAST(1 AS BIT) [Delete]
FROM [Playlists] p1
WHERE [Path] LIKE 'BPM'
AND NOT EXISTS
   (
      SELECT *
      FROM #t2 p2
      WHERE p1.[Path] = p2.[PlaylistPath]
      AND p1.[Name] = p2.[PlaylistName]
   )

DROP TABLE #t
DROP TABLE #t2


Any help or suggestions would be good (as any fyi - I actually haven't tried the above yet - I just copied one of your recipes and changed from Artist to BPM.

Thanks.
Logged

prod

  • Citizen of the Universe
  • *****
  • Posts: 958
  • Play nice
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #28 on: November 02, 2013, 04:27:40 pm »

Hi Dan

You'd use a CASE statement here, so briefly -

SELECT
  CASE
  WHEN [BPM] >= 10 AND [BPM] < 20 THEN '10-19'
  WHEN [BPM] >= 20 AND [BPM] < 30 THEN '20-29'
  END [BPMRange]
FROM etc etc
GROUP BY
  CASE
  WHEN [BPM] >= 10 AND [BPM] < 20 THEN '10-19'
  WHEN [BPM] >= 20 AND [BPM] < 30 THEN '20-29'
  END

or something like that... note you can't GROUP BY calculated columns, that's why there's duplication.

Hope that at least points you in the right direction!
Logged

milehigh

  • Regular Member
  • World Citizen
  • ***
  • Posts: 109
  • nothing more to say...
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #29 on: April 16, 2015, 08:11:37 pm »

Hi,

I use this for MC and import the playlists to iTunes using your mc itunessync program.  I know you have this for iTunes also and I thought I would go and get it and just generate the playlists directly in iTunes to make it faster - when I go to your old website - misterpete.co.uk it redirects me to the mcitunessync thread....  is this still available for iTunes?
Logged

prod

  • Citizen of the Universe
  • *****
  • Posts: 958
  • Play nice
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #30 on: April 20, 2015, 01:42:31 pm »

Hi,

I use this for MC and import the playlists to iTunes using your mc itunessync program.  I know you have this for iTunes also and I thought I would go and get it and just generate the playlists directly in iTunes to make it faster - when I go to your old website - misterpete.co.uk it redirects me to the mcitunessync thread....  is this still available for iTunes?

Hi,

I took down the site recently as I switched cloud storage provider and haven't got round to putting it back up.

But yes the iTunes version is here. It's a little different to the MC version but there are instructions in the zip file.

Cheers.
Logged

milehigh

  • Regular Member
  • World Citizen
  • ***
  • Posts: 109
  • nothing more to say...
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #31 on: April 25, 2015, 12:09:54 pm »

Thank you.
Logged

milehigh

  • Regular Member
  • World Citizen
  • ***
  • Posts: 109
  • nothing more to say...
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #32 on: May 03, 2015, 04:10:25 pm »

Hi Prod,

You use to have some examples for itunes playlists for sql my tunes - are those examples still available somewhere?  I am looking to create a few different types of playlists (all songs rated by an artist being one of them).

Thanks again.

Logged

danrien

  • Galactic Citizen
  • ****
  • Posts: 368
  • Chillin
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #33 on: May 04, 2015, 08:53:27 pm »

Neat idea!
Logged
http://davidvedvick.info

"Always be yourself. Unless you can be Batman. Always be Batman." - Anonymous

broncodan

  • World Citizen
  • ***
  • Posts: 212
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #34 on: July 02, 2017, 03:03:51 pm »

Hi Prod,

I was wondering if this was still active?  I tried to use it with MC22 and I am getting the Try loading MC manually first.  I don't know how to do this.  Just wondering if it doesn't work with the newer versions of MC.

Thanks in advance.
Logged

broncodan

  • World Citizen
  • ***
  • Posts: 212
Re: SqlMyTunes for MC (Advanced playlists & smartlists) [v1.2.5]
« Reply #35 on: July 02, 2017, 03:12:58 pm »

never mind - got it to run.  I started sql first, i also reinstalled MC18 and MC22 and I am guessing there was a missing entry in the registry.

Anyway - works great as usual.

Thanks.
Logged
Pages: [1]   Go Up