Please help- M-audio mic nova and fast track usb not working

Hi All,
I just purchased a m-audio nova microphone and the fast track usb interface. I was hoping to use this to record overhead voice. However, it doesn't seem to work. I plugged in a regular microphone in both the mic and guitar input and it seemed to work. Am I missing something? I have set audio-in to fast track in both systems preference and garageband preference. The output remained built-in because my speakers are plugged into my desktop. I also tried output using the fasttrack and plugged my speakers into the fast track's interface and the my old microphone also worked ok. Is it my newly purchased m-audio nova microphone that is not working?
Thanks.

Sorry about that, the regular mic is not the m-audio, it has an on/off switch. I am not familiar with audio gear terms, I apologize that. When I plug this mic in, it works in both the guitar input and the mic input on the usb interface (m-audio fast track). I can also plug this mic into a guitar amp. I hope that makes sense. Even when I plug it into my G5, it works, although I use an adaptor for the plug (same size as a headphone jack).

Similar Messages

  • M-Audio Fast Track USB not working with Mountain Lion

    Went trough AVID.COM and M-Audio pages and there is no driver for mountain Lion. My Fast Track USB randomly produce NOISE sound when trying to open the interface to reproduce any sound.
    It was working OK with Lion and Snow Leopard.

    now is working with teh 1.9.2 driver believe me work it!

  • Please Help ?? Tomcat 6 and JDK 6 Class Not Found Exception when deploying

    Hi,
    I am deploying this application in Tomcat 6, but I am getting ClassNotFoundException when I try to the application. I am a novice at this.
    SEVERE: Error loading WebappClassLoader
      delegate: false
      repositories:
    ----------> Parent Classloader:
    org.apache.catalina.loader.StandardClassLoader@146c1d4
    com.jbe.test.HelloWorldServlet
    java.lang.ClassNotFoundException: com.jbe.test.HelloWorldServlet
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1359)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1205)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1068)
         at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:791)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:127)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:870)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)
         at java.lang.Thread.run(Thread.java:619)
    Oct 15, 2007 12:57:31 AM org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Allocate exception for servlet asterisk
    java.lang.ClassNotFoundException: com.jbe.test.HelloWorldServlet
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1359)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1205)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1068)
         at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:791)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:127)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:870)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)
         at java.lang.Thread.run(Thread.java:619)My web xml configuration
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
        version="2.4">
         <display-name>Hello, World Application</display-name>
        <description>
         Simple Test with a servlet.
        </description>
        <servlet>
             <servlet-name>helloworld</servlet-name>
             <servlet-class>com.jbe.test.HelloWorldServlet</servlet-class>
        </servlet>
        <servlet-mapping>
             <servlet-name>helloworld</servlet-name>
             <url-pattern>/hello.htm</url-pattern>
        </servlet-mapping>
    </web-app>My JSP: <html>
         <head><title>Test Hello World</title>
         </head>
         <body>
         <form>
         <a href = "hello.htm">Hello World</a>
         </form>
         </body>
    </html>
    Please Help !!!

    Are you sure your HelloWorldServlet has doGet method?
    package com.jbe.test;
    // Import servlet packages
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class HelloWorldServlet extends HttpServlet {
         public HelloWorldServlet() {}
         public void init() throws ServletException     {}
         public void doGet(HttpServletRequest request, HttpServletResponse response)
         throws ServletException, IOException           {
              response.setContentType("text/html");
            // then get the writer and write the response data
            PrintWriter out = response.getWriter();
            out.println("<HEAD><TITLE> SimpleServlet Output</TITLE></HEAD><BODY>");
            out.println("<h1> SimpleServlet Output </h1>");
            out.println("<P>This is output is from SimpleServlet.");
         out.println("</BODY>");
         out.close();
         public void destroy()     {}
    }

  • Please help, after update the bluetooth and wi-fi doesn't work in my iPhone 4s

    If somebody knows how can I fix this.  The bluetooth dont activate and wi-fi is in color gray.  I already restore the iphone several times and nothing! The worse thing is that I cant go back to previos iOS.
    PLEASE, HELP!!

    Hello,
    so yesterday I went to the Apple store (yeah, again) and they said that iOs 6.1.2 made the wifi chip overheat and that iOs 6.1.3 was supposed to fix this wifi problem (but once your wifi option has grayed out your phone has to be changed)... So they gave me a new phone and I've no problem so far. The wifi works very well, as before!

  • Please help! Internet on parallels and through airport, but not in OSX??

    I have snow leopard on MBP. At one of my places at work, when I connect to the network - I cannot get internet to work inside OS X - i.e. mail, safari, firefox - all do not work. However, if I start up parallels - the firefox and other programs within XP parallels work perfectly. What's more, if I enable internet sharing through airport, I can also use my ipod touch to connect to the internet through my MBP!! Inside OSX - most things do not work most of the time, and on occasion, microsoft entourage works for a bit...
    Looking at little snitch, looks like a lot of active "local" network activity by natd and MDNSResponder - nonstop.
    The console is full of messages... one today in a non-stop loop was:
    10-10-26 2:47:28 PM mDNSResponder[30] GenerateUnicastResponse: ERROR! Why no questions?

    Thanks for replying. I don't think I'm running other low level programs... hotspot shield in the background, but not up and running.... Also, this problem occurs at one of my offices, but not in my other office or at home. It seems so very strange, and I'm tearing my hair out. Resorting to either running parallels or checking my email on my ipod.

  • PLEASE HELP! Guitar line in on Audigy 2 ZS not working

    i have a sound blaster audigy 2 ZS platinum pro. In every program i try to use (FL 4, reason, krystal, ...) i can not even hear my guitar when plugged in to the sound card. I have tried the obvious, making sure i'm not in digital only mode, checking the cables. Some one please help.

    Does Line-In work w/ normal line sources?
    You propably need a pre-amp for guitar input through Line-In port but, if the port you're using is a Hi-Z port (you find this information from Audigy User's Guide) then, it should work even w/o additional pre-amp.
    jutapa

  • Cant get Fast Track USB to work

    HELP!!! Please!!! I just bought the M-Audio USB Fast Track, and I cant get it to work!!! I have an iBook G4, and I wanted to connect my guitar directly to the computer, but the iBook doesnt have an audio-in. The problem, is that I cant get GarageBand to recognize the M-Audio. I already set it as the input audio in the system preferences, but I cant record my guitar and I feel really stupid.
    Someone knows what is going on?? Please help me!

    Try starting Garage Band, then go to preferences -> audio/midi and setting the fast track as your audio in and out device.
    You should quit and restart GB after you do this so it initializes properly.
    You will have to plug your speakers into your fast track to monitor your recordings so you might need to buy some cables.

  • Front and add-in USB not working

    My onboard USB works like a charm, but my front USB and the rear add-in USB do not work.  They stopped working one day, and havent worked since.  The onboard works fine.  I have reinstalled and reformatted and done all that, and nothing wants to bring them back.
    Considering they both went out at the same time, I know it has to be a software problem, and not a hardware problem.  
    It might have coincided with my bios upgrade, but I'm not sure.
    Using K7N415 pro, not sure what bios version, its one of the overclocking ones, but probably not the newest.
    If the bios is the problem, whats the latest and greatest one that fixes my problems but still allows me to overclock?

    Definitely enabled in the bios.  Its not a temporary problem.  Worked one day, and then just flat out stopped working.  I rechecked the connections, and theyre fine.  There are two USB root controllers and hubs installed in the device manager, so theyre certainly installed. But anything I plug in there just doesnt register.  Doesnt even make an optical mouse light up.  I am using two low power devices on my onboard USB, and they should be totally separate from the front and addon USB bracket.  None of the ports work at all.  Any other ideas?

  • Previous(Back) and (fast)forward keys not working in iTunes

    Hello,
    A short while ago, I found out that my function keys (back- and forward buttons specifically) have stopt working in iTunes. The exact moment they started to malfunction in unknown to me, but in my current configuration they always did what they had to do up until a couple of weeks ago.
    My specs:
    Mac Mini late 2012
    16 Gb RAM
    256Gb SSD + 500Gb HDD
    Apple Wireless Keyboard
    Apple Magic Trackpad
    OSX Mavericks 10.9.1
    iTunes 11.1.4 (64bit)
    I can't recall altering system settings with which these controls could stop working. Note: the play/pauze button works great!
    Furthermore: In VLC, all controls work fine, including the back and forward buttons.
    Could this be due to an update of iTunes? Also, have more people encountered this problem? If so: What is the sollution, 'cause this is annoying the crap out of me..
    Thanks in advance,
    T.

    After searching one discussion after another I found the reason the keys malfunction in iTunes: AirServer. While this program is running, the FF and Prev keys (F7 & F9) won't work in iTunes. When the app is closed, they immediately start working again. Seems to be a bug in AirServer's coding. Hope an update will undo this problem.
    Regards, Tim

  • M-Audio Fast Track USB and Logic Pro X

    I wanted to share this tip in case anyone else has the same issue I had.
    I attempted to use the Fast Track USB audio interface with Logic Pro X. It had worked in every version of Garageband since version 3, as well as older versions of Logic Express and Logic Pro, so I assumed it would work out of the box with Logic Pro X.
    With it plugged in correctly, and my guitar connected to it, I added a new audio track to my project - ensuring the Fast Track was set as the input device, and input 2 was selected (input 1 is the XLR input on the device) - and enabled playback monitoring. There was no sound. Additionally, the button to enable recording was not present for the track. The same was true for every new track I added that used the Fast Track as the input device.
    I tried everything: in Logic Pro X > Preferences > Audio > Devices, I toggled between the built-in input and the Fast Track; I restarted the software; I unplugged and plugged in the Fast Track, and I restarted the system. None of these worked. Then I had an idea.
    In the Applications > Utilities folder on my Mac, I opened the Audio MIDI Setup app. This opened the Audio Devices window. I clicked on the plus at the bottom left and chose to Create Aggregate Device. I named this device by double-clicking the name on the left, then on the right I checked Built-in Input and Fast Track, taking note of which inputs belonged to the Fast Track in this new device (for me, inputs 3 and 4).
    After restarting Logic Pro X, I chose this new aggregate device as my input device, chose input 4 for recording, and suddenly everything worked correctly.

    I contacted Logic Pro X support and they said that they are working on an update.  They were very helpful, so no worries guys.  They know that there is an issue and they are working on it A.S.A.P.  They told me if I needed to continue production to use time machine and go back before the update and restore Logic Pro X (before 10.0.5).
    They understand, so give them a break...    They are working as fast and hard as they can.  I talked with one of the programmers directily.   They are probably not getting any sleep over this. 

  • Recording with M-Audio Fast Track  USB Audio Interface

    New Mac owner and am completely lost. I am wanting to record guitar and vocal tracks into GB and when I plugged in the M-Audio I could see a wave file when after I hit the record button but I couldn't hear anything. I selected it as the default for input and output and turned the monitor on...but am getting zero sound. HELP!

    I actually just picked one up and this is what the process is...
    I must reiterate the first line... Do not install any of the packaged software as it does not help, or do anything beneficial... just use Garageband.
    This is to record a plug in guitar.
    IT IS NOT NECESSARY TO LOAD ANY DISCS THAT COME WITH THE DEVICE
    1. Connect M-Audio Fast Track USB to appropriate USB port on computer.
    ex. MacBook Pro - use forward port (port furthest away from display)
    Also, see note 2 for M-Audio knowledge base, support etc...
    2. Open System Preferences and:
    -Select M-Audio Fast Track USB icon
    -Select "About" button and note Audio Firmware version
    -Select "Updates" to open M-Audio web site
    -Select: USB Audio Series<Fast Track USB< MAC OS 10.5.7 (or appropriate operating system)
    -Note version number of latest drive and download if
    necessary to update your M-Audio
    - Select "Sound" in Hardware row of System Preferences
    -Select "Input" button and select M-Audio Fast Track USB
    - No need to change "Output" regardless of how you want to listen to playback!
    3. Connect guitar to M-Audio box (a pre-amp will boost output, but is not necessary)
    - Make sure button on rear of M-Audio box is selected properly for guitar
    4. Open Garage Band (Do Not open Garage Band prior to connecting M-Audio)
    - Select New Project - Electric Guitar
    5. Open Garage Band Preferences
    - Select "Audio/MIDI" button
    -Audio Output select:
    - "Built-in Output" to use computer's speaker or headphones/speakers connected directly to computer OR
    - "M-Audio Fast Track USB" to listen to headphones/speakers
    connected directly to M-Audio box (use Mix knob and Output knob on front of M-Audio box to control ouput if choosing this set-up)
    -Audio Input select:
    -"M-Audio Fast track USB"
    6. Choose an Amp model in Garage Band
    - Double-click picture of amp (this displays rear picture of amp and access to settings)
    -Select: Input Source : Mono2(M-Audio Fast Track USB) NOT MONO 1!
    of if using Mic and guitar : Stereo2 (M-Audio Fast Track USB)
    7. Record
    This saved me from throwing the thing out the window... It works well now!

  • HT1414 I have intelos and my Iphone does not work in some areas or in my house. I have had Apple replace it 2 times with the same problem. My android worked fine in all places....what's wrong with this? It's killing my business!! Any ideas to fix it??

    Please help me understand why my I phone 4s is not working in some places and my HOME!! I have been to Apple 3 times and Intelos 5 times and no one knows whats wrong and they are telling me that no one else is having this problem. It's hurting my business because I can't get calls at home. I paid a lot of money for this and may have to pay to get out of it.  I thought Apple was a good company but am changing my mind quick.

    OK, restart in Safe Mode, this will clear some caches. It's possible one or more is corrupt. To restart in Safe Mode when you hear the start up tone hold down the Shift Key until you see a progress bar. Let it fully boot then restart normally and test.
    Also I am assuming you have checked Finder - Preferences  - General and see what boxes are checked in "Show these items on desktop." You can also mount an item in Disk Utility, simply highlight it and then look in the File menu for Mount.....

  • My Siri and microphone in other apps hasn't been working lately. I've cleaned the mics, took off te case, and it's still not working. My camera only picks up audio when it's off of vibrate. And now I can't answer texts with the new pull down thing.

    My Siri and microphone in other apps hasn't been working lately. I've cleaned the mics, took off te case, and it's still not working. My camera only picks up audio when it's off of vibrate. And now I can't answer texts with the new pull down thing. please help

    Hello Sarahd200037,
    Thanks for using Apple Support Communities.
    To troubleshoot the microphone on your iPhone please follow the steps in the article linked to below.
    iPhone: Microphone issues
    Take care,
    Alex H.

  • Hi Guys,  I am using the full width video widget on a site. The widget was working perfectly however I have just added additional content to the site and re-uploaded and now the video is not working! Please help I have tried everything and am freaking out

    Hi Guys,
    I am using the full width video widget on a site. The widget was working perfectly however I have just added additional content to the site and re-uploaded and now the video is not working! Please help I have tried everything and am freaking out as this web-site has been payed for by my client.
    Alex

    Many thanks.
    With those symptoms, I'd try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • My microphone is not working on my IPAD 4... It's version is 7.0.4. Please help me coz i cant my sister in HK can't hear me on skype. It's our only way of keeping in touch. Im so helpless. Please help me. Thank u and God bless everyone.

    My microphone is not working on my IPAD 4... I can't figure out if the problem has something to do when i updated the version. It's version is 7.0.4. Please help me coz i cant my sister in HK can't hear me on skype. It's our only way of keeping in touch. Im so helpless. Please help me. Thank u and God bless everyone.

    Have you tried reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

