I can't watch the analog inputs in hearing CC 2014

I have a M-Audio M-Track more USB audio interface. Digital interface output is connected via coaxial RCA to my receiver. The analog inputs normally receive a signal from a phono preamp line, since I transfer a lot of vinyl to the computer to listen to in my car and my phone.

The thing that I'm trying to understand is why the hearing does not allow me to monitor the analog inputs. I can monitor them very well when I use Studio producer One of the Presonus. But the hearing does not allow me to follow, although it does not record the signal and then I can read.

The audio device at the hearing, I've chosen is the ASIO of M-Audio driver. Under audio mapping I can't select anything other than the analog inputs and outputs. It is not an available digital output, which could be part of the problem, perhaps hearing does not allow the signal to convert analog inputs to the digital output. However, as I said a producer Studio control perfectly well, so the analog/digital real-time monitoring is allowed by the device.

My hardware is PC with Windows 8.1 Pro 64 bit, i7 3930 k, 32 GB RAM, card mother Asus P9X79 Pro, and some other stuff that wouldn't really make a difference in this problem.

Any ideas?

Thank you

Sebastian

Try recording in multitrack view and by clicking on the little 'I' (Input) button at the left end of the track.  It should route the signal from input to output for monitoring.

I have the background track M, no more, so I can't try it but I think it should work but with a bit of latency (which shouldn't be a problem since you're not dubbing.

Tags: Audition

