Clicks and popping with recording and USB interface-HELP!!!

I've submitted this twice, got some responses, but has twice been ignored into oblivion. I apologize for the reposts, but this is VERY IMPORTANT, and I've been struggling with this issue for MONTHS now dealing with countless hours of lost time trying to fix it to no avail.
I'll try to include as much detail as possible.
I use:
MacPro 2 x 2.66 Dual-Core Intel Xeon
3 GB memory
Logic Express 8.0.2
245.13 GB empty space on Hard Drive
THE PROBLEM:
When I record, I get computerized clips/pops
http://www.moogiex.com/clickpop.mp3
http://www.moogiex.com/morecackling.mp3
I record via a PreSonus Audiobox USB. This problem did NOT start when I got the AudioBox, but several months after.
When I simply monitor the sound going through the box, the sound is fine.It's something between the Box, and the computer output. My guess is some incompatibility with Logic Express or Core Audio and the AudioBox.
It is NOT the microphone or the cable (the pops occur with anything going in, 1/4", XLR, different inputs).
The clicks START with Logic Express. If there are any recording program open when Logic Express is open, and I record, I get the SAME pops.
It did this both under 10.5.6, 10.5.7, and now 10.5.8.
It is NOT clipping.
When I'm recording with LE:
—There's 1.27 GB of FREE Memory while I'm recording.
—Logic Express is only using 6.7% of CPU while recording (of only one of the four processors), and about 90-95% of CPU space is free on all four processors.
—This happens on ANY audio input, and it doesn't matter how many other tracks, how long it is. I just started a brand new file and it does it.
—This happens when I use ANY input into my computer, but is STARTED by LE.
Here are my Logic Preferences
Core Audio- ENABLED
System Memory Requirement 66.0 MB
Device: AudioBox USB
I/O Buffer Size: 1024
I/O Safety Buffer- UNchecked
Recording Delay: 0 samples
Universal Track Mode- CHECKED
24 Bit Recording- CHECKED
Software Monitoring- CHECKED
Independent Monitoring Level- Checked
Process Buffer Range: Large
ReWire Behavior: Live Mode (Higher CPU Load)
Maximum Scrub Speed: Normal
Scrub Response: Normal
There is *no* driver with PreSonus' AudioBox. It is simply "compatible." Here's what System Profiler says:
AudioBox USB (plugged into my Mac Pro's front bottom port):
Product ID: 0x0301
Vendor ID: 0x194f
Version: 1.08
Speed: Up to 12 Mb/sec
Manufacturer: PreSonus Audio
Location ID: 0x00200000
Current Available (mA): 500
Current Required (mA): 500
Here's what I've tried:
—Disabling CoreAudio, shutting LE 8 off, restarting LE 8, enabling CoreAudio again. This worked ONCE. It hasn't worked since.
—Disabling CoreAudio, shutting LE 8 off, SHUTTING DOWN, RESTARTING, opening LE 8, enabling CoreAudio again. This also worked ONCE. It hasn't worked since.
—"CPU Saving Mode"
—I/O Buffer to 256, 512, and 1024 (default) (IMPORTANT?—speed of popping actually INCREASES with larger buffer?)
—I/O Safety Buffer checked and unchecked
—Changing Recording Delay samples
—Pretty much fiddling with any of the controls
—Disabling Airport does nothing (was previously working fine with Airport running)
—Quit all applications, open up QuickTime (pro) or Audacity, and record something. It records perfectly. I go back to LE and the clicks and pops are gone, but only until I use anything with effects, then the clicks and pops return. This works SOMETIMES.
—Reset the preferences, and that has worked ONCE, and then the clicks and pops came back (albeit not as prominent, but they were still there).
—I trashed all files related to Logic and reinstalled. Worked ONCE.
—Restarting does help, but only temporarily, as soon as any pull is put on Logic, the problems return.
—Using a different USB port. I thought this was the solution because the problem shortly went away with regular use of Logic, but problem came back.
—Uninstalling Logic, Reinstalling Logic Express, same deal.
PLEASE, PLEASE, PLEASE HELP. I have a lot of money sunk into all this equipment that's practically useless with this recording issue.

Man, I feel for you on this.
I would love to see what your pops and clicks look like in your waveform. If you can take a snapshot of it and post the pic here that might help the diagnosis.
Your audio files certainly SOUNDS like you have a clocking problem. It really sounds like your CoreAudio driver/MacPro and your USB interface are not locked up in sync - as in: which is master and which is slave? I know some interfaces include a software control panel that allows you to set the status of the interface clock to slave to the computer or to be the master. It sounds like yours doesn't come with drivers but is there any control panel for this Presonus device?
Another place to check is in Applications>Utilities>Audio Midi Setup
On the left under "Properties for <your interface>" what does it say for the clock source?
Also in this panel, to the right it should have a button for "configure device". What happens when you click it? For example in my case it automatically launches my Apogee Duet Maestro control panel. In your case it might launch something similar, although I think you mention that you never installed anything, which I find strange to begin with - that this thing should just work out of the box with no driver at all.
I've struggle with w similar problem with my Apogee Duet, although nothing of this magnitude, maybe 4 or 5 clicks per 3 minutes of audio and these turn out to always be sample drops where 5-10 samples in a row are all the same in the waveform, as if my interface and computer stopped talking for a milli second. I did find that if my Apogee Duet was chosen as the default or system output in the Audio Midi Control Panel I mentioned above then the clicking was more frequent, as if choosing the audio interface for any system output caused a conflict with choosing it for Logic. I thought this was strange but you might want to investigate that further too.
At any rate, it does sound like a digital clock syncing issue to me by the sound of your audio. What effect does changing the sample rate of the recording have on the problem?
Let me know if any of this leads to anything.

Similar Messages

  • SQLJ calling PL/SQL with records and tables as parameters

    Has anyone used sqlj to to call procedures with records and
    tables as IN, OUT, or INOUT as parameters? If so how do you
    assign values to the IN parameter in the record/tables, and get
    values out of the record/table when it is passed back? Might
    anyone have any syntax?
    null

    One thing I forgot to mention: If you're an 8i client, then in
    8.1.6 you'll be able to use JPublisher to solve this problem,
    since it'll generate these wrappers for you.
    Pierre
    Oracle Product Development Team wrote:
    : Hi,
    : The key issue is that no part of Oracle code except PL/SQL is
    : aware of the PL/SQL Record types and PL/SQL "index-by" table
    : types.
    : So the only way to call a PL/SQL procedure with args of a
    RECORD
    : or "index-by" table types is from another PL/SQL routine.
    : In most cases, it's possible to work-around this by wrappering
    : your PL/SQL method with another which doesn't have this issue.
    : For example, if you're trying to call procedure proc01 in:
    : package pack01 is
    : type rec01 is record(n1 number, d1 date);
    : procedure proc01 (r rec01);
    : end;
    : you can create a wrapper method:
    : package pack01_wrapper is
    : procedure proc01_wrapper (n1 number, d1 date);
    : end;
    : package body pack01_wrapper is
    : procedure proc01_wrapper (n1 number, d1 date) is
    : r pack01.rec01;
    : begin
    : r.n1 := n1;
    : r.d1 := d1;
    : pack01.proc01;
    : end;
    : end;
    : If you're a 7.3 client, that's about all you can do. The Fix
    was
    : introduced in 8.0, where new structured types (ADT's) and new
    : table types (VARRAY's and Nested tables) were introduced. So
    if
    : you're an 8.0 client, your 'wrapper' package could use an ADT
    : which has the same attributes as the record, rather than
    : 'exploding' the record into its individual components as I
    showed
    : above.
    : Hope this helps!
    : Pierre
    : Thomas Richardson (guest) wrote:
    : : Has anyone used sqlj to to call procedures with records and
    : : tables as IN, OUT, or INOUT as parameters? If so how do you
    : : assign values to the IN parameter in the record/tables, and
    get
    : : values out of the record/table when it is passed back? Might
    : : anyone have any syntax?
    : Oracle Technology Network
    : http://technet.oracle.com
    Oracle Technology Network
    http://technet.oracle.com
    null

  • SOLUTION TO CRACKLE AND POPS WITH NFORCE 4 SLI MOTHERBOA

    someone else posted the solution in a thread, props to him/her.
    i've tried everything.
    different drivers.
    Every concievable BIOS setting.
    i've done it all.
    THIS WORKED on my a8n32sli-deluxe motherboard.
    i set my HTT to 800 (x4 with a 200 mhz bus)
    ALL crackles and pops are gone and my system is just as fast as it was at 000 (or 5x 200 mhz HTT)
    the HTT is the hypertransport bus from the cpu to the system, if you dont know what i'm talking about google it.
    no bull**bleep**, nothing else worked, this did.
    good luck!

    <well after searching the net and on different forums like ASUS and Creative and EVGA i went to my fellow gaming clan m8's and i had one post to me a procedure to try out and see if it works. well so far it has and i have the onboard sound enable, and the augy2 zs install heres a pic of what my IRQ look like now<IMG src="http://img.photobucket.com/albums/v482/SCAVENGER/My%20Gaming%20PC/IRQ.jpg">i will post the procedure he had me do follow it step by step but make sure you have dri've cleaner pro install to make this work since it is used in this procedure<
    This little app is a life saver with that crash error. It not only cleans specific registry entries per driver type and related files, but also cleans MS Win default drivers in the installation CABs which MS always installs when it doesn't know what to do.
    * Download newest Chipset Drivers, but do not install yet * Download and install any BIOS updates * Reboot and enter BIOS * Set what you want, disabling any stuff you never use (whether it be firewire or midi or whatever) * Reboot to Windows * Uninstall all drivers related to sound and video (the bull**bleep** apps that go with it too) * Run Driver Cleaner Pro and multi-select all video and sound remotely related to your hardware (I select everything under manufacturer name) * Reboot TO SAFE MODE (keep pressing F8 during reboot until you get the menu choice) * Run Driver Cleaner Pro and clean the same things you just cleaned in normal mode * Select CAB cleaning and clean all CABs it has an option to clean * Reboot to normal Windows, cancelling out all the search for a driver gumps * Install the newest Chipset Drivers * Reboot, enter and recheck BIOS settings (chipset drivers can sometimes screw with this) * Reboot to Windows * Install latest OnBoard Sound Drivers if seperate from Chipset * Reboot * Set Windows sound applet stuff, test onboard sound. Any pops? Should be fine * Reboot * Install Sound Card DRIVERS (non of that extra crap) * Reboot * Set Windows sound applet stuff, test both sound sources * Reboot * Recheck sound applet settings, reboot again if you need to set stuff again (it can be difficult to get Win to set some of that in stone) * Now you can install your Video Drivers * Reboot and retest everything * Lastly, I would suggest the latest monthly version of DirectX to be installed
    This /should/ either give you a clean and working as you want it system, or give you an indication of where the problem lies, depending on where in the process the trouble begins<i will post if it keeps working good or not. i know it tends to mess up a day later then give me all kind of greif.
    Message Edited by SCAVENGER on 08--2006 03:49 PM

  • I am considering buying an iPad 3. I have an iMac with OSX 10.6.8. On the iMac I have many photos and work with iPhoto and Photoshop Elements on the computer. Can I interchange or transfer photos and other work from the iMac to the iPad? How?

    I am considering buying an iPad 3. I have an iMac with OSX 10.6.8. On the iMac I have many photos and work with iPhoto and Photoshop Elements on the computer. Can I interchange or transfer photos and other work from the iMac to the iPad? How?

    velma Monreal wrote:
    I am considering buying an iPad 3. I have an iMac with OSX 10.6.8. On the iMac I have many photos and work with iPhoto and Photoshop Elements on the computer. Can I interchange or transfer photos and other work from the iMac to the iPad? How?
    Yes you can. In iPhoto create a Album with the photos you want in it. You can drag them from your Events folder. In iTunes with your iPad connected go to Photos by cliking on your iPad. You can then select the album or events you want.

  • Share Cinema Display and peripherals with MBP and PC

    Share Cinema Display and peripherals with MBP and PC
    I am about to be forced to use a business network connected PC in my office, but I will continue to bring my personal MacBook Pro to work for my personal e-mail, calendar, internet, etc. (it will be connected to a seperate open DSL network). I am thinking about getting an Apple Cinema display and trying to use this one display for both computers. I would like a way to "switch back and forth" between the two systems, all the while using the same mouse, keyboard, printer and Cinema display.
    Does anyone have any experience setting up what I am wanting to do?
    Also, how does connecting an external display effect a MBP? Can you close the screen on the MBP, turning off the MBP's display but keeping the computer running? I'd like to be able to tuck the MBP out of the way to save deskspace but still be using it via the Cinema display and peripherals...
    Thanks so much!

    You can use synergy (link: http://synergy2.sourceforge.net/) to link the mouse and keyboard across the two platforms.
    If you want to use only one display, you'll need a KVM switch.
    You can run the MBP either with it's own screen open, or shut it and use only the external screen.
    Hopefully this helps a little...

  • I just updated my Firefox browser to Firefox 8. I am a college student and practice with HTML and CSS for class assignments. The fonts in all my html documents are being overwritten online by your script typeface. How do I resolve this issue?

    I just updated my Firefox browser to Firefox 8. I am a college student and practice with HTML and CSS for class assignments. The fonts in all my html documents are being overwritten online by your script typeface. I did not have this issue in the older version. I use an iMAC running OS10.6.8. How do I resolve this issue?

    Starting with this, you have errors in your CSS code.
    body {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
      color: 151515;
      font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
      background-color: EFF5F8;
    body {
      margin:0;
      color: #151515;
      font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
      background-color: #EFF5F8;
      font-size: 100%;
    Related links:
    Windows Chrome, why do my fonts look so bad? - Lee Green
    css3 - Bad font rendering Chrome - Stack Overflow
    Nancy O.

  • My iphone 3gs downgrade 5.0 to 4.33 and unlock with redsnow but network no  help me any one pls

    my iphone 3gs downgrade 5.0 to 4.33 and unlock with redsnow but network no  help me any one pls

    hi
    dear
    ......downgrade is currect   use ireb tinyumberla edit host and itune  no any error

  • Hi, I would like to copy my photos (from iphoto) and movies (from i movie) from my Mac book air to my imac in which I also have iphoto and imovie with photos and movies. My goal is to have a unique source in my imac for my photos and movies. Thanks .

    Hi,
    I would like to copy my photos (from iphoto) and movies (from i movie) from my Mac book air to my imac in which I also have iphoto and imovie with photos and movies.
    My goal is to have a unique source of photos and movies in my imac.
    Thanks !
    Nicolas

    As  to iPhoto
    Connect the two Macs together (network, firewire target mode, etc)  or use an external hard drive formatted Mac OS extended (journaled) and drag the iPhoto library intact as a single entity from the old Mac to the pictures folder of the new Mac - launch iPhoto on the new mac and it will open the library and convert it as needed and you will be ready move forward.
    For iMovie support please post in the iMovie forum
    LN

  • Im not able to connect to app store with my apple id after i trying to logout and connect with another id. Please help.

    im not able to connect to app store with my apple id after i trying to logout and connect with another id. Please help.

    The app store has been down for over 8 hours. The following can be used to check on its current status: https://www.apple.com/support/systemstatus/

  • I have a macbook pro with mountain lion and now so I can not synchronize my outlook calendar office 2011 for mac with ical and, therefore, with icloude. Can anyone help?

    I have a macbook pro with mountain lion and now so I can not synchronize my outlook calendar office 2011 for mac with ical and, therefore, with icloude. Can anyone help?

    http://support.apple.com/kb/HT5922
    If you want to mirror your desktop, see:
    http://support.apple.com/kb/HT5404
    Regards.

  • Restore settings on iPhone 3G now it's turning on and off with only apple logo, please help me what do I do?

    Restore settings on iPhone 3G now it's turning on and off with only apple logo, please help me what do I do?

    Anybody there

  • Clicks and Pops with Apogee Ensemble/Duet since upgrade to OSX-ML

    Problems with Clicks and Pops in Logic 9 (9.1.8 64 bit) since I upgraded to
    Mountain-Lion (10.8.2) Does not really matter if I change the Buffer from 128
    to 512! It is not very often but not acceptable. I made an additional
    setup with external HD an installed SnowLeopard again. With this
    OS-Version I can run without any problems with Buffer-Sices 128 or 64. Same
    problem I had with my DUET as well. Would switch back to SL but some
    of the programs I bought from Apple are not compatible with older OS
    than Mountain-Lion.  I also made a complete new ML installation from
    scratch with only Logic Pro 9 and the needed USB-driver for my
    Yamaha-CP1 but still the same thing. I do not see any
    processor-Problems. I have an iMac (Mid 2010, 2,8Gh i5, 16 Gbyte Ram,
    512 Gbyte Crucial SSD) Strange thing is that if I change the amount of threads used from
    "Auto"  to anything else it seems that the amount of Clicks will change for a
    while. But it is not really reproducible and after a short time it reapears.  Any idea what I can do to
    fix this problem? Could it be that the driver is not that stable than
    it was under SL?
    Apogee Support told me after some correspondence more or less, that I am the only one with this issue... ?!?!?
    I already changed cables, switched to USB-Keyboard instead of bluetooth, disabled WLan, installed a 2nd Harddisk and reinstalled the OSX and LOGIC a couple of times without any effect. The only way to get the Ensemble or the Duet working ist to switch back to SL which can't be the solution as it should be fully compatilbe with Mountain Lion. At least this can be read on the support pages fom Apogee!
    Is there anyone with the same kind of problems?

    Ok, folks...finally figured it out. Thank you so much for being willing to brainstorm with me on this. Here's the deal:
    As I was searched online forums I found some discussions regarding different firewire chips they put into different models of the macbook pro's. Apparently you can have the TI (texas instruments) chip or the Lucent chip, you can discover which by holding down 'apple' and 'S' right after the welcome sound when you're booting up your MBP. As you search through the info it should say TI or Lucent by firewire.
    Apparently, the Lucent chip is known for causing issues with different devices...this is the chip I have in my MBP. Someone on another forum said they bought an external firewire bus and just put it between the computer and interface and it solved the problem...so I thought 'what the heck.' I went and bought one and it worked perfect! Crazy.
    So, now I need to talk to apple and i'm hoping they'll be willing to swap my chip for a TI one or at least cover the cost of the firewire bus.
    Thanks again for helping me out. Hopefully this thread helps the next guy so he won't have to spend 3 months troubleshooting like I did.
    God bless

  • Clicks and Pops with X-fi Titanium PCIe

    I am having trouble with my X-fi Titanium PCIe where I am getting clicks and pops every so often. The problem is during any audio, music, movies, netflix etc. I am connected thru optical spdif and I have tried with Dolby Digital Live both on and off, and the clicks are always there.
    I checked IRQs and the X-fi is sharing IRQ 16 with my video card and a couple other devices. My thinking is that this is the problem, but of course in Windows 7, there is no way to force an IRQ change. My board only has one PCIe x1 slot and I'm not sure what else to do.
    I would appreciate any help or input.

    Hi MuzicEngineer,
    Certain motherboards may allow you to reassign the IRQ of your devices. You might want to check with the motherboard vendor to see if this is possible. Also if you have not already, feel free to write to our Customer Support for assistance.

  • Clicks and pops with flex time and fades

    I am getting clicks and pops on tracks using flex time and fades. Any suggestions?
    Thanks

    Probably the simplest solution to this bug (it appears to not be creating zero crossed edits when creating a fade over flexed audio) is to cut the area to be faded into small region and render (or bounce in place) the small section, then fade it.

  • Clicks and pop with muvo

    hi all
    i have a muvo tx 28mb
    i have experienced playback issues . while listening to music i can hear click or pop randomly.
    my firmware is .02.0
    should update it or i can damage my player?
    i am thinking change earphones bundled with muvo..could be a solution?
    any suggest?
    thanks in advance

    hi all
    i have a muvo tx 28mb
    i have experienced playback issues . while listening to music i can hear click or pop randomly.
    my firmware is .02.0
    should update it or i can damage my player?
    i am thinking change earphones bundled with muvo..could be a solution?
    any suggest?
    thanks in advance

Maybe you are looking for

  • Directory logical path to directory physical path

    Hello experts, I have question related to getting path from defined earlier logcal path in FILE transaction. I know there are FMs called 'FILE_GET_NAME' and 'FILE_GET_NAME_AND_LOGICAL_PATH' but they are not solving my problem. Let's say I know only p

  • HT204291 I did the update my apple tv this morning and now my air play is not working ?

    I did this morning update in my Apple TV and now my air play doesn't work!

  • IWeb, Podcasts, and RSS feeds

    http://web.mac.com/realityramble So I feel like I made a grave error in choosing iWeb to create and .mac to host my podcast. After creating the podcast page in iWeb and publishing it to .mac and the iTunes Music Store, I noticed that the podcast didn

  • How to remove a repeating 75 to the inch 'quarter-moon' pattern?

    I am working with old images, including those from newspapers, and have become quite adept at repairing them with PS. I am familiar with most of the techniques for removing scratches, dust and half-tones, but I have difficulty in dealing with one par

  • Help with XIRR Function

    Is there any way in Numbers 08 to add an XIRR Function. This is one of the most useful functions for calculating Total Return of any Portfolio and it isn't included. Is it included in Numbers 09? I really miss this Function Thanks in advance.