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
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.
-
Armbian 24.11 Released with Expanded Hardware Support
If you've been waiting for Armbian to support OrangePi 5 Max and Radxa ROCK 5B+, the wait is over.
-
SUSE Renames Several Products for Better Name Recognition
SUSE has been a very powerful player in the European market, but it knows it must branch out to gain serious traction. Will a name change do the trick?
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.