Similar Questions

  • I can't find the analog input module

    LabVIEW 2014: I installed the driver NOR-DAQmx base 15.0, but I can not find module.does to analog input, someone knows how to install Labview analog entries in 2014.

    alenter wrote:

    LabVIEW 2014: I installed the driver NOR-DAQmx base 15.0, but I can not find module.does to analog input, someone knows how to install Labview analog entries in 2014.

    1. What kind of material OR do you have? It is visible in MAX (Measurement & Automation Explorer)?
    2. You have a specific reason that you have installed the DAQmx Base pack and not full? In fact, I don't know what are the limits of the basic package, but I always install and use the 'normal' DAQmx driver
  • Reading of the analog inputs

    Good day to all,

    I use NEITHER-7350, LAbview 8.5 and try to measure the voltage from a power source.

    Is there a screw that read the analog inputs. I can't open the examples.

    Thank you

    Have you watched the DAQmx? Create a virtual channel, start the task and read the value.

    http://zone.NI.com/DevZone/CDA/tut/p/ID/5370

  • reading of the analog inputs with RPC

    Hello

    Because LabVIEW can not handle this (in VI; the value that you have saved the excel file has not been the same, that I saw during the measurement...) This confused me for a long time ), I want to write a C++ program (IDE: Dev - C++) which can read & record 2 analog inputs of the NI USB-6009 box. For this, I looked for an example of National Instruments and I found a little. But my problem is that I can't even use any example, because it has always held a mistake, after that I have compiled and started.

    The error once the task has been created and has the :-200220 error number with the description "device identifier is invalid. But I do think that its invalid, because it's the xP example

    I must say that I am new in programming C++, which means I could have a rookie mistake. And I couldn't find documentation or something for the NOR-DAQmx library.

    Someone has similar problems with DAQmx and C++ and know how to fix? I don't really know what I can do now without a working example or documentations...

    Hi Mario

    It's the same thing. You didn't just save all of the data:

    Please take a look at my comments in the attached VI.

    Christian

  • How do I get the analog input signal and send it to output analog (real time)

    Hello world

    I do a simple task in Visual C++ and I use PCI-6221(37 pin).

    Basically, I want to send the same signal of "analog input" to the "analog output".

    at the same time (or almost), to make real-time application.

    Can someone provide me with sample program please.

    I would be grateful if you could provide me with the great tutorial that explains

    step by step everything about NOR-DAQmx for C/C++ programming.

    Best regards

    Khassan

    This is my code in C++, you can optimize it if that seems too messy. This code reads the analog input signals and exports it through the analog outputs.

    To make this code additional work of the directories include and library directories must be added to OR.

    I hope it helps someone.

    #include
    #include
    #include "NIDAQmx.h".
    #include

    #define DAQmxErrChk (functionCall) {if (DAQmxFailed (error = (functionCall))) {goto error ;}}

    int main (int argc, char * argv [])
    {
    Int32 error = 0;
    TaskHandle taskHandleRead = 0, taskHandleWrite = 0;
    Read Int32 = 0;
    float64 context [1000];
    char errBuffRead [2048] = {'\0'};
    char errBuffWrite [2048] = {'\0'};
    bool32 done = 0;
    Int32 wrote;

    DAQmxErrChk (DAQmxCreateTask("",&taskHandleRead));
    DAQmxErrChk (DAQmxCreateAIVoltageChan(taskHandleRead,"Dev1/ai0","",DAQmx_Val_Cfg_Default,-10.0,10.0,DAQmx_Val_Volts,NULL));
    DAQmxErrChk (DAQmxCfgSampClkTiming(taskHandleRead,"",100.0,DAQmx_Val_Rising,DAQmx_Val_ContSamps,0));
    DAQmxErrChk (DAQmxCreateTask("",&taskHandleWrite));
    DAQmxErrChk (DAQmxCreateAOVoltageChan(taskHandleWrite,"Dev1/ao0","",-10.0,10.0,DAQmx_Val_Volts,NULL));
    DAQmxErrChk (DAQmxCfgSampClkTiming(taskHandleWrite,"ai/SampleClock",100.0,DAQmx_Val_Rising,DAQmx_Val_ContSamps,1000));

    DAQmxErrChk (DAQmxStartTask (taskHandleRead));
    DAQmxErrChk (DAQmxStartTask (taskHandleWrite));

    While (! fact &! _kbhit())

    {

    DAQmxErrChk (DAQmxReadAnalogF64(taskHandleRead,1,10,DAQmx_Val_GroupByScanNumber,dataRead,1000,&read,));

    DAQmxErrChk (DAQmxWriteAnalogF64(taskHandleWrite,read,0,10.0,DAQmx_Val_GroupByChannel,dataRead,&written,));

    }
    _getch();

    Error:
    If (DAQmxFailed (error))

    {
    DAQmxGetExtendedErrorInfo (errBuffRead, 2048);
    DAQmxGetExtendedErrorInfo (errBuffWrite, 2048);
    }
    If (taskHandleRead! = 0)

    {

    DAQmxStopTask (taskHandleRead);
    DAQmxClearTask (taskHandleRead);
    }
    If (taskHandleWrite! = 0)

    {

    DAQmxStopTask (taskHandleWrite);
    DAQmxClearTask (taskHandleWrite);
    }
    If {(DAQmxFailed (error))
    printf ("error DAQmx: %s\n",errBuffRead); ")
    printf ("error DAQmx: %s\n",errBuffWrite); ")
    }
    printf ("end of the program, press the Enter key to quit\n");
    GetChar ();
    return 0;
    }

  • Registration of the analog inputs in continuous (Clipping)

    Material:

    (1) USB NI CDaq-9174 chassis

    (2) NEITHER 9234 Analog Input Modules

    (1) digital input module 9402 OR

    Goal/Requirements:

    To read the analog inputs continuous only in digital input is "high".

    Problem:

    Timestamp in log file prooves that logging is not continuous. It seems that the first seconds of 0.6 of every second is recording, I guess the other 0.4 is used to write custom? I can't use VI SignalExpress for this application because logging must be triggered by a high digital input.

    File is attached. Thank you all!

    To detect changes in the digital input, you need to compare the current value to the previous. The easiest way to do this is to plug the output of digital playback on a shift register. The Boolean function involves will tell you when a transition has taken place.  See the central part of the image below. If you exchange the true and the false case of case structures, you not the inversion function.  Look at the help file for more information on what the function actually implies.

    You must also change the wiring of the name of input for writing custom file FIle.vi so that the name is automaticlly changed.  Depending on what you want the naming system to be, that it can be simple or rather complicated.

    Lynn

  • How to read the analog inputs of one Board of R for (PXI-7851R) series

    You can guide me please with the steps for reading of the analog inputs of a series a. card I use as the target fpga PXI-7851R.

    Have you looked at the examples provided with LabVIEW? There are examples showing how to read the analog inputs.

  • Open a synchronized session of the analog inputs and position

    I want to read 8 analog inputs (only three IA in the capture of code) with a PCI-6221 card at a rate of 100 samples/s, reading 10 samples/iteration. At the same time, I want to read the position synchronized with the analog inputs. Is this possible? If I just merge the position with the analog signal I get 10 readings of position for each 100 analog input readings (see chart - Red's position). For the control of the movement, I use the pci-7342 with UMI-7764 interfaces. Could someone help me out here please?

    Not necessarily. As said, speeds of up to 200 Hz should work fine with a 7342. If this is not enough, of course a 7350 could be used, but there is also a completely different approach that should work with your current hardware:

    7342, you may also route the phases of encoder to the pins of the RTSI. You can use a counter on the 6221 to measure the position of your axis based on the singlas you have routed the RTSI pins. Now you can use "Measure of Position buffered" (see DAQ examples) to measure the position with the same source of synchronization than your analog signals.

    I hope this helps,

    Jochen

  • Since the update to windows 10, I can't watch the videos on facebook or youtube

    I can't watch the videos either, they are just green tried all ways to sort, but nothing works, read loads of items here

    The details of your system shows that you have Firefox 31.9

    https://support.Mozilla.org/en-us/KB/update-Firefox-latest-version 40

  • Can I watch the sky go app on my TV by connecting my I pad2 using the AV adapter digital Apple 30-pin

    Can I watch the sky go app on my ipad 2 via my hd tv by connecting iPad to my tv via digital of 30 pins of Apple

    AV adapter?

    Apple says you can show what on your screen. (?)

    http://www.Apple.com/shop/product/MD098AM/A/Apple-Digital-AV-adapter

    did you read the comments?

  • I can't watch the movies purchased on itunes.

    I can't watch the movies purchased on iTunes. All I get is a black screen and no sound on my iMac. Any ideas how to solve this problem?

    Same story here... Videos made in iMovie, etc. will play but nothing of what has been purchased through iTunes. Only occurred after the most recent update to iTunes 12.3

  • What is the analog input of the NI PCI-6229 impedance?

    I am trying to determine the effect of a 12 K resistor that is in series with an analog input of an NI PCI-6229 data acquisition card.  Resistance of 12K seems to be part of a RC filter.  I have a 0-10 VDC source this supply circuit.  What is the impedance of the analog input of the NI PCI-6229 data acquisition card?  If it makes any difference, the analog input is connected in differential mode with a 180K resistor to Gnd AI.

    Thank you

    RWB

    Hi, RWB,.

    The input impedance is classified in the specifications 10 GOhm.  So, the effect of your k 12 resistance should be relatively low.  Take care!

  • Vista WMP I can't watch the video in full screen

    Vista WMP I can't watch the video in full screen or any size other than 100%...if that I change of 150% or 200%, it only shows the screen completely black but sound pieces as usual...

    Hi the Justice Clark,

     

    1. what version of WMP are you running?

    2. to check the press ALT on your keyboard and then click Help on

    3. what type of file you are playing?

    4. What is the file format?

    Update drivers please follow the link below.

    www. Microsoft.com/downloads/en/default.aspx

  • Can't watch the video .mp4. Cannot find Codec for Windows 8.1 Windows Media Player 12

    I can't watch the videos .mp4 downloaded from my phone.

    I can watch other videos.

    My computer is Windows 8.1 and Windows Media Player 12

    I downloaded Media Player Lite app and I could see them, but I want to be able to see them in Windows Media Player.

    I read on the Codec, but I can't find where to get a Web site I can trust.

    Help, please.

    Hello

    Try the codes K-lite

    Standard Pack & Basic

    http://www.free-codecs.com/download/K_Lite_Codec_Pack.htm

    Mega Pack

    http://www.free-codecs.com/download/k_lite_Mega_Codec_Pack.htm

    The site warns you to deselect Adware that comes with the download package.

  • How can I watch the contract I signed

    How can I watch the contract I signed?

    If you do not have to sign up for a free account using the same address email used to sign the agreement:

    https://secure.echosign.com/public/register

Maybe you are looking for

  • Why windows ad come when I change to a new website.

    I just went to sparkfun.com and after opening the page, another separate window it appearshttp://web-opinions.com/sur/sur-24/page-oio-et-red-rollback-3up-gar.php... I can Xout of. When I click on an item to sparkfun, this new pop window [ http://clic

  • Memory and disk HARD upgrade question - Satellite 5200 801

    Hi all I really need your help to upgrade my toshiba Satellite 5200 801 (model: PS520E-31P1D-EN), basically it's the version specification factory (technical instructions on the link below)http://www.cwrose.de/Toshiba/S5200.html What I want is to get

  • How to disable the low ink warning

    HI, I have a HP 8500 has 910 running Mac OS X.6 and OS X.7. Printer is connected to a wireles via ethernet Airport base station. You can't use WIFI on this printer because the printer continuously malfunctioned when it is in WIFI mode. You can also u

  • program copy to USB 16 GB flash drive

    My HP Windows 7 Tower has a corrupt Google Chrome, so I removed it.  Now I want to copy Chrome on my laptop Gateway Windows 7 on a 16 GB USB flash drive to transfer my turn. How can I do?

  • PC Lag during the game

    I have a lot of delay after installing the game Dragon Age: Origins. My pc meets the requirements and all, but even if I did my utmost to improve the performance of the system I have a lot of lag. My system specs are as follows: Processor: Intel (r)