Hello all,
I am looking to do some multi-channel decoding in Max/MSP and then taking the output from that VST and piping it into Live. The issue here is that the VSTs require 4 channel input and may have 8 or more outputs. Given this Live does not handle this routing well, but it is my preferred ...
Search found 50 matches
- Wed Oct 26, 2011 4:49 am
- Forum: Max For Live
- Topic: Is there a VST host UI in Max4Live?
- Replies: 0
- Views: 480
- Wed Oct 26, 2011 4:46 am
- Forum: Users' Help Exchange - closed
- Topic: Can I use Reaper as a slave to Ableton???
- Replies: 1
- Views: 1980
Can I use Reaper as a slave to Ableton???
Hey All,
In short: I need to be able to bring in audio from Reaper where Reaper is running two VST multi-input VSTs for me. The output from the VST can be mono to full multi-track (up to 8) streams. These streams I can break out in Reaper and then I want to send them to Ableton Live and do my core ...
In short: I need to be able to bring in audio from Reaper where Reaper is running two VST multi-input VSTs for me. The output from the VST can be mono to full multi-track (up to 8) streams. These streams I can break out in Reaper and then I want to send them to Ableton Live and do my core ...
- Wed Sep 28, 2011 2:52 pm
- Forum: Users' Help Exchange - closed
- Topic: Issues getting Ambisonic Plug-ins working, please help.
- Replies: 1
- Views: 966
Solved!! Issues getting Ambisonic Plug-ins working, please h
Hey All,
I got it working this morning...
Pulled out the Utility to make the tracks mono.
Routed everything through and it is working great!
Thanks,
Brett
I got it working this morning...
Pulled out the Utility to make the tracks mono.
Routed everything through and it is working great!
Thanks,
Brett
- Wed Sep 28, 2011 4:51 am
- Forum: Users' Help Exchange - closed
- Topic: Issues getting Ambisonic Plug-ins working, please help.
- Replies: 1
- Views: 966
Issues getting Ambisonic Plug-ins working, please help.
Hello,
I am currently looking at trying to decode some ambisonic audio in Live.
My problem is that I can't seem to get the audio routing correct for ins and outs to the VST.
Here are the two VST plug-ins I'm trying out:
1) http://mcgriffy.com/audio/ambisonic/vvmicvst/
Note: VVMicVST can be found ...
I am currently looking at trying to decode some ambisonic audio in Live.
My problem is that I can't seem to get the audio routing correct for ins and outs to the VST.
Here are the two VST plug-ins I'm trying out:
1) http://mcgriffy.com/audio/ambisonic/vvmicvst/
Note: VVMicVST can be found ...
- Mon Jan 31, 2011 4:04 am
- Forum: Max For Live
- Topic: help: MixerDevice and DeviceParameter getting the same ID
- Replies: 0
- Views: 443
help: MixerDevice and DeviceParameter getting the same ID
Hello,
I have JavaScript piece of code that goes through all of the live_set and pulls out all of the items it can and send them to a remote application. Once thing I've recently run into when cleaning up the issues with the Mixer section was the fact that the sends devices have the same id's as ...
I have JavaScript piece of code that goes through all of the live_set and pulls out all of the items it can and send them to a remote application. Once thing I've recently run into when cleaning up the issues with the Mixer section was the fact that the sends devices have the same id's as ...
- Fri Jan 28, 2011 6:14 am
- Forum: Max For Live
- Topic: clip "playing_status" using the bang message in JavaScript
- Replies: 5
- Views: 1299
Re: clip "playing_status" using the bang message in JavaScript
Thank you!!!
I'll give it a shot this weekend.
Brett
I'll give it a shot this weekend.
Brett
- Mon Jan 17, 2011 8:28 am
- Forum: Max For Live
- Topic: [Fixed] Help with "get path: error calculating the path"
- Replies: 1
- Views: 521
Fixed: Help with "get path: error calculating the path"
Hello,
While looking for a diffrent answer I ran across this link:
http://forum.ableton.com/viewtopic.php?f=35&t=130558
function mixer_nav()
{
var firstTrackMixer = new LiveAPI(this.patcher, null, ["live_set","tracks",0,"mixer_device"]);
firstTrackMixer.goto("volume");
post(firstTrackMixer ...
While looking for a diffrent answer I ran across this link:
http://forum.ableton.com/viewtopic.php?f=35&t=130558
function mixer_nav()
{
var firstTrackMixer = new LiveAPI(this.patcher, null, ["live_set","tracks",0,"mixer_device"]);
firstTrackMixer.goto("volume");
post(firstTrackMixer ...
- Mon Jan 17, 2011 7:37 am
- Forum: Max For Live
- Topic: Why is the DeviceParamater "IsEnabled" not observable?
- Replies: 0
- Views: 395
Why is the DeviceParamater "IsEnabled" not observable?
Hello,
I was looking at the data coming in from my M4L Patch when using the "Corpus [Drum Rezo Gate]" pre sets when I realized the impact to "IsEnabled" not being observable. When I changed the type from something like "Beam" to "Plate" I noticed controls became enabled and/or disabled on the ...
I was looking at the data coming in from my M4L Patch when using the "Corpus [Drum Rezo Gate]" pre sets when I realized the impact to "IsEnabled" not being observable. When I changed the type from something like "Beam" to "Plate" I noticed controls became enabled and/or disabled on the ...
- Mon Jan 17, 2011 5:58 am
- Forum: Max For Live
- Topic: [Fixed] Help with "get path: error calculating the path"
- Replies: 1
- Views: 521
[Fixed] Help with "get path: error calculating the path"
Hello,
I had posted a while back on the Live API where I am getting a "jsliveapi: get path: error calculating the path".
Here is the minimum code to get the error:
NewObject = new LiveAPI(this.patcher, null, "live_set","tracks", 0 ,"mixer_device", "panning");
post("\n=== NewObject.path ...
I had posted a while back on the Live API where I am getting a "jsliveapi: get path: error calculating the path".
Here is the minimum code to get the error:
NewObject = new LiveAPI(this.patcher, null, "live_set","tracks", 0 ,"mixer_device", "panning");
post("\n=== NewObject.path ...
- Sun Jan 16, 2011 12:49 am
- Forum: Max For Live
- Topic: clip "playing_status" using the bang message in JavaScript
- Replies: 5
- Views: 1299
Re: clip "playing_status" using the bang message in JavaScript
Hello all,
Here is what I decided to try:
1) Update my genaric "ProertyCallBack" to have one specific type PlayingStatusChange
2) Put a simple post message in the callback to see when it is fired.
Here is what I have:
I recurse through all of my children, when I get to a child I go through all ...
Here is what I decided to try:
1) Update my genaric "ProertyCallBack" to have one specific type PlayingStatusChange
2) Put a simple post message in the callback to see when it is fired.
Here is what I have:
I recurse through all of my children, when I get to a child I go through all ...
- Sat Jan 15, 2011 10:17 pm
- Forum: Max For Live
- Topic: clip "playing_status" using the bang message in JavaScript
- Replies: 5
- Views: 1299
clip "playing_status" using the bang message in JavaScript
Hello all,
Let me start with what I am trying to do:
1) Figure out if a clip and clip_slot playing_status
2) Figure out if the clip is:
a) is_recording
b) is_playing
3) I would like to do this all from listeners inside of JavaScript
Why do I want to do this inside of JavaScript?
In short I've ...
Let me start with what I am trying to do:
1) Figure out if a clip and clip_slot playing_status
2) Figure out if the clip is:
a) is_recording
b) is_playing
3) I would like to do this all from listeners inside of JavaScript
Why do I want to do this inside of JavaScript?
In short I've ...
- Mon Dec 13, 2010 12:31 am
- Forum: Max For Live
- Topic: Pointers on creation of a dynamic checkbox list?
- Replies: 0
- Views: 428
Pointers on creation of a dynamic checkbox list?
Hello all,
I'm looking to dynamicly create a long list of items that need to have a checkbox next to them... although in the future it actually may end up being a dropdown list in place of the checkbox so that I can have more than and selected/desected option next to the item.
In part of the ...
I'm looking to dynamicly create a long list of items that need to have a checkbox next to them... although in the future it actually may end up being a dropdown list in place of the checkbox so that I can have more than and selected/desected option next to the item.
In part of the ...
- Mon Dec 13, 2010 12:24 am
- Forum: Max For Live
- Topic: Mary For Vocals?
- Replies: 2
- Views: 957
Re: Mary For Vocals?
I've looked at Text To Speech (TTS) stuff for a very diffrent project and one thing I noticed is that some of the voice can be used for redistrobution and others cannot with out a specific license. You may want to check the license for that TTS engine before putting that voice in your recordings or ...
- Sun Oct 03, 2010 2:28 pm
- Forum: Max For Live
- Topic: Proper path for mixer_device children in JavaScript
- Replies: 2
- Views: 762
Re: Proper path for mixer_device children in JavaScript
Excellent, I'll give it a try.
You are correct, I have noticed that many times if you just send long string "live_set tracks 0 mixer_device sends 0" I get an error with it understanding the path. Also, I had an issue where I had "live_set tracks[space][space]0" and the two spaces caused a failure ...
You are correct, I have noticed that many times if you just send long string "live_set tracks 0 mixer_device sends 0" I get an error with it understanding the path. Also, I had an issue where I had "live_set tracks[space][space]0" and the two spaces caused a failure ...
- Sun Oct 03, 2010 2:23 pm
- Forum: Max For Live
- Topic: JavaScript, LiveAPI, and device/object removal
- Replies: 7
- Views: 1690
Re: JavaScript, LiveAPI, and device/object removal
Interesting... I wonder if this will also update the JS part as well so that one can get a notification of device removal. Maybe I'll ask over there on their side. The inital reason I asked here and not on the c74 site was that I felt Live had to hook up the ability to notify when something went ...