Skip to content

Commit

Permalink
minor edits, version #
Browse files Browse the repository at this point in the history
  • Loading branch information
GModal committed Sep 9, 2021
1 parent 1225f0a commit fd80497
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
10 changes: 6 additions & 4 deletions clients.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## pd2jack OSC Clients

A running instance of pd2jack can act as an OSC server, with a networked client acting as a GUI. Examples can be found in the **client** folder.
A running instance of *pd2jack* can act as an OSC server, with a networked client acting as a GUI. Examples can be found in the **client** folder.

## Swap

Expand Down Expand Up @@ -35,13 +35,15 @@ Start the MobMuPlat app, then load "swap.mmp" from the documents prompt (upper l
or if pd2jack isn't globally installed:
./pd2jack -v 1 -i -o -O 224.0.0.1 -p pd/phase_vo.pd

This will start pd2jack in verbose interactive mode, with OSC enabled and a multicast group for outgoing OSC. The URL of 224.0.0.1 is standard for home routers, but could be different on commercial or education networks. This also holds for the MobMuPlat broadcast IP address.
This will start *pd2jack* in verbose interactive mode, with OSC enabled and a multicast group for outgoing OSC. The URL of 224.0.0.1 is standard for home routers, but could be different on commercial or education networks. This also holds for the MobMuPlat broadcast IP address.

(The patch paths (in "swap.pd") are set for the subdir "pd", so the demo won't function unless the patches are in that folder. Edit "swap.pd" if other behavior is preferred.)

### Using the Swap client

- Changing a widgets will alter the values in the patch.
- Changing a widget will alter the values in the patch.

- Select "Load Patch" and choose one of the two patches to load. The widget labels will change to correspond with the patch.
- Select "Load Patch" and choose one of the two patches to load. **pd2jack** will clear the previous patch, and load the new one. The widget labels will change to correspond with the new patch.

Instructions for installing MobMuPlat can be found on the website: [MobMuPlat home.](https://danieliglesia.com/mobmuplat/)

Expand Down
6 changes: 6 additions & 0 deletions pd/apass.pd
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#N canvas 769 511 702 383 10;
#X obj 129 103 dac~;
#X obj 129 75 adc~;
#X text 120 135 Audio 2 chan pass-through;
#X connect 1 0 0 0;
#X connect 1 1 0 1;
2 changes: 1 addition & 1 deletion src/pd2jack.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ using namespace std;

const int MAX_AUDIO_PORTS = 16;
const int MAX_MIDI_PORTS = 16;
const string versionString = "0.3.9";
const string versionString = "0.4.0";

enum midiGlobalTypes {
// MIDI consts
Expand Down

0 comments on commit fd80497

Please sign in to comment.