Skip to content

malloch/umapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

umapper

A command line tool for interacting with distributed signal networks using libmapper.

Example

umapper offers a simple method for mapping signals between devices at runtime. Suppose for this example that you have two libmapper devices, a producer and a consumer that are defined in Python 3 as follows:

import libmapper as mpr

producer = mpr.Device("Producer")
consumer = mpr.Device("Consumer")

Each of the devices have one signal that we will map with umapper.

producer.add_signal(mpr.Direction.OUTGOING, "Producer-Signal",
                    1, mpr.Type.INT32)

consumer.add_signal(mpr.Direction.INCOMING, "Consumer-Signal",
                    1, mpr.Type.INT32)

After polling each of the devices, they will enter the ready state and be visible to umapper. To view all libmapper devices currently ready, issue the command:

umapper -a

Which in this example will output:

Devices:
    Producer.1
        output signals:
            Producer-Signal
    Consumer.1
        input signals:
            Consumer-Signal

To map the producer's output signal to the consumer's input signal, issue the command:

umapper -M Producer.1/Producer-Signal Consumer.1/Consumer-Signal

Which if successful will output the following:

MAP: 'Producer.1:Producer-Signal' -> 'Consumer.1:Consumer-Signal', id=0, is_local=F, muted=F, num_sigs_in=1, process_loc=unknown, protocol=osc.udp, scope=NULL, status=2, use_inst=F, version=0
mapped:                      Producer.1/Producer-Signal -> Consumer.1/Consumer-Signal,

You have successfully mapped the signals! To verify this with umapper, you can run umapper -a again which will output the following:

Devices:
    Consumer.1
        input signals:
            Consumer-Signal
    Producer.1
        output signals:
            Producer-Signal
                Maps:
                     Producer.1/Producer-Signal -> Consumer.1/Consumer-Signal,

About

A command line tool for interacting with distributed signal networks using libmapper.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published