ASIO Multi-Client Support - Feature Request

When AA 3 opens an ASIO device, it hogs takes possession of the whole device, even though some device drivers are built for multi-client support.  Other audio applications that allow for this functionality have preference screens built in with which you can choose the individual channels that will be used by the software - if a series of channels is not in use by that one application, then another audio application can utilize the unused ports.
For example, I may choose to activate and use digital output channels 1-8 of an RME FireFace in Sonar as VSTi outputs, do a loopback in the RME TotalMix mixer, and then choose to use those same inputs to record into Reaper.  As long as I have only activated the 8 outputs in Sonar and the 8 inputs in Reaper, everything is copacetic.
One can also use the pairs of outputs and split these multi-client interfaces into two halves (or any division, really) and have quite a bit of versatility - the only caveat being that there can only be a single word-clock (sample rate) for everything.
If the developers could see fit to implement this in the next version, it would be nice.  I would like to get down to using just Reaper and AA and this recognition of multi-client capability would certainly help that cause.
--Dean

With CoolEdit I could use the RME Digi96 soundcard together with Digicheck.
But with Au I can not. A pity...

Similar Messages

  • Need security cert support - feature request

    The iOS version of Adobe Reader does support password-based encryption, but not certificate-based encryption.   We need certificate-based encryption for certain business functions.   When I tried reading a pdf file encrypted with a certificate on the iPad, Adobe Reader for iOS said, “The document has features that are not supported in this version of Adobe Reader”.   Please consider this a feature request to add this capability. 

    Hi Josh,
    Thanks for your feedback. But can you let us know which version of MRD client you are using on which device as to clarify and research more regarding your case.
    Thanks for your understanding and Support!
    Regards.
    Dharmesh Solanki
    TechNet Community Support

  • Google Picasa support - feature request

    With the export modules in Bridge CS5, I can export to Facebook, Flikr, Photoshop.com and my hard drive.
    I request an export module for Picasa Web Albums - or at least release an export module sdk (is there one? - if so, I haven't been able to find it), so someone (like google) can make an export module for Picasa.
    With an sdk, the online community or companies could create any export module for most any need - what about twitpic or tumblr or...
    it's very possible that I'm missing something here, so please set me straight if need be.
    just a suggestion -
    j

    With CoolEdit I could use the RME Digi96 soundcard together with Digicheck.
    But with Au I can not. A pity...

  • OSX: multi client server app with NSNetService

    hello
    i have a small osx server app
    that uses NSNetService to manage connection and set up streams
    but it seems to stop advertising as soon as a clients connects
    how can i make it multiclient so it keeps advertising and when a new client connects uses the same streams ?
    thanks in advance
    nonnus

    superdeportivo wrote:
    Hello fellahs, as the title of this post says I'm making a client and server application. The server are supposed to handel several clients, and the communication is done true UDP. Out of interest why have you chosen UDP rather than TCP?
    I have got two questions concerning this. The first one is if a exception is throws in the server should I then send the exception back to the client in serialized form. If I choose to do this then I also would need to handel the exception classen to the client. Or should I send back a regular IOException and use it's init cause to define the exception which occured in the server. That is up to you, you can do either. I would do the first option.
    The second question is concerning the multi client support. If this is going to work then I would need to time-out the connection i the server environment, and I have not a clue about how long it should be?It should be long enough that you don't timeout a valid connection. There is no simple answer to this.

  • OS/X RDP client feature request - Applescript support

    The new OS/X RDP client is very nice overall, but it can't be easily scripted. You can get most of the way there using OS/X UI scripting:
    tell application "Microsoft Remote Desktop"
    activate
    tell application "System Events"
    set frontmost of process "Microsoft Remote Desktop" to true
    tell process "Microsoft Remote Desktop"
    keystroke "f" using {command down}
    keystroke "a" using {command down} -- select all
    key code 51 -- delete
    keystroke item 1 of argv --search query
    keystroke tab
    key code 126 -- up
    key code 125 -- down
    key code 36 --enter
    end tell
    end tell
    end tell
    But UI scripting is brittle. For example, the recent update to the RDP client pops up a dialog box announcing the new changes - that breaks the UI scripting. You have to launch the app and clear the dialog box before the UI scripting starts working again.
    It would be much simpler and far more reliable if the OS/X RDP client supported Applescript to both list desktops and to connect to a desktop. 
     

    Hi,
    Thanks for the feedback and I will forward your concern to the product team.
    Best Regards.
    Jeremy Wu
    TechNet Community Support

  • SSLSocket to support NIO - feature request voting

    Hello All,
    I know there were many discussions here regarding this subject.
    I've seen the SSLEngine solution for the problem... But I didn't like it since it is too complicated.
    For my understanding SSLSocket inherits Socket so an application that can handle Sockets should be able to handle SSLSocket without writing a specific code besides the factory.
    NIO allows Socket to be none blocking... So why SSLSocket which is a Socket does not?
    If I write a Web server in Java, why should I deal with none SSL and SSL connections in a different way?
    I recently wrote one threaded NIO server and was amazed that I could not use SSL with the same implementation.
    I've opened a feature request for Java, but they told me to gain support for this subject here before they will consider it...
    As I understand I can re-implement SSLSocket to use SSLEngine and support NIO with blocking and none blocking support... But I think Sun should do it.
    One caveat is to make sure that the SSLSocket HandshakeCompletedListener should be called by a daemon thread, so that it will not block other sockets while certificate verification occur.
    Of course when I refer to SSLSocket I also refer to SSLServerSocket.
    Can you please comment regarding this issue... Every comment will be welcomed!
    Best Regards,
    Alon Bar-Lev

    nah, I am very glad they released an engine separate from transport allowing encryption on any transport.
    I am also working on an abstraction of nio that you may be interested in if you don't want to do the security yourself......it is here...
    http://sourceforge.net/projects/channelmanager
    Right now, it only contains the api, but there are 3 implementations behind it right now with 3 to be added.
    1. Basic implementation that does just nio
    2. Secure implementation that implements same api and uses implementation 1
    3. Packettizer implementation which puts things in payloads with headers and footers
    4. (to be added) Threadpool implementation allowing a threadpool to be inserted in the stack somewhere
    5. (to be added) TestProxy implementation allowing exxceptions to be thrown on purpopse to test a system on a bad network....can test failure on bind, connect, read, write, etc....everything.
    6. denial of service layer.
    7. Exception catch layer to protect #1 and #4 mainly from bad clients that throw exceptions back to the channelmanager.
    Each one of these layers (2 - 4) implements the same api and uses the same api so 2 -4 are all proxies. You can reorganize the proxies as you want.
    The secure one is almost done. Any comments on the api will be welcome.
    thanks,
    dean

  • Feature request : import of multi-line notes in CSV or tab-delimited file

    This is a feature request to the AddressBook development team:
    Following a question posted here and asked to support (thanks to Barry and Julia from ADC), it turns out that AddressBook is not ready yet to import multi-line notes from a CSV or tab-delimited file.
    I would like to kindly suggest the AddressBook development team to update the import methods for such flat files to parse the text of what is assigned to the Notes field, and convert documented escape sequences to their pre-determined corresponding special character.
    I would think that the following would be pretty easy to implement, and easy for the targeted audience (enthousiasts power-users and up) to remember:
    "\n " : mark a new line (same as ^p in Word)
    "\t " : replace by a tab
    I would keep the trailing space to avoid problems with DOS-type file path problems.
    and of course...
    "\\n " and "\\t " for whoever would want to import notes about \n and \t
    For example, in a Notes column, the text:
    "Escape sequence \\n :\n move the text to a new line\n \n while escape sequence \\t :\t move the text to the next horizontal tab"
    would give the following (just consider text between <Note> marks):
    <Note>
    Escape sequence \n:
    move the text to a new line
    while escape sequence \t: move the text to the next horizontal tab
    </Note>
    Thanks for reading...
    Frédéric Denis

    The developers do not necessarily read these USER discussion pages. If you want to make suggestions and know they will be read (which is at least a step towards implementation) use the OS X feedback page.
    AK

  • Feature request: more xpath support in XMLElement

    Hey guys,
    Just wanted to submit a feature request. I'm trying to write code to find the number of Invocation service threads that Coherence uses. It would be very nice if I could use XPath syntax such as the following:
    getSafeElement("cluster-config/services/service[@id='3']/init-params/init-param/param-value")
    Since the API doesn't support that, I have to resort to something like the following:
    XmlElement services = com.tangosol.net.CacheFactory.getClusterConfig().findElement(
            "cluster-config/services");
    List servicesList = services.getElementList();
    for (Iterator i=servicesList.iterator(); i.hasNext(); ) {
        XmlElement element = (XmlElement)i.next();
        if (element.getAttribute("id").getInt() == 3) {
            XmlElement value = element.findElement("init-params/init-param/param-value");
            System.out.println("invocation threads: " + value.getInt());
    }I haven't quite gotten that to work yet, but it's probably close. :)
    Thanks,
    Matt

    Matt,
    There is a helper function in com.tangosol.run.xml.XmlHelper class that makes it almost as easy as using the XPath.
    XmlElement xmlCluster    = CacheFactory.getClusterConfig();
    XmlElement xmlInvocation = XmlHelper.findElement(xmlCluster,
            "cluster-config/services/service/service-type", "Invocation");
    XmlElement xmlThreads    = XmlHelper.findElement(xmlInvocation,
            "../init-params/init-param/param-value");
    System.out.println("invocation threads: " + xmlThreads.getInt());Regards,
    Gene

  • Feature Request: VPN Portal with ability to download vpn client

    Hi i have an feature request to improve the ISA experience.
    Can you provide an vpn user login portal. When the user login he/she will be able to download the anyconnect directly from the firewall.
    The same function is found on the Cisco ASA devices, even the RV series installs and SSL VPN client from a portal. I would not expect it to have a deep customization as the asa series but more the ability to let mobile users be able to connect using a regular browser and download the client them self if they don't have it.
    BR: Alex

    Hi Alex,
    Thank you for your feedback.  I will pass this along. 
    Thanks,
    Brandon

  • Feature request: Slideshow module support for video files

    I'm very excited about your MTS support!
    Feature request: Slide show module  support for video files...
    Say you have 10 takes to choose from. Are you able to almost like SLIDESHOW view the 10 clips full screen so you can decide, like a playlist? Or rate them as they play? It would also be great, like SLIDESHOW to be able to export a MP4 with a title, the 10 clips you are working with, and maybe add an end title and a song, just like SLIDESHOW.
    I have found editing stills like this in slideshow far faster than in any other editing program.
    Basically, I just need a fast means to view or export an MP4 of a set of video clips to review. You are almost there.
    great job!!!
    Max

    I was also disappointed that video is not supported in the slideshow module -I currently have to use another solution when I want stills mixed with videos, would be great to be ablo to keep it all in LR!

  • Feature Request: iTunes support CD drive letters A&B

    Not sure how to submit this feature request to Apple for iTunes for Windows enhancement so I figured I would start at the forum.
    I know in the "dark ages" drive letters A&B where pretty much reserved for floppy drives. Not sure how many computers are actually still in use running Windows XP and up that still have one of those drives.
    Therefore, for some time now these two drive letters have gone unused. C: in general was the first HD letter, and CD-Roms (or now DVD/Blu-Ray) drives started somewhere with D: and above depending on your computer configuration.
    I changed my setup a while ago and named my two DVD drives A & B since Windows supports it just fine, as do a lot of other programs, with the exception of iTunes :-(. For some reason, iTunes will not support reading CDs from drives A or B, even if Windows autorun feature is enabled asking if it should import the CD into iTunes. Apple, what's up with that? Why actual restrict reading music from CD drives assigned letters A & B? Is this an old piece of code still lingering around in iTunes?
    So, simple feature request for an upcoming iTunes release, please enable reading/important CD music from drives labeled A&B so that we can start using these letters again as well.
    Anybody else want to support this simple request that should be fairly easy for Apple to implement?

    We're a user-to-user community, so there's no guarantee that an Apple person will see your request. But you can make enhancement requests directly to the Apple folks if you like. Here's a link to the iTunes product feedback form:
    http://www.apple.com/feedback/itunesapp.html

  • Feature request: Support for more than 2 monitors

    I currently use an external monitor for my critical editing/evaluation as my iMac display doesn't reproduce reds very well. I understand newer iMacs can support 2 external displays, obviously desktop machines can support as many displays as there are open slots for video cards.
    While editing a photo shot in portrait on a monitor set for landscape is not a problem, it would <really> be cool to have two external color-accurate monitors for developing/loupe views, one oriented in portrait, one in landscape, with the third (iMac in this case) showing the develop controls. Even if the two external monitors showed the same image, one would always be fullscreen in the correct orientation.
    MacOS and Windows both give the user control over all the displays connected to a given system, so driving a portrait and a landscape monitor simultaneously shouldn't be a problem from an OS/hardware standpoint.
    Is this something that can be rolled into LR4?
    Respectfully,
    Andre

    I use 3 or 4 monitors too, so that's one I'd like to see too.  We wouldn't want the request to get lost in beta land, so might I suggest adding the request to the Feature Request forum http://feedback.photoshop.com/photoshop_family where it can easily be tracked?  If you post the link to your request here, others can also vote on your request. 

  • Feature Request: support previews for png files

    hello,
    i like to see previews supported for png files.  This is a common file type and should be supported  Especially since it is one of the options supported for export to creative cloud from photoshop touch.  It would make a lot more sense.
    Thanks.

    You would want to go here for feature requests: Photoshop Family Customer Community
    Gene

  • Feature Request: Support for External Synths/Modules (via MIDI)

    Hi,
    I just posted a feature request (via the Apple Feature Request form) but also wanted to post here. I use a combination of hardware instruments (sound modules) and software instruments.
    *My Setup*
    - Keyboard #1: M-Audio Axiom 25 (also includes a USB MIDI interface)
    - Keyboard #2: Roland A-33 Controller Keyboard (via my Axiom-25's MIDI In)
    - Edirol USB MIDI Interface (sound modules plugged into MIDI Outs)
    - Sound Module #1: Roland JV-1080
    - Sound Module #2: Yamaha TX802
    MainStage currently takes care of all my software instrument needs, however, what is missing is the ability to add external physical MIDI devices as either patches or as channel strips. I would like to use a combination of software and hardware instruments in the same song, and control this via Mainstage.
    Example:
    - Patch 1 could potentially contain 2 software instruments, each seperately controlled by a physical keyboard (this is currently possible)
    - Patch 2 could contain 1 software instrument and 1 external sound module each controlled by a physical keyboard (this is currently impossible)
    - Patch 3 could contain 2 external sound modules, mapped to different ports and/or channels, and therefore independantly controlled by my 2 keyboads (this is also currently impossible)
    Would I be correct in assuming that this is a fairly common limitation of MainStage?
    Message was edited by: olafwagner

    I have achieved MIDI out from Mainstage, thank to the information found on this forum..
    what I actually do is send Prg Change from every preset I select to control a hardware vocal harmony pedal. this way i don't have to remember which setting i use on every song or even, section of a song.
    *Step 1:*
    Library>application support>Logic> create a folder named precisely MAINSTAGE CALLBACKS
    inside of it, create an applescript with this code
    on action(parameter)
    set myprogramchange to programchangenumber of parameter
    tell application "MidiPipe"
    MIDISend toPort "MidiPipe AppleScript Input" withData {192, myprogramchange}
    end tell
    end action
    *step 2*
    download MIDIPIPE from http://homepage.mac.com/nicowald/SubtleSoft/
    and install it in your apps folder
    *step 3*
    start midipipe, and define the following modules
    MIDI IN-> use applescript input from menu
    MIDI OUT-> route to your midi interface desired output
    save this to a Midipipe file you can easily access
    Now, when I go to a gig I FIRST (this is important) load midipipe and my preset, and just hide it and let it work in the background
    Start mainstage, and set the program change of every PATCH to what I want to be sent over MIDI OUT when I enter the preset (-1 if needed or modify the previous applescript).
    Ok, this just gives you Prg change... if you want something like CC or others, you can look at some of the example files on midipipe, and write your own applescripts to be used from a control within mainstage (you know, select a screen control, and assign it to an applescript located in library>application suport>logic>Mainstage scripts. you have to tell the applescript to receive incoming data from mainstage and send it (with even some filtering or transforming) to midipipe to go to the outside world.
    One last idea: i used a free plug-in called MIDIIO that, although the plugin analysis on mainstage might say does not pass, you can use it anyway, and lets you insert it as if it was a plugin instrument...then you just route your screen controller to a MIDI parameter on that track, and there you go...but in the past it was not as solid as the midipipe solution.
    I am still investigating...I am pursuing having my hardware controller knobs to follow screen settings everytime I just change a patch, but lack some info on how to get parameter values when entering the patch ¿anyone knows, blueberry, zuelito...? I promise to share the results!
    best

  • Feature request - Support for rewire

    Obviously a lot of musicians use Flash Media Live Encoder so I was wondering if FMLE supports Rewire (from Propellerhead Software). I am aware Adobe does implement rewire into audition but what about FMLE?
    I want to be able to use my audio app plugins and for rewire to appear as an option as the audio source so I can get reverb and effect on my vocals / guitar,
    I would think this would be a popular feature going forward.
    Is it possible? IF not what are the chances of adding support? Where should I make a feature request if this is not the appropriate place?
    Thanks
    Paul

    Hi,
    I've logged an enhancement request on this.
    Thanks,
    David

Maybe you are looking for

  • Unable to deploy ADF application to weblogic server

    Hi, We are developing ADF application using jDeveloper 11.1.1.1 and deploying to Weblogic Server 10.3.1. The application is working without any problems on 10.3.1 wblogic platform. We procured new 64 bit hardware and installed weblogic 10.3.2 and jde

  • PP - PI Process order - Technical complete problem

    Hi Gurus, I have created process order and generate Cont.recepie. Then I tecnical complete my PI sheet after report data. when i set technical complete in my process order. system says "It cannot be technical completed because status "CRCR" Contrl re

  • Appending custom search help

    Hi, I have appended a custom search help to std collective search help C_SAKNR, which is assigned to data element SAKNR. The reason to append custom search help is when the user presses F4 on G/L account field on ME51N transaction, there should be an

  • BOM exlosion date and basic scheduling date

    HI gurus, I am new for SAP, and I currently learning basic date scheduling and BOM explosion. My doubt is if during requirement planning bom is exploded to determine requirements then, why again on basic start date bom is exploded? if this is only in

  • Hierarchy Reporting

    Hi , I built a hierarchy..But it is not showing up in the Query Designer.I did flat file upload for the hierarchy and then maintained the structure.But it is not showing up while reporying. Can anyone help me with this .. Thanks , kiran.