Skip to main content

A Python implementation of a StagelinQ protocol

Project description

Build Status PyPI - Python Version PyPi version PyPI - License Read the Docs Codecov CodeFactor Code style: black

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
    
    # Run PyStageLinQ on all available network interfaces
    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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pystagelinq-0.2.1.tar.gz (36.9 kB view details)

Uploaded Source

Built Distribution

pystagelinq-0.2.1-py3-none-any.whl (18.4 kB view details)

Uploaded Python 3

File details

Details for the file pystagelinq-0.2.1.tar.gz.

File metadata

  • Download URL: pystagelinq-0.2.1.tar.gz
  • Upload date:
  • Size: 36.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.2

File hashes

Hashes for pystagelinq-0.2.1.tar.gz
Algorithm Hash digest
SHA256 11bc030dfd1f25b2dcf76d7203e5f5e28fe68270e9caa2c79435b185193d95ae
MD5 0df0fc145dcb50cdf63b1cdb2c91301b
BLAKE2b-256 f6e3f1f434e934a6cdbb141d71ed4e4b7b9d2a9eba37557585aaf65d033b28c8

See more details on using hashes here.

File details

Details for the file pystagelinq-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: pystagelinq-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 18.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.2

File hashes

Hashes for pystagelinq-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 39ea5e47a8746e1cc82e47caa3aea2adcd8916d7f8f538b36fb2b5381e71b2a4
MD5 0a891ba621fdb89c5a7aeb1a962b94fb
BLAKE2b-256 df38787e3baa2db1edd71ec0de0bbf0c8fd254247a4618b578be5db66cbd6e50

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page