Creating a LibreOffice Music Database
Tune Finder
LibreOffice Calc and Base are all you need to create a simple database for organizing the songs in your music collection.
MySQL is the most commonly used open source database management system. Developers often use MySQL and its cousin MariaDB to build database applications for organizing office records, managing inventories, and other common tasks. However, MySQL is often too complex and too much trouble for personal, home-office uses. LibreOffice offers a simpler alternative for users who just want to create a small, simple database to address a specific need. This article describes how to create a quick and easy database solution using LibreOffice tools. In this case, I'll show you how to set up a music database from an iTunes library.
The Plan
I'll use two tools from the LibreOffice integrated suite to create my music database: LibreOffice Calc (spreadsheet) and LibreOffice Base (database management). With these two applications plus iTunes, the general process is as follows:
- Export library from iTunes as a tab-separated text file.
- Import library into LibreOffice Calc for minor edits.
- Copy modified library data into LibreOffice Base.
- Create SQL queries.
- Run queries and filters to display results.
Of course, you can adapt this process for other types of data. For instance, you could organize a stamp collection or track incoming invoices for this year's taxes.
Export from iTunes
The first step is to export music information from iTunes to a text file in a format that can be imported into LibreOffice. Playlists can be exported from iTunes as a table in a tab-delimited plain text file format. The comma-separated values (CSV) format is unacceptable because some data fields (such as album titles, song titles, or artist names) may contain commas or other special characters. The exported playlist may consist of some or all of the songs in the library. I use the following steps to export my playlist:
- Select all songs in the library
- Go to File | Library | Export Playlist
- In the File name field, enter Music.txt
- Select Text file (*.txt)
These steps save the playlist as a tab-separated text file, Music.txt
(but you choose any name you want), that can be directly imported as a plain text spreadsheet.
Import Text File into LibreOffice Calc
Next, I import the tab-separated file Music.txt
into LibreOffice Calc for minor editing. When I open the text file, LibreOffice Calc pops up a Text Import dialog box with the option to select or change the delimiter. To import the file into Calc:
- Go to File | Open
Select Text documents from the file type drop-down menu (Figure 1)
- Select Music.txt
- Click Open
In the Text Import dialog box that opens, check the Tab option under Separator Options and uncheck the other options here (Figure 2)
- Examine the preview in the Fields section
- Click OK
iTunes exports many data fields as table columns, and some of them are not useful or wanted. Because I am only interested in Name (song title), Artist, Album, Genre, Track Number, and Year, I delete all columns except for these. I also insert an ID field to be used as a primary key (which I will discuss in the database section of this article.)
To insert the ID field (shown in Figure 3), follow these steps:
- Insert a column in the first position, left of the Name column: Sheet | Insert Columns | Columns Left
- Label the new column ID
- Leave cells in the ID column blank (they will be automatically filled in LibreOffice Base)
- Click Save
- Optionally, leave LibreOffice Calc open to cut and paste data later.
At this point, I have the data that I need to populate the database. I need to get that spreadsheet data into a database. To create my music database, I will now use LibreOffice Base, which can create, manage, and edit flat and relational databases.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you've found an article to be beneficial.
News
-
The GNU Project Celebrates Its 40th Birthday
September 27 marks the 40th anniversary of the GNU Project, and it was celebrated with a hacker meeting in Biel/Bienne, Switzerland.
-
Linux Kernel Reducing Long-Term Support
LTS support for the Linux kernel is about to undergo some serious changes that will have a considerable impact on the future.
-
Fedora 39 Beta Now Available for Testing
For fans and users of Fedora Linux, the first beta of release 39 is now available, which is a minor upgrade but does include GNOME 45.
-
Fedora Linux 40 to Drop X11 for KDE Plasma
When Fedora 40 arrives in 2024, there will be a few big changes coming, especially for the KDE Plasma option.
-
Real-Time Ubuntu Available in AWS Marketplace
Anyone looking for a Linux distribution for real-time processing could do a whole lot worse than Real-Time Ubuntu.
-
KSMBD Finally Reaches a Stable State
For those who've been looking forward to the first release of KSMBD, after two years it's no longer considered experimental.
-
Nitrux 3.0.0 Has Been Released
The latest version of Nitrux brings plenty of innovation and fresh apps to the table.
-
Linux From Scratch 12.0 Now Available
If you're looking to roll your own Linux distribution, the latest version of Linux From Scratch is now available with plenty of updates.
-
Linux Kernel 6.5 Has Been Released
The newest Linux kernel, version 6.5, now includes initial support for two very exciting features.
-
UbuntuDDE 23.04 Now Available
A new version of the UbuntuDDE remix has finally arrived with all the updates from the Deepin desktop and everything that comes with the Ubuntu 23.04 base.