{"id":15010319,"url":"https://github.com/hfanieng/nowplaying_rb_blt_udp","last_synced_at":"2026-02-18T06:30:49.681Z","repository":{"id":240414698,"uuid":"802568098","full_name":"hfanieng/nowplaying_rb_blt_udp","owner":"hfanieng","description":"combining rekordbox dj, beatlink trigger and udp to show ProDJ Link played tracks","archived":false,"fork":false,"pushed_at":"2025-01-03T18:15:05.000Z","size":1050,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-19T13:39:09.371Z","etag":null,"topics":["clojure","music","python","rekordbox","udp"],"latest_commit_sha":null,"homepage":"","language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hfanieng.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-18T16:56:47.000Z","updated_at":"2025-04-22T01:14:29.000Z","dependencies_parsed_at":"2024-05-18T18:26:44.480Z","dependency_job_id":"8fa5bbc4-a0f9-4e34-985f-c20f75a773bf","html_url":"https://github.com/hfanieng/nowplaying_rb_blt_udp","commit_stats":null,"previous_names":["hfanieng/nowplaying_rb_blt_udp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hfanieng/nowplaying_rb_blt_udp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hfanieng%2Fnowplaying_rb_blt_udp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hfanieng%2Fnowplaying_rb_blt_udp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hfanieng%2Fnowplaying_rb_blt_udp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hfanieng%2Fnowplaying_rb_blt_udp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hfanieng","download_url":"https://codeload.github.com/hfanieng/nowplaying_rb_blt_udp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hfanieng%2Fnowplaying_rb_blt_udp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29570320,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T06:19:27.422Z","status":"ssl_error","status_checked_at":"2026-02-18T06:18:44.348Z","response_time":162,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["clojure","music","python","rekordbox","udp"],"created_at":"2024-09-24T19:33:31.179Z","updated_at":"2026-02-18T06:30:49.665Z","avatar_url":"https://github.com/hfanieng.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Welcome to the Bridge between Rekordbox, Pro DJ Link via Beat Link Trigger and Python\n\n## Aim of the project is to build a bridge from what is now playing on a Pro DJ Link device\n\n\u003e **Disclaimer**: This project is **not** affiliated with Pioneer Corp. or its related companies\nin any way and has been written independently! NowPlayingXZ is licensed under the\n[MIT license][license-link]. The maintainers of the project are not liable for any damages to your Rekordbox library.\n\n### Technology\n\n- [Rekordbox](http://rekordbox.com) 7.0 from [AlphaTheta](http://http://alphatheta.com/) (formerlery known as Pioneer DJ)\n- [Pro DJ Link](https://support.pioneerdj.com/hc/en-us/articles/4405902925593-What-is-the-PRO-DJ-LINK-function) enabled Hardware (my Pioneer XDJ-XZ)\n- 3rd Party Software [Beat Link Trigger](https://github.com/Deep-Symmetry/beat-link-trigger) from [Deep Symmetry](https://deepsymmetry.org)\n- UDP as protocol from clojures driven BLT to [Python](python.org)\n- Python scripts to bring the data from BLT via UDP into an UI\n\n### Motivation\n\nFor years i like to play my favorite songs with Rekordbox, installed on my Mac.\nI own some controllers, the DDJ 400, DDJ 800, RB-DMX-1, DDJ-XP2 und the XDJ-XZ as standalone player.  \n\nPlayed around with different solutions like SoundSwitch to get my lighting in sync of the playing song.\n\n### Idea\n\nMy idea is to bring that together by using Pro DJ Link in combination with Deep Symmetry's great solution Beat Link Trigger and python\n\nPlayer Status ![Player Status][id]\n\n### UML Class diagramm\n\n```mermaid\nclassDiagram\n    class Song {\n        +String trackTitle\n        +String artist\n        +String genre\n        +String key\n        +Double bpm\n        +String trackBank\n        +int masterPlayerNumber\n        +String comment\n        +String label\n        \n        +void addBeat(Beat beat)\n        +void start()\n        +void stop()\n        +void updatePhrase(int beatNumber, String phraseType, String phraseSection, int timeReached, bool fill)\n    }\n\n    class Beat {\n        +int number\n        +String phraseType\n        +String phraseSection\n        +int timeReached\n        +bool fill\n        \n        +void updatePhrase(String phraseType, String phraseSection, int timeReached, bool fill)\n    }\n\n    Song \"1\" --\u003e \"4\" Beat : has\n```\n\n[id]: img/played_displayed_via_blt.png\n\n[license-link]: https://github.com/hfanieng/nowplaying_rb_blt_udp/blob/main/LICENSE\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhfanieng%2Fnowplaying_rb_blt_udp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhfanieng%2Fnowplaying_rb_blt_udp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhfanieng%2Fnowplaying_rb_blt_udp/lists"}