Is possible call midi/audio settings window from patch window? Some message to pd... (??)
Thanks.. Esteban Viveros
Esteban Viveros wrote:
Is possible call midi/audio settings window from patch window? Some message to pd... (??)
the "mediasettings" external:
https://puredata.info/downloads/mediasettings
easy to make on LINUX, i also still have the windows binaries from the pd-extended release, both working ! don't know about OSX
best
oliver
This is how you open/recall the audio settings:
[; pd audio-properties(
This is how you open/recall the midi settings:
[; pd midi-properties(
To send your settings to Pd use:
[; pd audio-dialog a a a a b b b b c c c c d d d d e f(
a = input device 1-4 b = input channels input 1-4 c = output device 1-4 d = output channels output 1-4 4 = sample rate d = delay (ms)
[; pd midi-dialog a a a a b b b b c d (
a = input device 1-4 b = output device 1-4 c = number of input channels d = number of output channels
Ingo
Is possible call midi/audio settings window from patch window? Some message to pd... (??)
Thanks.. Esteban Viveros
@oliver good to know that external! @Ingo that is it!! It solved..
Thanks!
Em dom, 17 de abr de 2016 às 17:01, Ingo ingo@miamiwave.com escreveu:
This is how you open/recall the audio settings:
[; pd audio-properties(
This is how you open/recall the midi settings:
[; pd midi-properties(
To send your settings to Pd use:
[; pd audio-dialog a a a a b b b b c c c c d d d d e f(
a = input device 1-4 b = input channels input 1-4 c = output device 1-4 d = output channels output 1-4 4 = sample rate d = delay (ms)
[; pd midi-dialog a a a a b b b b c d (
a = input device 1-4 b = output device 1-4 c = number of input channels d = number of output channels
Ingo
Is possible call midi/audio settings window from patch window? Some
message
to pd... (??)
Thanks.. Esteban Viveros
On 04/17/2016 10:10 PM, Esteban Viveros wrote:
@oliver good to know that external! @Ingo that is it!! It solved..
for "setting" things, the mediasettings library is really just a wrapper around the "audio-dialog" and "midi-dialog" messages.
it's power lies in being able to query the current state.
it basically allows you to build your *own* audio/midi settings dialog (it was used in the IntegraLive project that used Pd as the audio backend (without a GUI, but with full control over the audio devices - unlike libpd) and mediasettings was used to populate the audio settings dialog in the front end)
gfmdstr IOhannes