Level meter stops randomly during input

using 64bit Logic 9- latest version. While using a channel with audio input with "I" selected in channel strip, the level meter will randomly go flat but sound is still passing. usually toggling the "R" box will get it working again, but repeatedly it will drop out- anyone experience this?? if so, any conclusions?
thanks!

I suspect a problem with your audio interface. The next time it happens, you could test that theory by trying this. Open Preferences > Audio and uncheck "Enabled" (under "Core Audio"). Press the button Apply Changes. Then check Enabled, and Apply Changes again. Does that fix it? Maybe your audio drivers need an update, or there is some other issue related to your audio interface.

Similar Messages

  • Nokia N97 Mini recorder stops randomly

    why does the recorder stops randomly during a recording? My previous NOkia 5800 Xpressmusic also had this problem. I never reach the maximum recording time of one hour. My mobile phone is lying next to me and not receiving any calls or messages, with 'silent' profile active.

    Hi, I'm having some similar problems with mine also, i was having a look on line just now and came across the link below, infor on how to hard reset your nolia n97, I haven't tried it as of yet as mine works on and off, on at the moment, but if yours is completely kaput, it could be worth a try. Hope it works for you, good luck
    http://mynokiablog.com/2009/07/18/how-to-hard-reset-your-nokia-n97/

  • Input level meter in Audition CS5.5

    I can't find an input level meter in audition CS5.5. I have to go my windows 7 control panel find me device and set the levels. So, to set levels I have to have two windows open, one control panel audio adjustment window and one soundbooth window where I actually record and watch meter, then I erase and record for real.
    I must be overlooking something -- every other audio program I have ever used lets you set input levels while watching the meter. I've been through the help, and Googled it and I can't figure it out. In Audition, how do I set input levels from within Audition CS5.5 (not in windows 7 control panel)?
    Thanks!

    Short answer, no!
    Audition merely records EXACTLY what the input device is sending to it.  In normal useage the "level" of the signal to be recorded would be set externally, e.g. by use of an audio mixer or a "gain" control on the input device.  I assume you are recording by using a line or mic plugged straight to your computer?  In which case, the Windows Audio Control Panel is the only way to set levels.
    Jeff

  • Signal Level Meter

    Signal Level Meter
    CATV Signal Level Meter GAO2002 is specially designed for CATV system maintenance. Signal Level Meter GAO2002 features small size (160mm x 130mm x 65mm) , light weight (368g including battery), long operating time (more than 6 hours), and well-built from appearance to architecture. Signal Level Meter GAO2002 combines the most practical functions and makes them easy to use. What is even better about this piece of equipment is that its added aseismatic design makes it more durable than you can expect. Tests show that it can continue to work well after being dropped from 5 meters high. It supports Level, V/A, Tilt and Trunk Level testing as well as testing two channels at the same time.
    CATV Signal Level Meter GAO2002 Specifications:
    Frequency
    Frequency range: 46MHz ~ 860MHz
    Frequency step: 50kHz, 1MHz, 10MHz and 100MHz
    Level Measurement
    Range: 20dBuV ~ 50dBuV
    Accuracy: ±20dB (20ºC ± 5ºC)
    Resolution: 0.5dB
    Carrier to Noise (C/N)
    Option Range: 20dBuV ~ 50dBuV
    Input signal range: ≥ 85dB
    Measure accuracy: ± 2.5dB (20ºC ± 5ºC) shut off the carrier
    Resolution: 0.5dB
    Voltage
    Input range: 1~100V (AC/DC)
    Measured accuracy: ±2V
    Resolution: 1V
    Miscellaneous
    Size: 160mm x 130mm x 65mm
    Weight: 368g (including battery)
    Working: -10ºC ~ 40ºC
    Audio: Built-in speaker (Auto on in single frequency mode)
    Battery
    Built-in battery: 3.6V/2.1AH Ni-MH
    Working time: More than 6 hours (Shut off the audio and LCD backlight)
    Charging time: 10 ~ 12 hours (power off)
    Gao Tek Inc.

    Do you have drivers for LabVIEW?
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    "It’s the questions that drive us.”
    ~~~~~~~~~~~~~~~~~~~~~~~~~~

  • Level Meter Plug In -VS- Output 1/2 meter...Inconsistencies...

    I'm mixing an 18 minute long recording for vinyl release. The vinyl pressing company has a minimum dbl on recordings they master and press. If the level is under, they charge hundreds of dollars more to re master and increase the volume via massive compression.
    So to check and double check the overall volume in Logic Express 8, all I can find for a meter is the "Level Meter" in the visualization plug in toolbox. So I have the Level Meter "plugged" into the Output 1/2 track...The problem with the Level Meter is that it is showing levels around 8 dbl lower than the Output 1/2 meter. This could potentially be an expensive discrepancy not to mention may have a negative effect on the end product's sound quality.

    Eriksimon wrote:
    If you used a meter as an insert, it comes, like other effects plugins, before the fader. Sorry, I didn't read attentively the first time.
    Still, the effect is the same as pre-fader metering. The signal passes the meter before it goes to the fader. If you turn pre-fader metering on you'll see that your faders don't affect the channel strip level meters anymore and behave like inserted level meters as well.
    So if you lower the fader on channel 1&2 so you no longer see clipping, how does it work?
    1. Does it lower the output simply telling you that you are not clipping going out from fader 1&2?
    or
    2. Does it lower the input from all contributing channels so that the source coming to fader 1&2 no longer clips?

  • JMF Challenge - Create audio volume level meter for rtp Audio Transmitter

    Based on the following code at: http://java.sun.com/products/java-media/jmf/2.1.1/solutions/RTPConnector.html
    The challenge is to build an Audio level meter, you know the lights that go up and down to your voice like on a stereo Hi-Fi system.
    If we can start with ideas, give it time the challenge will be complete for all to use.

    Heres the finished codec code, it just spits out System.out's with the peak level.
    import javax.media.*;
    import javax.media.protocol.*;
    import javax.media.protocol.DataSource;
    import javax.media.format.*;
    import javax.media.control.TrackControl;
    import javax.media.control.QualityControl;
    import javax.media.control.SilenceSuppressionControl;//###### delete if no silence.
    import javax.media.rtp.*;
    import javax.media.rtp.rtcp.*;
    import com.sun.media.rtp.*;
    public class AudioLevelMeterCodec implements Effect {
        /** The effect name **/
        private static String EffectName="AudioLevelMeterCodec";
        /** chosen input Format **/
        protected AudioFormat inputFormat;
        /** chosen output Format **/
        protected AudioFormat outputFormat;
        /** supported input Formats **/
        protected Format[] supportedInputFormats=new Format[0];
        /** supported output Formats **/
        protected Format[] supportedOutputFormats=new Format[0];
        /** selected Gain **/
        protected float gain = 2.0F;
        /** initialize the formats **/
        public AudioLevelMeterCodec() {
            supportedInputFormats = new Format[] {
                new AudioFormat(
                        AudioFormat.LINEAR,
                        Format.NOT_SPECIFIED,
                        8,
                        Format.NOT_SPECIFIED,
                        AudioFormat.LITTLE_ENDIAN,
                        AudioFormat.SIGNED,
                        8,
                        Format.NOT_SPECIFIED,
                        Format.byteArray
            supportedOutputFormats = new Format[] {
                new AudioFormat(
                        AudioFormat.LINEAR,
                        Format.NOT_SPECIFIED,
                        8,
                        Format.NOT_SPECIFIED,
                        AudioFormat.LITTLE_ENDIAN,
                        AudioFormat.SIGNED,
                        8,
                        Format.NOT_SPECIFIED,
                        Format.byteArray
        /** get the resources needed by this effect **/
        public void open() throws ResourceUnavailableException {
        /** free the resources allocated by this codec **/
        public void close() {
        /** reset the codec **/
        public void reset() {
        /** no controls for this simple effect **/
        public Object[] getControls() {
            return (Object[]) new Control[0];
         * Return the control based on a control type for the effect.
        public Object getControl(String controlType) {
            try {
                Class cls = Class.forName(controlType);
                Object cs[] = getControls();
                for (int i = 0; i < cs.length; i++) {
                    if (cls.isInstance(cs))
    return cs[i];
    return null;
    } catch (Exception e) { // no such controlType or such control
    return null;
    /************** format methods *************/
    /** set the input format **/
    public Format setInputFormat(Format input) {
    // the following code assumes valid Format
    inputFormat = (AudioFormat)input;
    return (Format)inputFormat;
    /** set the output format **/
    public Format setOutputFormat(Format output) {
    // the following code assumes valid Format
    outputFormat = (AudioFormat)output;
    return (Format)outputFormat;
    /** get the input format **/
    protected Format getInputFormat() {
    return inputFormat;
    /** get the output format **/
    protected Format getOutputFormat() {
    return outputFormat;
    /** supported input formats **/
    public Format [] getSupportedInputFormats() {
    return supportedInputFormats;
    /** output Formats for the selected input format **/
    public Format [] getSupportedOutputFormats(Format in) {
    if (! (in instanceof AudioFormat) )
    return new Format[0];
    AudioFormat iaf=(AudioFormat) in;
    if (!iaf.matches(supportedInputFormats[0]))
    return new Format[0];
    AudioFormat oaf= new AudioFormat(
    AudioFormat.LINEAR,
    iaf.getSampleRate(),
    8,
    iaf.getChannels(),
    AudioFormat.LITTLE_ENDIAN,
    AudioFormat.SIGNED,
    8,
    Format.NOT_SPECIFIED,
    Format.byteArray
    return new Format[] {oaf};
    /** gain accessor method **/
    public void setGain(float newGain){
    gain=newGain;
    /** return effect name **/
    public String getName() {
    return EffectName;
    /** do the processing **/
    public int process(Buffer inputBuffer, Buffer outputBuffer){
    // == prolog
    byte[] inData = (byte[])inputBuffer.getData();
    int inLength = inputBuffer.getLength();
    int inOffset = inputBuffer.getOffset();
    byte[] outData = validateByteArraySize(outputBuffer, inLength);
    int outOffset = outputBuffer.getOffset();
    int samplesNumber = inLength / 2 ;
    int valueMin = 255;
    int valueMax = 0;
    for (int i=0; i< samplesNumber;i++) {
    int tempL = inData[inOffset ++];
    int tempH = inData[inOffset ++];
    int sample = tempH | (tempL & 255);
    if (sample > valueMax) {
    valueMax = sample;
    if (sample < valueMin) {
    valueMin = sample;
    System.out.println((valueMax - valueMin) - 256);
    System.arraycopy(inData,0,outData,0,inData.length);
    // == epilog
    updateOutput(outputBuffer,outputFormat, inData.length, 0);
    return BUFFER_PROCESSED_OK;
    * Utility: validate that the Buffer object's data size is at least
    * newSize bytes.
    * @return array with sufficient capacity
    protected byte[] validateByteArraySize(Buffer buffer,int newSize) {
    Object objectArray=buffer.getData();
    byte[] typedArray;
    if (objectArray instanceof byte[]) { // is correct type AND not null
    typedArray=(byte[])objectArray;
    if (typedArray.length >= newSize ) { // is sufficient capacity
    return typedArray;
    System.out.println(getClass().getName()+
    " : allocating byte["+newSize+"] ");
    typedArray = new byte[newSize];
    buffer.setData(typedArray);
    return typedArray;
    /** utility: update the output buffer fields **/
    protected void updateOutput(Buffer outputBuffer,
    Format format,int length, int offset) {
    outputBuffer.setFormat(format);
    outputBuffer.setLength(length);
    outputBuffer.setOffset(offset);

  • BlackBerry curve 9220 reboots randomly during normal usage

    BlackBerry 9220  reboots randomly during normal usage- Please suggest some good solution. I have already done below things:-
    1) Software Update
    2) Insert new battery
    3) Placed thin paper 
    4) Safe mode
    5) Security wipe.
    If you guys have other then above option, please suggest me.
     Blackberry future is black

    Hello,
    Given all you have already tried, I recommend the "Bare Bones OS Reload Procedure" to attempt to narrow down the precise causal item:
    Load your OS "bare bones"...if anything is optional, do not install it.
    If the behavior presents immediately, then try a different OS with step 1
    If the behavior does not immediately present, then run for as long as it takes for you to be sure that the behavior will not present.
    Add one thing -- no matter how tempting, just one.
    If the behavior does not present immediately, then again run for long enough to be sure it will not have the same problem
    Repeat steps 4 and 5 until all things are loaded or the behavior presents
    When the behavior presents, you know the culprit...the last thing you loaded.
    If the behavior does not re-present, then you know that either step 1 or 2 cured it.
    If the behavior presents no matter what, then you likely have a hardware level issue for which no amount of OS or software can cure.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Adobe BRIDGE CS 5 PHOTO DOWNLOADER freezes and/or stops working during download after 2 years of use

    Adobe BRIDGE CS 5 PHOTO DOWNLOADER freezes and/or stops working during download after 2 years of use. I have uninstalled/re installed twice, cleaned system, adjusted Bridge settings with no change. And I have found no helpful troublshooting tips in forum or on web.

    Does it freeze with other type of cards.  Have seem some post that suggest an imbedded CODEC on the flash card can cause file corruption in Bridge and Mac Finder.
    To access the crash log it is officially called the event log.  To access us OS Help. 

  • HT1600 My apple tv stopped working during a movie. I tried to reload software .it deleted it, but won 't reload it.

    My apple tv stopped working during a movie. I tried to reload software .it deleted it, but won 't reload it.

    Welcome to the Apple Community Turbomedic.
    If your problem persists get yourself a micro USB cable (sold separately), you can restore your Apple TV from iTunes:
        1.    Remove ALL cables from Apple TV. (if you don't you will not see Apple TV in the iTunes Source list)
        2.    Connect the micro USB cable to the Apple TV and to your computer.
        3.    Reconnect the power cable (only for Apple TV 3)
        4.    Open iTunes.
        5.    Select your Apple TV in the Devices list, and then click Restore.
    (You may already have a micro USB cable if you have a camera or other digital device)

  • Apple TV 2 all of a sudden has trouble streaming.  I stream from my desktop computer's iTunes for movies, and tonight it started stopping randomly mid movie and saying it wasn't connected.  Any ideas?  Router?  ATV dying?

    Apple TV 2 all of a sudden has trouble streaming.  I stream from my desktop computer's iTunes for movies, and tonight it started stopping randomly mid movie and saying it wasn't connected.  Any ideas?  Router?  ATV dying?
    It just says not connected, and as soon as it bails to menu, it connects again and will play for another minute before doing the same thing all over again.

    Hello David, 
    Thank you for contributing to the Apple Support Communities. 
    It sounds like your Apple TV is having trouble streaming videos from iTunes on your computer. This symptom could have a variety of causes, and I'd suggest the following initial troubleshooting steps. 
    In addition to restarting your devices (Apple TV, computer, router), try the tips in this article, starting with "Check your home network:"
    Apple TV (2nd and 3rd generation): Troubleshooting playback performance - Apple Support
    All the best,
    Jeremy 

  • Access Connections main service stops randomly

    Hi all,
         I have a T60 at work with the latest version of Access Connections.  Over the last few weeks, my Access Connections will randomly show that it disconnects in my system tray.  However, I am still connected to my company's network.  Our tech group came out and said that they are seeing instances of the Access Connection Main service just stopping randomly.  When I go into Services, I can verify that it has stopped.  This happens anywhere from 20-60 mins after logging onto our network.  It also only happens when I am docked to my docking station, not when I am wireless.  If I have a tech remote into my machine and restart the service, it starts up just fine again. 
    Any thoughts as to what might be causing the service to stop like this?  It doesn't present a problem if I stay docked...but if I undock and try to go wireless, it doesn't do the auto switching because it's frozen...so I always have to reboot.

    Hi,
    in this situation make following:
    - go to services and open Properties of both AC Services and in the Recovery tab set all 3 options to "Restart the Service"
    - In case this should not change the situation, then go to "Log On" tab and select "This account" and insert your name and password.
    In this situation would be also good to check the Event log if there is any notice, why the Service stopped working.
    Any info is appreciated.
    Cheers

  • Sound Level Meter vi

    It would be great if I could manage to have a Sound Level Meter vi. I do not have SVT.
    Right now a .vi sharing would be best, but in my mind it is to start to make my own, this kind of tasks make you learn. The problem is time.
    Any sharings? Suggestions? I found this in an old post, but, I get this error:
    "Poly VI 'AI Acquire Waveform.vi': subVI is missing.
    Attachments:
    SPL.llb ‏88 KB

    AI Acquire Waveform is part of the old traditional DAQ API.  You can either replace the traditional DAQ VIs with DAQmx VIs or install traditional DAQ (provided you are on a supported, 32-bit OS).  I would recommend the former.  The sound level algorithms should still be good.  Let us know if you run into issues.
    This account is no longer active. Contact ShadesOfGray for current posts and information.

  • Z30 stopped working during 10.2.1 update

    My Z30 stopped working during the 10.2.1 update (Fido). The screen is completely dark, the only sign of life is the blinking red light. The pattern is 1 long blink followed by a pause and then 6 quick blinks. I have purchased tech support for 50$ without any resolution. Now on day 4 of issue.
    Does anyone have any idea how to get my  phone  back to life????
    Here is what I have tried already:
    I tried reloading the OS via bb link. Keep getting a error: "error communicating with device"
    I tried reinstalling my bb link and reloading the OS
    I tried reloading the OS via online os update
    The same things were tried by tech support and no luck there either.
    I did all these things with and without sim/micro SD

    Try a new USB cable. If doesn't work turn phone off plug into computer with link open and then turn on when plugged in then hit reinstall. Phone sounds like it is bricked. See if this helps.

  • Diagram or vi for Sound Pressure Level Meter (SPL)

    Need help for implementing a Sound Pressure Level Meter (SPL) with LabVIEW 7.1 or 6.3....I must use a microfone and a laptop for my project.....Need diagram or ready vi ....!!!
    How can I make an A,B,C Weighting Filter vi for my Sound Pressure Level Meter project....???
    If there is one already made or you can give me any help please send it to me.......[email protected]
    Thanks.....

    Search the archives. A similar question about the weighting filters was posted within the past month or two, if I recall correctly. I am not aware of any ready-built VIs, but the filter specs are published (Google A-weighting).
    Also be careful with the frequency response of inexpensive microphones. They can skew the results substantially if you do not have some way to measure and compenste for the response.
    Lynn

  • Audio Level Meter

    Does anyone know where I can find an audio level meter that is either written in Swing or can be integrated with my Swing app?
    I have not found anything in my web searches that really makes sense.

    I've just started looking for the exact same thing. I'm glad
    you posted first, I think you've explained the need better than I
    would have been able to. I was thinking I may have to use an
    embeded SWF, but the only thing I've found was in AS3.
    http://livedocs.adobe.com/flex/3/html/help.html?content=Working_with_Sound_14.html
    I too will be checking out the asFFT Xtra.

Maybe you are looking for