This project utilizes Beat Link Trigger to read data from the ProDJLink network, transmits the data via UDP to a Python script, and subsequently stores it in a SQL database
Disclaimer: This project is not affiliated with AlphaTheta/Pioneer DJ Corp. or its related companies in any way and has been developed independently. ProDJLink to SQL is licensed under the MIT license. The maintainers of this project are not liable for any damages to your data, as this is an experimental project.
Editor’s Warning: Using any under-development tool like this should be tested very thoroughly before relying on it for your next big DJ set. There is also always a chance that Pioneer DJ could close the loopholes that allow this to work in a future firmware update to CDJs – so update with caution.
- Introduction
- Requirements
- Installation
- Usage
- Configuration
- Database structure
- Troubleshooting
- Equipment
Inspired by a part in the great manual of Beat Link Trigger about writing played songs in a textfile i want to store my played songs from the Pioneer XDJ-XZ in a database.
One further option is to show the playlist on Website that is connected to a MySQL-Database.
- Full ProDJLink compatible Hardware
- Beat Link Trigger
- Python 3.x
- SQL database (e.g. MySQL, PostgreSQL)
- UDP support
Without compatible hardware, the simulation mode can be used in the Update Track Expressions of the trigger
Steps to install the required software and libraries:
-
clone this repository:
git clone https://github.com/hfanieng/ProDJLink-to-SQL
-
install the Python dependencies:
pip install mysql.connector
pip install socket
pip install json
pip install threading
-
configure the SQL database (see configuration)
Instructions for using the project:
- start Beat Link Trigger and configure it to send data over UDP.
- run the Python script:
python main.py
- check the SQL database for the stored data.
-
Beat Link Trigger
- Edit Shared Functions:
(defn send-json-to-python ;"Encodes a map as JSON and sends it in a UDP packet to Python." [globals m] (let [message (str (cheshire.core/encode m) "\n") ; Encode as JSON line. {:keys [py-address py-port py-socket]} @globals ; Find where to send. data (.getBytes message) ; Get JSON as raw byte array. packet (java.net.DatagramPacket. data (count data) py-address py-port)] (.send py-socket packet)))
- Edit Global Setup Expression:
;; Create a socket for sending UDP to Python, and record the ;; address and port to which such UDP messages should be sent. (swap! globals assoc :py-socket (java.net.DatagramSocket.)) (swap! globals assoc :py-address (java.net.InetAddress/getLocalHost)) (swap! globals assoc :py-port 7001)
- Set up a Trigger that is configured to watch the Master Player, and install the following Tracked Update Expression:
(import '[java.net DatagramSocket DatagramPacket InetAddress]) (defn send-udp [host port message] (let [socket (DatagramSocket.) address (InetAddress/getByName host) buffer (.getBytes message) packet (DatagramPacket. buffer (count buffer) address port)] (.send socket packet) (.close socket))) (when trigger-active? (when (not= track-metadata (:last-track @locals)) (swap! locals assoc :last-track track-metadata) (when (some? track-metadata) (let [log-entry (json/write-str {:timestamp (str (java.time.LocalDateTime/now)) :device device-name :artist track-artist :id rekordbox-id :title track-title :label track-label :bpm effective-tempo} :escape-slash false) udp-host "127.0.0.1" ; target host udp-port 7001] ; target port (send-udp udp-host udp-port log-entry)))))
-
Database structure
erDiagram playlist { INT track_id PK VARCHAR track_artist FLOAT track_bpm VARCHAR track_device VARCHAR track_genre VARCHAR track_key VARCHAR track_label TIMESTAMP track_timestamp VARCHAR track_title INT rekordbox_id FK }
The rekordbox_id is for further use as a foreign key.
Example for successful done entries in the SQL-database:
Common problems and their solutions:
- On MacOS the Python-Script works and writes the data in the table, on Windows it runs into an error due to the length of the timestamp.
All tests runs with the old but great Pioneer XDJ-XZ with ❤️ and 🤩 at my hometown Hagen-Wehringhausen.