Skip to main content

traktor_nowplaying uses Traktor's broadcast functionality to extract metadata about the currently playing song.

Project description

Traktor Now Playing

This project for Python 3 (tested on 3.7 and 3.8) uses Traktor's broadcast functionality to extract metadata about the currently playing song. This is really a very thin wrapper around some tinytag methods that can be found in ogg.py, where the original license is also included. There are no dependencies. Tested with Traktor 3.3, but this will likely work with older versions as well.

The reason this exists is because it's rather difficult to get this information through other means. You can use MIDI for this as well, but that requires that you add a fake controller.

Lastly, there are several other projects that do something similar such as Traktor Metadata Listener which is not open-source and likely will never be, and traktor-now-playing, which uses the MIDI approach mentioned above.

Installation

The preferred installation method is via pip:

pip install traktor_nowplaying

Eventually, I'd like to leverage GitHub actions to automate the creation of binary releases using pyInstaller or something similar, but this is not setup at the moment.

General use

In order for this program to work, you of course have to setup the broadcasting feature of Traktor - note that this completely hijacks that functinality, so while you can still record and broadcast through some other means (eg. using a splitter or other outputs on your controller/mixer, or from the recording itself), you cannot broadcast from Traktor itself.

You must configure Traktor to broadcast to localhost and the port specified with the -p, or --port option (defaults to 8000), or the port that is passed to the constructor if you're using this as a library instead. For the format setting you can use anything, but I recommend choosing the lowest bitrate for the sample rate of your system, so most commonly the best choice is 44100 Hz, 64 Kbps.

Note that there is a delay between when you change a song in Traktor and when the change is picked up.

Use from command line

Default options: listen on port 8000, and output the currently playing song to the console:

traktor_nowplaying

Listen on port 8000, output to nowplaying.txt in the current directory and do not output to stdout:

traktor_nowplaying --port 8000 --outfile='nowplaying.txt' --quiet

The help text:

$ traktor_nowplaying -h
usage: traktor_nowplaying [-h] [-p PORT] [-q] [-o OUTFILE] [--version]

Use Traktor's broadcast functionality to extract metadata about the currently playing song

optional arguments:
  -h, --help            show this help message and exit
  -p PORT, --port PORT  Port to listen on for broadcasts from Traktor
  -q, --quiet           Suppress console output of currently playing song
  -o OUTFILE, --outfile OUTFILE
                        Provide a file path to which the currently playing song should be written
  -v, --version         show program's version number and exit

Note that you must configure Traktor to broadcast to localhost and the port specified with the -p, or --port option (defaults to 8000). For the format setting you can use anything, but I recommend
choosing the lowest bitrate for the sample rate of your system, so most commonly the best choice is 44100 Hz, 64 Kbps.

To stop the process Ctrl + C should suffice.

Use as a library

traktor_nowplaying can also be used as a library. This can be useful if you'd like to leverage this rather simple functionality in other code.

from traktor_nowplaying import Listener

listener = Listener(port=8000, quiet=True, outfile='nowplaying.txt')
listener.start()

A more elaborate example with a custom callback:

# TODO: add example implementation

Implementation details

TODO

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

traktor_nowplaying-0.0.6.tar.gz (8.8 kB view hashes)

Uploaded Source

Built Distribution

traktor_nowplaying-0.0.6-py2.py3-none-any.whl (17.3 kB view hashes)

Uploaded Python 2 Python 3

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