Maybe you are looking for

  • How to comment my SQL in PL/SQL so that the comment carries to AWR?

    Is there anything about using comments as in /* some comment */ in a SQL statement in a PL SQL procedure and expecting that to be carried thru to AWR? Right now it seems my comments are not visible in the AWR history. I'm wondering if they are compil

  • Need Help in expdp for resolving ORA-39127: unexpected error from call

    Hi All, My Environment is -------> Oracle 11g Database Release 1 On Windows 2003 Server SP2 Requirement is ------------> Data Pump Jobs to be completed without any error message. I am tryring to take export data pump of a schema Command Used --> expd

  • Filename with space problem

    Does anyone know why this code is giving me to save the file with the wrong filename? It converts spaces to + signs. Currently it gives the filename: "test+filename.abc" The variable resourceName is: "test filename.abc" (<-- this is required filename

  • Dynamic VLAN/SSID assignment using 4402/MS IAS

    Greetings, In short we have a WLC4402 (50 AP license) and approx 30 1252s LAPs in place. Right now we have three VLANs/SSIDs in place - one for admin, one for teachers and one for students. The WLC uses a MS Windows 2003 server running IAS for PEAP a

  • Copy control - pricing

    hi all, i have material "coal" in contract (va41), with qty 100 TO, cond type PR00 ($1000), and header condition type FUEL $80. then i create sales order (VA01) reference to that contract, with qty 50 TO, the condition type FUEL in sales order = $40