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
-
Wine 10 Includes Plenty to Excite Users
With its latest release, Wine has the usual crop of bug fixes and improvements, along with some exciting new features.
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.