Created Import collection library and playlists data from Clementine (markdown)

Jonas Kvinge 2020-11-11 00:28:39 +01:00
parent 5f8d459067
commit 2f019278ab
1 changed files with 161 additions and 0 deletions

@ -0,0 +1,161 @@
Before importing data from Clementine, start Strawberry once so that initial database schemas (tables) are created. Then exit both Strawberry and Clementine.
The following guide is only briefly tested.
**ALL COLLECTION AND PLAYLISTS DATA IN STRAWBERRY WILL BE OVERWRITTEN REPLACED WITH THE DATA FROM CLEMENTINE.**
On a terminal type:
`sqlite3`
You will then get a command prompt where you can manually perform SQL queries.
Replace username with your own.
Type the following commands to attach both databases;
`ATTACH '/home/username/.local/share/strawberry/strawberry/strawberry.db' AS strawberry;`
`ATTACH '/home/username/.config/Clementine/clementine.db' AS clementine;`
`-- Delete all existing songs, playlists and playlist items in the strawberry.db:`
`-- This must be done when importing all data from Clementine because playlists are based on ROWIDs.`
`DELETE FROM strawberry.directories;`
`DELETE FROM strawberry.subdirectories;`
`DELETE FROM strawberry.songs;`
`DELETE FROM strawberry.playlists;`
`DELETE FROM strawberry.playlist_items;`
`-- Import all data from the collection library songs:`
`INSERT INTO strawberry.directories (path, subdirs) SELECT path, subdirs FROM clementine.directories;`
`INSERT INTO strawberry.subdirectories (directory_id, path, mtime) SELECT directory, path, mtime FROM clementine.subdirectories;`
`INSERT INTO strawberry.songs (ROWID, title, album, artist, albumartist, track, disc, year, originalyear, genre, compilation, composer, performer, grouping, comment, lyrics, beginning, length, bitrate, samplerate, directory_id, url, filetype, filesize, mtime, ctime, unavailable, playcount, skipcount, lastplayed, compilation_detected, compilation_on, compilation_off, compilation_effective, art_automatic, art_manual, effective_albumartist, effective_originalyear, cue_path, rating)`
`SELECT ROWID, title, album, artist, albumartist, track, disc, year, originalyear, genre, compilation, composer, performer, grouping, comment, lyrics, beginning, length, bitrate, samplerate, directory, filename, filetype, filesize, mtime, ctime, unavailable, playcount, skipcount, lastplayed, sampler, forced_compilation_on, forced_compilation_off, effective_compilation, art_automatic, art_manual, effective_albumartist, effective_originalyear, cue_path, rating FROM clementine.songs WHERE unavailable = 0;`
`UPDATE strawberry.songs SET source = 2;`
`UPDATE strawberry.songs SET artist_id = "";`
`UPDATE strawberry.songs SET album_id = "";`
`UPDATE strawberry.songs SET song_id = "";`
`-- Import playlists:`
`INSERT INTO strawberry.playlists (ROWID, name, last_played, special_type, ui_path, is_favorite, dynamic_playlist_type, dynamic_playlist_data, dynamic_playlist_backend)`
`SELECT ROWID, name, last_played, special_type, ui_path, is_favorite, dynamic_playlist_type, dynamic_playlist_data, dynamic_playlist_backend FROM clementine.playlists WHERE dynamic_playlist_type ISNULL;`
`-- Import playlist items:`
`
INSERT INTO strawberry.playlist_items
(ROWID,
playlist,
collection_id,
title,
album,
artist,
albumartist,
track,
disc,
year,
originalyear,
genre,
compilation,
composer,
performer,
grouping,
comment,
lyrics,
beginning,
length,
bitrate,
samplerate,
directory_id,
url,
filetype,
filesize,
mtime,
ctime,
unavailable,
playcount,
skipcount,
lastplayed,
compilation_detected,
compilation_on,
compilation_off,
compilation_effective,
art_automatic,
art_manual,
effective_albumartist,
effective_originalyear,
cue_path,
rating
)
SELECT ROWID,
playlist,
library_id,
title,
album,
artist,
albumartist,
track,
disc,
year,
originalyear,
genre,
compilation,
composer,
performer,
grouping,
comment,
lyrics,
beginning,
length,
bitrate,
samplerate,
directory,
filename,
filetype,
filesize,
mtime,
ctime,
unavailable,
playcount,
skipcount,
lastplayed,
sampler,
forced_compilation_on,
forced_compilation_off,
effective_compilation,
art_automatic,
art_manual,
effective_albumartist,
effective_originalyear,
cue_path,
rating FROM clementine.playlist_items WHERE type = 'Library';
`
`UPDATE strawberry.playlist_items SET source = 2;`
`UPDATE strawberry.playlist_items SET type = 2;`
`UPDATE strawberry.playlist_items SET artist_id = "";`
`UPDATE strawberry.playlist_items SET album_id = "";`
`UPDATE strawberry.playlist_items SET song_id = "";`
Restore all album covers cached in Clementine:
`cp ~/.config/Clementine/albumcovers/* ~/.local/share/strawberry/strawberry/collectionalbumcovers/`