A Python implementation of a StagelinQ protocol
Project description
Overview
This Python module decodes part of the StageLinQ protocol used by Denon DJ equipment. In its current state it is possible to read out information like track information, fader position (Crossfader, channel volume, pitchfader), BPM etc. The project also includes a description of how StageLinQ works taking from my findings as well as other code available.
This module can be used to receive this information from a device via a callback when data is available.
There is also a Wireshark Dissector that I made during my trials.
Status
An initial implementation of parts of the protocol has been done, but there is still much left to do. As the code should be at least somewhat functional I've decided to release this as is and add functionality along the way. Since I'm unsure where this is heading there is a possibility that there will be a future (major) version that will reimagine the functions completely.
The next few versions will probably be patched to bring the documentation up to date.
Documentation
Documentation is available on readthedocs.io
Installation
pip install PyStageLinQ
Issue tracking
If you find an issue, please report check known issues, and if the issue is not mentioned please report it here
Example usage
Here follow an example of how PyStageLinQ can be used:
from PyStageLinQ import EngineServices, PyStageLinQ
PrimeGo = None
# Callback for when PyStageLinQ as found a StageLinQ device. This will print out information about the found device
# and if lets the user decide if they want to subscribe to a service or not.
def new_device_found_callback(ip, discovery_frame, service_list):
# Print device info and supplied services
print(
f"Found new Device on ip {ip}: Device name: {discovery_frame.device_name}, ConnectionType: {discovery_frame.connection_type}, SwName: {discovery_frame.sw_name}, "
f"SwVersion: {discovery_frame.sw_version}, port: {discovery_frame.Port}")
if len(service_list) > 0:
print("Services found in device:")
else:
print("No services found")
for service in service_list:
print(f"\t{service.service} on port {service.port}")
# Request StateMap service
for service in service_list:
if service.service == "StateMap":
PrimeGo.subscribe_to_statemap(service, EngineServices.prime_go, state_map_data_print)
# Callback for when data has arrived from a StageLinQ device. It is up to the user what to do with this information.
def state_map_data_print(data):
for message in data:
print(message)
# Example main function, starting PyStageLinQ.
if __name__ == "__main__":
global PrimeGo
PrimeGo = PyStageLinQ.PyStageLinQ(new_device_found_callback, name="Jaxcie StagelinQ")
PrimeGo.start()
Wireshark dissector
When I developed this code I made a WireShark Dissector, it is included in this repo. Do note that this dissector isn't properly tested and may cause unexpected issues. As this file is not part of the Pythoncode in PyStageLinQ it can be found on GitHub
Compatability
PyStageLinQ has been tested with a Denon DJ Prime Go on Windows 10 and Linux (Mint 20.3) with Python 3.10.
Acknowledgements
Big thanks to icedream for his implementation of StageLinQ in go: https://github.com/icedream/go-stagelinq
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pystagelinq-0.1.1.tar.gz
.
File metadata
- Download URL: pystagelinq-0.1.1.tar.gz
- Upload date:
- Size: 20.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17cd1bd80b41387fdac9ca391dca6911d40ccc773a9c9645a88785e2f6e4e40c |
|
MD5 | ba454e4507f008828b557587c9313c7b |
|
BLAKE2b-256 | 8b0ff519b0c79957ef036761ada37d6a4f928be7088da20c397eabb5e9684839 |
File details
Details for the file pystagelinq-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: pystagelinq-0.1.1-py3-none-any.whl
- Upload date:
- Size: 16.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4d91f294927b1d3d005287fe281245ca58232c77de4af340a90104615f41f72 |
|
MD5 | 32adaaf8e53185f8919bd59d123f93a3 |
|
BLAKE2b-256 | 6a143dfd286252322d20cd40f89dc19de6ae7edd34fedaa9bf017ff85c579706 |