Compatibility with multiple inputs

i've been thinking about buying a firewire 1814 (made by m-audio), but i'm curious as to whether it will work with LE 7. especially with an intel-based macbook pro. (i've heard bad stories of people buying these devices but they are not intel compatible)
my thinking was that you can plug up to 18 inputs in and play all at once and it will seperate it all into one track for each input. i think it works this way with cubase, but how about LE7?

m-audio 1814 is compatible with Intel macs
http://www.m-audio.com/index.php?do=support.drivers

Similar Messages

  • JSP FORMS WITH MULTIPLE INPUT ROWS

    HI,
    I NEED USE A FORM IN JSP WITH MULTIPLE INPUT ROWS TO IMPLEMENT A SALES ITEM PROGRAM.
    I HAVE TRIED WITH INSTRUCTIONS -- WHILE AND DO.. WHILE -- BUT TOMCAT 4.0 DOES NOT PROCESS THEM CORRECTLY BECAUSE IS IN A DEAD LOCK.
    ANY BODY CAN HELP ME?

    Thank you. But i don?t use caps lock. My program look like this:
    <form method="pos" action="echo.jsp">
    <table align="center" cellpadding="0" cellspacing="0" border="1" width="100%" bgcolor="#ffffff">
    <tr>
    <th class="titulo3">C?digo</th>
    <th class="titulo3">Descripci?n</th>
    <th class="titulo3">Nivel seguridad</th>
    <th class="titulo3">Moldes</th>
    <th class="titulo3">j</th>
    </tr>
    <%
    do {                    
    %>                                   
    <tr>
    <td class="titulo3">
    <input name="codigo" type="text" size="10" maxlength="10">               
    </td>
    <td class="titulo3">
    <input name="nombre" type="text" size="30" maxlength="100">               
    </td>          
    <td class="titulo3">
    <SELECT NAME="codopc" >                         
         <OPTION VALUE="nivel1"> Nivel 1                
         <OPTION VALUE="nivel2"> Nivel 2      
         <OPTION VALUE="nivel3"> Nivel 3
         <OPTION VALUE="nivel4"> Nivel 4
         <OPTION VALUE="nivel5"> Nivel 5           
    </SELECT>                                    
    </td>     
    <td class="titulo3">
    <input name="moldes" type="checkbox" size="30" maxlength="20">          
    </td>     
    <td class="titulo3">
    <input name="moldes" type="text" size="10" maxlength="20" value="<%= j %>">     
    </td>                                   
    </tr>               
    <%
    } while ( newlines );
    %>                                        
    </table>
    ....... more code about submit and clear buttons...
    </form>

  • How do I create an xControl with multiple inputs and outputs?

    Hello,
    i am trying to write a new Xcontrol Element. In the data model I can create data types using the cluster to create compound types, eg an int and an int array. But how do I create an xcontrol which has multiple data inputs and outputs?
    Kind Regards

    Limping_Twerp wrote:
    Alright: I see: An xcontrol is either an input OR an output. How do I achieve an output? Secondly: So you are saying the only Elements that can have multiple inputs and outputs are VIs?
    Can you take a few steps back and explain what you are actually trying to do. SubVIs and Xcontrols have nothing in common and it is not clear why you even try to compare them side by side (e.g. in terms of the number of connectors).
    Your questions about input or output tell us that you seems to have some misconceptions about xcontrols. Xcontrols are like regular controls, except they have some built-in intelligence that you can program. Most front panel object can be either controls or indicators and the same is true for Xcontrol. You create an Xcontrol, and after placing it on the front panel you can decide if it should be a control (where the code reads the value) or an indicator (were the code writes values to it). When you define the xcontrol facade, you also need to program how the visuals change if it is changed from control to indicator or vice versa.
    As a first step, you should opend the example finder and look at some xcontrol examples.
    Again, what are you actually trying to do? 
    LabVIEW Champion . Do more with less code and in less time .

  • Planning Folders with multiple input and output layouts

    Hi,
    I have a planning folder with one input layout and 4 output layouts. The input layout has a GPS assigned to it which will be executed before layout change. Will this function get executed when I open any of the output layouts(out of 4) not necessarily the immediate output layout (next to the input layout) and will the calculated data be displayed accordingly. Can some one please confirm me on how that works.
    Scenario2: I have one input layout and 2 output layouts. The input layout has a GPS assigned which will be executed before layout change and the first output layout has another GPS assigned which is basically a push button. Then how does this work.
    Points will be assigned . Help is greatly appreciated.
    Thanks,
    Vamsi

    GPS will not be executed when you open any of the output layouts but will be executed only when you open the input layout. Yes, the calculated data gets stored in planning buffer so it will the displayed in input/output layouts accordingly.
    Scenario2: The GPS assigned to input layout will be executed when you open the input layout. GPS which is assigned to output layout in the form of a button will be only executed when user will click on that button. Calculated results will be available in all the layouts as the result remains in planning buffer until user explicitly click the 'SAVE' icon in applpication toolbar.

  • Problem with multiple inputs / sequential shaders in flash

    Hi,
    I'm working with pixelbender for the first time and having a little difficulty understanding a couple of things.
    The project is a little flash game with pixel art spaceships, and I've embedded a couple of pixelbender shaders into the swf. I'm writing an editor where you draw an rgba image, the editor infers a greyscale heightmap (at the moment this is done in flash with a blur handcoded using getPixel/setPixel) I use that height map as the source image to make a normal map via a pixel bender shader, I then have another pixelbender shader waiting to take the rgba image and the normal map as two inputs, add a few parameters, with the expected result of a nicely lit sprite output.
    The first problem is accessing the result of the normal map shader to pipe it into the lighting shader. The normal map displays perfectly on screen, but my normalMap.bitmapData still contains the unmodified height map image, how do I get at the post-filter image data to send it to the next shader?
    The second problem is a bit trickier.. I first thought it was just a minor bug in the pixel bender toolkit, compiling for flash when using multiple source images has an issue where only one source image is scaled. I thought the problem would go away eventually because I am using two identically sized bitmaps for source. However, now that it is in a swf, the output is inside a sprite, and this parent sprite has scale and rotation applied to it. The shader output shows one scaled and rotating image mixed with an unscaled, unrotating image in the top left corner. Even if I make a new sprite, and apply the filter before applying the scale / rotation, the effect persists. This does not seem to effect shaders with a single source - they can be scaled and rotated freely. Is there any solution for this short of ditching the two input shader altogether?
    I'm hoping i've missed something simple, but any help at all would be appreciated, thanks.

    Sorry for the double post, after a bit of further experimenting I've swapped the order of the two source bitmap parameters, the result is now spectacularly wrong when running as flash within pixelbender, but still fine as GPU or CPU... if someone could tell me exactly why this is breaking it would help a lot with my other problems:
    <languageVersion : 1.0;>
    kernel dotLight
    <namespace : "com.bludgin"; vendor : "Bludgin"; version : 1; description : "vector based directional lighting";>
    input image4 rgbmap;
    input image4 nmlmap;
    output pixel4 dst;
    parameter float ang< minValue:0.0; maxValue:6.283; defaultValue: 0.0;>;
    parameter float3 lgt1 <minValue: float3(0.0, 0.0, 0.0); maxValue: float3(5.0, 5.0, 5.0); defaultValue:float3(1.0, 1.0, 1.0); >;
    parameter float elev<minValue:-2.0; maxValue:2.0; defaultValue:0.5;>;
    parameter float spread<minValue:-1.0; maxValue:5.0; defaultValue:1.0;>;
    parameter float amb<minValue:-0.0; maxValue:1.0; defaultValue:0.2;>;
    parameter float clip<minValue:-1.0; maxValue:1.0; defaultValue:0.0;>;
    void evaluatePixel() {
    dst = sampleNearest(nmlmap,outCoord())-0.5;
    pixel4 col = sampleNearest(rgbmap,outCoord());
    float4 light = float4(cos(ang), sin(ang),elev,spread);
    float dp = dot(normalize(light),normalize(dst));
    dp = max(dp,clip);
    dst = float4(  col.r*amb + col.r*dp*lgt1.r,
                    col.g*amb + col.g*dp*lgt1.g,
                    col.b*amb + col.b*dp*lgt1.b,
                    col.a);
    a couple of test images to try with it:
    http://evilbastard.org/slight/shipTestNormal.png
    http://evilbastard.org/slight/shipTestRGB.png

  • Invoking a LiveCycle process with multiple input variables using REST

    Hi all,
    A simple scenario brushup:
    I have an LC process that takes as input 2 parameters:
    - formID
    - formXML
    The user starts out with an empty interactive form and fills out some info in this form. In the end he/she clicks submit and now I want to invoke my process to create a flattened form from the XML just entered in the interactive form.
    The process returns a flattened form with the data merged with the XDP template referenced in formID. Simple as that.
    What I basically need is to do something similar to the following in a LiveCycle Designer Form:
    ------------------------------------Snippet from http://help.adobe.com/en_US/livecycle/10.0/ProgramLC/WS624e3cba99b79e12e69a9941333732bac8- 7fe5.html ---------------------------------------------------------------------
    <html>
    <body>
    <form name="input" action="http://localhost:9080/rest/services/RestTest3" method="post" 
             enctype="multipart/form-data">
    Doc: <input type="file" name="inDoc">
    String 1: <input type="text" name="inListOfStrings" value="hello">
    String 2: <input type="text" name="inListOfStrings" value="privet">
    <input type="submit" value="Submit"/>
    </form>
    </body>
    </html>
    ------------------------------------End snippet from http://help.adobe.com/en_US/livecycle/10.0/ProgramLC/WS624e3cba99b79e12e69a9941333732bac8- 7fe5.html ---------------------------------------------------------------------
    Now my question to you is (hope you can help out here):
    How do I invoke this process from my form using the REST endpoint - I need to specify 2 input variables for my process. One string (formID) and some xml (formXML). How is this done in Designer?
    Thanks in advance
    Kim Christensen
    Dafolo A/S
    Denmark

    Bump...
    Nobody who has an idea of how to do this?
    Thanks in advance
    Kim Christenen
    Dafolo A/S
    Denmark

  • Using an audio interface with multiple inputs

    Hi,
    I'm currently facing an issue where I need to be able to use the audio from a microphone and a keyboard through Skype calling. I have them both plugged in to a Focusrite Saffire Pro 24 audio interface. The problem is that only the microphone plugged into input 1 seems to be coming through, as if Skype will only address one channel of the interface. Is there any way around this or a different method you have used in a similar situation?
    Thanks,

    I stumbled upon this thread in searching for some deeply hidden feature in Skype, but alas, there may not be a fix within Skype.  I realize the parent topic is very old, but I hope this can hope anyone in need of a solution (or get skype to incorporate some sort of summing feature).
    That being said, there is an alternative for those of us with interfaces that have fully customizable routing.  Fully customizable routing, and more than your standard two (stereo) outputs, and at least one more input than you need in total for microphones.
    What we're going to have to do for our podcast (one member is on vacation, states away), is hook all microphones into inputs that are not input 1. As far as I can tell, Skype will only recognize input 1.  In your interface's output routing software, you will need to create a submix/monitor mix (whatever they will call it) that sums (combines) all of the microphones together.  While you have the ability to add the software/daw return to this mix, you typically will not want to, as it could create feedback for the person joining the conversation via skype.
    After you have created this submix/monitor mix (and be sure to double/triple check that input 1 is not involved with this mix at all) you will assign this to an auxiliary output... so say, your interface has 4 outputs, assign it to output 3.  Then lead a cable from the physical output 3 into the physical input 1 on your interface.
    What this accomplishes is we're effectively sending all microphones into input 1, so your Skype recipient will be able to hear a mixdown of all microphones.  Certain interfaces will also allow you to do this routing without cabling.
    There are more things to keep in mind, like if you're recording the call, you'll want to run a parallel output from your Main DAW/Software return into another physical input, but again, quadruple-check that you are not monitoring that track into your main buss as it would create a horrible feedback loop.  Generally I'd have the caller record their audio through Audacity or something free, but getting their recording on my end makes for syncing the call to the room recording so much easier... SO MUCH.
    TL;DR
    1) Make sure you have more than 2 outputs, and 1 more input than you would normally need for mic's.
    2) Plug microphones into inputs 2 and on, saving input 1.
    3) Use interface's software/routing mixer to sum all microphone inputs (EXCEPT 1) to an unused physical output.
    4) Route or connect that output into Input 1.
    0-5) For the love of all audio gods, make sure you are double checking to avoid feedback.
    I also recognize that with the appearance of things like WavTap and Soundflower that there are other solutions -- but this is one option for those of us that do not wish to explore those options.

  • JOptionPane with multiple inputs

    Well, I want to know , if someone can help me with JOptionPane, I need a windows of JOptionPane.showInputDialog (), that reads
    3 inputs in the same window, I mean if I can have three Input Spaces in the same window.

    Zerokid wrote:
    by the way, is it easier to do it with JFrame or JOptionPane?I don't understand this question. You are wanting to create a dialog that allows the user to input into three fields, correct? You won't use a JFrame to create a dialog. You could do this with a JDialog, but a JOptionPane is somewhat easier to use here.

  • JOptionaPane with multiple inputs

    I have to use a JOptionPane that can return two string values. Its like user can enter the name of a feature & then under, can give a description of feature. Will be nice if I can show two radio buttons also.
    Thanks for any help.

    Sam_Fin wrote:
    thanks a lot sir.
    One more thing, by placing JComponent into JOptioPane you mean I should give it as a parameter to which instance of it. Mean I use JOptionPane. ShowInputDialog. Yes I mean create the JPanel, and pass it to the JOptionPane via the second parameter of say the ShowInputDialog. Then after the dialog returns (the next line), you can query the panel's components for all of their values.
    Can you just just one line JOptionPane so that I can understand which one & how to use.I'm a big fan of you just trying it first then coming back if it doesn't work. You get much more out of it.

  • How can I write unit tests for BizTalk Maps with multipe inputs?

    I want to bring all my maps under unit test coverage, but can't seem to find a way to test maps with multiple inputs. Maps with multiple inputs are first merged into a single schema by biztalk and then the map actually uses that inline schema as source.
    What I tried is- produced a generated instance of source schema by clicking "Test Map", and then modified the skeletal instance by stitching together the multiple input files into it. There are two problems I am facing going forward that way- 1#
    It takes a lot of time to craft a mock input of inline schema and 2# the mock input fails input validation although the input works just fine in the orchestration.
    So is there a better or standard way to test such Maps?

    For testing maps with multiple inputs, follow the below steps-
    Lets assume you have a map with two input schemas A and B and output as C.
    1) To create the required schema just reverse the inputs i.e. make a map with C as input and A & B as output. Later do a test map. This will generate an XML File with schemas A & B. 
    2) Now you just to need to replace OutputMessagePart_0 to InputMessagePart_0
    and OutputMessagePart_1 to InputMessagePart_1
    Later you can use this xml for testing your original map.
    Refer the below article
    Developing and Testing Maps which have Multiple Source and Destination Schemas
    Thanks,
    Prashant
    Please mark this post accordingly if it answers your query or is helpful.

  • Synchroniz​ing two counter frequency inputs with multiple analog inputs

    Hello all,
    I'm fairly new to LabVIEW and I'm trying to collec​t data from multiple sources with synchronized tim​ing on the acquisition but I'm having trouble figu​ring it out. My problem is that I've got two count​er frequency inputs, one optical tachometer readin​g one pulse per revolution, and a max machinery fl​ow meter with a k factor of 12000. I can't seem to​ figure out how to sync the timing with my multiple analog inputs. I've be​en attempting to get the tachometer  to sync with ​the analog inputs first by following the example l​inked here. (https://decibel.ni.com/content/docs/DOC-10785) So far each time I run it I either get a timeout e​rror on the DAQmx read or a "Multiple sample clock​ pulses were detected" error (see attached image).  It seems if I slow the sampling rate way down to ​say 10 hz and ensure that the tachometer signal is​ over 800-1000 RPM (13-17 Hz) before starting the VI then the program will run without errors until ​the RPM drops below that threshold then the "Multi​ple sample clock pulses" error occurs.  The code is attached below.
    Does anyone know of a more effective way of syncin​g counter frequency inputs with analog inputs?  I'd like to have a VI that can show 0 RPM (and ev​entually 0 flow as well, but I think I need to fig​ure out the timing of one counter before I add ano​ther as it seems I can't have two counters in the ​same task). Any help on this would be greatly appr​eciated.
    LabVIEW version 13.0
    cDAQ-9178 Chassis with NI 9401 for the two counter inputs and NI 9205 for the analog inputs.
    Thanks!
    Richard
    Solved!
    Go to Solution.
    Attachments:
    SimpleDAQ.vi ‏44 KB
    LV_Error.JPG ‏31 KB

    Maybe third times the charm? 
    So I've finally got a good handle on why the VI is having problems at low RPM though I'm somewhat embarassed how long it took me to do that
    Because I have the counter time synced to my Analog input task if it doesn't see at least two pulses between the two clock pulses set by the analog input task I get the -201314 "Multiple sample clock pulses" error. This seems fine at first as it just sets a minimum RPM that I can measure and it's well below the area I'm interested in so no problems there.  I tried a simple error handler that would clear the error when it happend assuming the loop would keep iterating until the RPM went above that minimum at which point I would get a signal again. This is not the case, the read function just continues to spit out the -201314 error even after the RPM is back in the readable range. So then I tried adding two case structures so that when the error occured it would stop the task, clear the error, and then start the task again on the next loop iteration (Code Attached). This also doesn't work as the error shows up again on the stop task and then AGAIN on the start task on the next loop iteration. It seems this error is not actually being cleared and once it happens it stays with the task regardless of what the error cluster is carrying. 
    Anyone have any ideas?  The only solution I can think of is to just clear all tasks and recreate them each loop iteration until the RPM is readable again but that strikes me as a horribly clunky solution.
    Richard 
    Attachments:
    SimpleDAQ_1_Start Stop.vi ‏48 KB

  • How to make a Input Field with multiple lines?

    hey folks,
    i need to make a popup window or a dynpro with 2 input fields, where the user can write on multiple lines. why isnt there such an input field in the screen painter? how can i make this? if i can do this with a dynpro it would be nice but a popup with that feature would be better. didnt found any infos anywhere except for that thread, but its answer didnt work with my dynpro:
    How to make a input/output field with multiple lines
    thx for any helping answer

    i made it just like in that thread but there is an error message telling that gv_custom_container is not declared.
    *  MODULE status_0110 OUTPUT
    MODULE status_0110 OUTPUT.
      CREATE OBJECT custom_container
        EXPORTING
          container_name              = 'TEXT_CONTROL'
        EXCEPTIONS
          cntl_error                  = 1
          cntl_system_error           = 2
          create_error                = 3
          lifetime_error              = 4
          lifetime_dynpro_dynpro_link = 5.
      CREATE OBJECT text_editor
        EXPORTING
          parent                     = gv_custom_container
          wordwrap_mode              = cl_gui_textedit=>wordwrap_at_windowborder
          wordwrap_to_linebreak_mode = cl_gui_textedit=>false
        EXCEPTIONS
          error_cntl_create          = 1
          error_cntl_init            = 2
          error_cntl_link            = 3
          error_dp_create            = 4
          gui_type_not_supported     = 5.
      SET PF-STATUS 'STATUS_0110'.
      SET TITLEBAR 'TITLE'.
    ENDMODULE.                    "status_0110 OUTPUT
    Edited by: rafe b. on Oct 26, 2009 2:56 PM

  • I want to validate multiple input type=text with spry validation any one hepl me?

    I want to validate multiple input type=text with spry validation any one hepl me?
    my code is as below plz help me
               *Professional Experience             Years        Months                             

    Read;
    http://labs.adobe.com/technologies/spry/articles/textfield_overview/index.html
    http://labs.adobe.com/technologies/spry/widgets/textfieldvalidation/SpryValidationTextFiel d.html
    and check out the samples:
    http://labs.adobe.com/technologies/spry/samples/

  • Distinguish the input with multiple argus

    hi all,
    here i have a question about programming a SMTP email client using the command-line for the user input.
    it requires distinguish the input with multiple argus, regardless upper case or lower case and the order of some critical key words, for example: "from:", "to:", "subject:", and "body:", this means the user input "ForM:" or "fOrM:" should recognize as a same "form:" string.
    in addition, the command-line is as follow:
    +java MyPMC To:[email protected] From:[email protected] Subject:Hi Body:See you at library a
    and
    java MyPMC froM:[email protected] TO:[email protected] suBjecT:Hi body:See you at library at 1
    should work exactlly the same (assumming the java file name is MyPMC), how can i achieve this task.
    please anyone can help me or give me some hints to do so.
    thanks a lot.
    Max

    String.equalsIgnoreCase perhaps. If this is not the solution you are after perhaps you can explain yourself better.

  • How do I generate URL with multiple variables from input fields?

    I'm creating an ad with four input text fields labels fname, lname, city and prov, and I wanted to know how to generate URLs based on information entered into the fields. The text fields default to display "First Name," "Last Name," "City" and "State," respectively, but if a user does not enter information in those fields, I want the URL to behave as if those were empty, if that makes sense. The text fields are in a movie clip called "input_text" and the button is labeled "send". If any of you can provide insight, I would be greatly appreciative. Thank you.

    1. use if-statements to see if the text properties of your textfields meets your requirements for creating that url.
    2. you can use the flash string methods and properties to create your url.
    p.s.  the plus sign + can be used to concatenate strings.

Maybe you are looking for