Logic 10.0.07 keeps stopping recording at the same time every time

Logic 10.0.07 keeps stopping recording at the same time every time 3.14!
How can i get it to extend on recording time?
Model Name: Mac Pro
  Model Identifier: MacPro6,1
  Processor Name: 6-Core Intel Xeon E5
  Processor Speed: 3.5 GHz
  Number of Processors: 1
  Total Number of Cores: 6
  L2 Cache (per Core): 256 KB
  L3 Cache: 12 MB
  Memory: 32 GB
  L3 Cache: 12 MB
  Memory: 32 GB
Model Name:
  L3 Cache: 12 MB
  Memory: 32 GB
Model Name: Mac Pro
  Model Identifier: Mac
  L2 Cache (per Core): 25
Model Name: Mac Pro
  Model Identifier: MacPro
  L3 Cache: 12 MB
  Memory: 32
  L3 Cache: 12 MB
  Memory: 32 GB

Do you have auto drop enabled? Look for a red bar at the top where the green cycle bar is. It will punch you out at the end of the red bar.

Similar Messages

  • 16 channels of audio recording at the same time with a MAC BOOK?

    Hi,
    I want to know how many channels of audio I can record at the same-time with a MAC BOOK (2.16GHz Intel Core 2 Duo, 1GB memory 120GB hard drive, Double-layer SuperDrive), firewire audio device and Logic Pro 8?
    You see I am aiming to record a live gig and I want to come into a firewire recording interface with 16 channels of audio all at the same time (24-bit, 44Khz) Does anyone know if this is possible? Or am I looking for trouble? No plug-ins will be used just record straight in. Anyone have some experience with this?
    Thanks.

    Ok, like this:
    Macbook - FW Port - FW Cable -In- MOTU Traveler -Out- External Harddrive.
    Firewire is capable of chaining units.
    Also plugged into your motu traveler will be an optical cable coming from the ADA.
    This will carry the 8 channels of audio it outputs.
    Also another good thing to do is to also have an optical cable FROM the optical output of your Traveler into the Behringer's input.
    That way you can sync the Behringer's digital clock to that of the Traveler, giving you a slightly better sounding signal that if you were to sync the traveler to the Behringer. This is simply because the traveler has a better quality digital clock than the Behringer unit so it's best to use that. To do this you just select "Adat input" on the back of the Behringer, and leave the Travelers sync to "Internal Clock". It is only a very very slight difference and you may not be able to notice the difference but for the cost of an optical cable it's worth doing.
    It will all make a lot more sense when you have the two units and the harddrive all plugged in.

  • I am using the PCI-6110E/​6111E with the NI-DAQ software version6.7​.Is there a way to record at the same time analog and digital channels?I​f,ye

    s can I have timestamps for each sample?I mean,is there a notion of time information on this board?Finally,is there a way to know ,in the double buffer's case,the number of samples in the halfbuffer which is not full if the acquisition stops by a trigger?.I am using the PCI-6110E/6111E with the NI-DAQ software version6.7.Is there a way to record at the same time analog and digital channels?If,yes can I have timestamps for each sample?I mean,is there a notion of time information on this board?Finally,is there a way to know ,in the double buffer's case,the number of samples in the halfbuffer which is not full if the acquisition
    stops by a trigger?.
    Thank you for your interest in advance

    s can I have timestamps for each sample?I mean,is there a notion of time information on this board?Finally,is there a way to know ,in the double buffer's case,the number of samples in the halfbuffer which is not full if the acquisition stops by a trigger?.PALE wrote:
    >
    > I am using the PCI-6110E/6111E with the NI-DAQ software version6.7.Is
    > there a way to record at the same time analog and digital
    > channels?If,yes can I have timestamps for each sample?I mean,is there
    > a notion of time information on this board?Finally,is there a way to
    > know ,in the double buffer's case,the number of samples in the
    > halfbuffer which is not full if the acquisition stops by a trigger?.
    Start by looking around the examples that ship with LabVIEW (if you are
    using LabVIEW).
    Also look around zone.ni.com for general data acquisition information &
    examples. A good site.
    Mark

  • Reading and recording at the same time with AudioUnit

    Hi,
    I am trying to read and record at the same time on the iPhone with AudioUnit. For the reading part I made an AUGraph which works fine, constructed like that:
    NewAUGraph(&_graph);
    _outputUnitComponentDescription.componentType = kAudioUnitType_Output;
    _outputUnitComponentDescription.componentSubType = kAudioUnitSubType_RemoteIO;
    _outputUnitComponentDescription.componentManufacturer = kAudioUnitManufacturer_Apple;
    _outputUnitComponentDescription.componentFlags = 0;
    _outputUnitComponentDescription.componentFlagsMask = 0;
    AUGraphAddNode(_graph, &_outputUnitComponentDescription, &_outputNode);
    _mixerUnitComponentDescription.componentType = kAudioUnitType_Mixer;
    _mixerUnitComponentDescription.componentSubType = kAudioUnitSubType_MultiChannelMixer;
    _mixerUnitComponentDescription.componentManufacturer = kAudioUnitManufacturer_Apple;
    _mixerUnitComponentDescription.componentFlags = 0;
    _mixerUnitComponentDescription.componentFlagsMask = 0;
    AUGraphAddNode(_graph, &_mixerUnitComponentDescription, &_mixerNode);
    AUGraphConnectNodeInput(_graph, _mixerNode, 0, _outputNode, 0);
    AUGraphOpen(_graph);
    AUGraphNodeInfo(_graph, _outputNode, NULL, &_outputUnit);
    AUGraphNodeInfo(_graph, _mixerNode, NULL, &_mixerUnit);
    _generatorUnitComponentDescription.componentType = kAudioUnitType_MusicDevice;
    _generatorUnitComponentDescription.componentSubType = kAudioUnitSubType_RemoteIO;
    _generatorUnitComponentDescription.componentManufacturer = kAudioUnitManufacturer_Apple;
    _generatorUnitComponentDescription.componentFlags = 0;
    _generatorUnitComponentDescription.componentFlagsMask = 0;
    for(int i=0; i< [_urlList count]; i++)
    SoundBuffer* soundBufferTemp = [_bufferSoundList objectAtIndex:i];
    AURenderCallbackStruct renderCallbackStruct;
    renderCallbackStruct.inputProc = MyFileRenderCallback;
    renderCallbackStruct.inputProcRefCon = soundBufferTemp;
    AudioStreamBasicDescription* inputAsbd = [soundBufferTemp getASBD];
    err = AudioUnitSetProperty(_mixerUnit,
    kAudioUnitProperty_StreamFormat,
    kAudioUnitScope_Input,
    i,
    inputAsbd,
    sizeof(AudioStreamBasicDescription));
    UInt32 zero = 0;
    err = AudioUnitSetProperty(_mixerUnit,
    kAudioOutputUnitProperty_EnableIO,
    kAudioUnitScope_Input,
    kInputBus,
    &zero,
    sizeof(zero));
    err = AUGraphSetNodeInputCallback(_graph,
    _mixerNode,
    i,
    &renderCallbackStruct);
    This works well, for the recording AudioUnit I did the following:
    OSStatus err;
    AudioComponentDescription audioComponentDescription;
    AudioComponent audioComponent;
    audioComponentDescription.componentType = kAudioUnitType_Output;
    audioComponentDescription.componentSubType = kAudioUnitSubType_RemoteIO;
    audioComponentDescription.componentManufacturer = kAudioUnitManufacturer_Apple;
    audioComponentDescription.componentFlags = 0;
    audioComponentDescription.componentFlagsMask = 0;
    audioComponent = AudioComponentFindNext(NULL, &audioComponentDescription);
    err = AudioComponentInstanceNew(audioComponent, &_audioUnit);
    UInt32 size;
    size = sizeof(AudioStreamBasicDescription);
    err = AudioUnitGetProperty(_audioUnit,
    kAudioUnitProperty_StreamFormat,
    kAudioUnitScope_Input,
    1,
    &_soundFileDataFormat,
    &size);
    _soundFileDataFormat.mSampleRate = 44100.00;
    AudioUnitSetProperty(_audioUnit,
    kAudioUnitProperty_StreamFormat,
    kAudioUnitScope_Input,
    kInputBus,
    &_soundFileDataFormat,
    size);
    AudioUnitSetProperty(_audioUnit,
    kAudioUnitProperty_StreamFormat,
    kAudioUnitScope_Output,
    kOutputBus,
    &_soundFileDataFormat,
    size);
    AURenderCallbackStruct renderCallbackStruct;
    renderCallbackStruct.inputProc = MyRecorderCallback;
    renderCallbackStruct.inputProcRefCon = self;
    UInt32 one = 1;
    UInt32 zero = 0;
    err = AudioUnitSetProperty(_audioUnit,
    kAudioOutputUnitProperty_EnableIO,
    kAudioUnitScope_Input,
    kInputBus,
    &one,
    sizeof(one));
    err = AudioUnitSetProperty(_audioUnit,
    kAudioOutputUnitProperty_EnableIO,
    kAudioUnitScope_Output,
    kOutputBus,
    &zero,
    sizeof(zero));
    err = AudioUnitSetProperty (_audioUnit,
    kAudioOutputUnitProperty_SetInputCallback,
    kAudioUnitScope_Global,
    0,
    &renderCallbackStruct,
    sizeof(AURenderCallbackStruct));
    err = AudioUnitInitialize(_audioUnit);
    Then in I setup a file to write in:
    - (void) openFile
    OSStatus err;
    err = ExtAudioFileCreateWithURL((CFURLRef) _soundFileUrl,
    kAudioFileCAFType,
    &_soundFileDataFormat,
    NULL,
    kAudioFileFlags_EraseFile,
    &_extAudioFileRef);
    err = ExtAudioFileSetProperty(_extAudioFileRef,
    kExtAudioFileProperty_ClientDataFormat,
    sizeof(AudioStreamBasicDescription),
    &_soundFileDataFormat);
    err = ExtAudioFileWriteAsync(_extAudioFileRef,
    0,
    NULL);
    All this things works well (I check by printing err in the log which I removed here for clarity).
    And then in the callback for recording I do the following:
    static OSStatus MyRecorderCallback(void *inRefCon,
    AudioUnitRenderActionFlags* inActionFlags,
    const AudioTimeStamp* inTimeStamp,
    UInt32 inBusNumber,
    UInt32 inNumFrames,
    AudioBufferList* ioData)
    OSStatus err= noErr;
    AudioUnitRecorder* auRec = (AudioUnitRecorder*) inRefCon;
    [auRec allocateAudioBufferList:1 size:inNumFrames*4];
    err = AudioUnitRender(auRec.audioUnit,
    inActionFlags,
    inTimeStamp,
    inBusNumber,
    inNumFrames,
    auRec.audioBufferList);
    err = ExtAudioFileWriteAsync(auRec.extAudioFileRef,
    inNumFrames,
    auRec.audioBufferList);
    return err;
    (Then I close the file after recording at the same time I close the AudioUnit)
    Now the strange thing is that all this works perfectly well in the simulator: I can record and play at the same time but on the device, the callback for recording is not ran (I check by trying to print something in the log in the callback function.) which men no writing in the file and an empty file in the end.
    Any one has any idea of what could be causing this?
    Thanks
    Alexandre

    Just in case some one might need it, I solved my problem:
    I simply needed to initialize the AudioSession before playing/recording. I did so with the following code:
    OSStatus err;
    AudioSessionInitialize(NULL, NULL, MyInterruptionListener, self);
    UInt32 sessionCategory = kAudioSessionCategory_PlayAndRecord;
    err = AudioSessionSetProperty (kAudioSessionProperty_AudioCategory,
    sizeof (sessionCategory),
    &sessionCategory);
    AudioSessionSetActive(TRUE);

  • I want to disable "restore previous session" and enable "History record" at the same time.

    I want to disable "restore previous session" and enable "History record" at the same time.
    Because I don't want others to access my account such as "Gmail", "Facebook". But I want firefox to record my browsing history.
    What should I do?

    I managed to remove the "Restore Previous Session" button from the home page by changing my default home page with this : www.google.com/firefox/ (the default home page from the previous versions of Firefox). It worked for me, I hope it works for you too.

  • All apps stop working at the same time?

    AOL Radio
    Banner Free
    Bubble Wrap
    Clock Art
    iChoose
    Kaleidoscope Lite
    Know on wood
    Magic 8 Ball
    Speed Box
    After getting those 'free apps' from the app-store (directly with my iPhone3G)... they all worked fine for 1-2 days. I ran them many times without problems.
    Now they all stopped working at the same time. (They attempt to load... their main screens appear... then they just exit back to HOME instead.) Web-apps and built-in Apple software, all works fine.
    I've tried powering the iphone up/down several times.
    I've also tried deleting 1-2 of the apps from the phone... and the re-syncing.
    Same problem.
    Are there 'fixes' better than:
    Drive 1,000 miles back home and re-sync all your apps.
    Restore the phone and lose all my settings.
    Search, find, download, and re-install all the apps over again. (What if I had >100????)
    I need a 100% reliable phone... all the time.
    At any time... all my apps might instantly stop working for unknown reasons???
    (Itunes=v7.7.1.11 iPhone3G=2.0-3A347 PC=Windows Xp Pro)

    same thing happened to me, I think it has something to do with itunes 7.7.1
    I'm beginning to think you are right... but is there another way to copy things
    from PC to iPhone... without ever using iTunes?
    or... maybe it's not iTunes:
    ... since I downloaded all my apps direct from iStore->iPhone... wouldn't
    sync'ing them only copy them from iPhone->PC? (So how could iTunes be the
    problem... since it shouldn't really be 'writing' any apps TO the iPhone.)
    Or would copying songs (I only did 1) and MP4 video (I only did 1)... from
    PC->iPhone... somehow affect all my apps?
    With all the powerful things iTune does... I would think a simple "copy command" from PC to iPhone... wouldn't run the risk of damaging all my apps on the iPhone. Or could it?

  • Am trying to record a basic guitar track while I sing along.  I don't want my vocals to be recorded at the same time but the internal mic seems to be picking up the vocal and guitar sounds.  I tried System Preferences, Sound, Line In - Audio Line Input.

    I am trying to record a basic guitar track while I sing along.  I don't want my vocals to be recorded at the same time but the internal mic seems to be picking up the vocal and guitar sounds.  I tried System Preferences, Sound, Line In - Audio Line Input.  It seems to be a common problem in Garageband for the Mac, ipad and iphone. 

    for me it turned out that the jack into the iMac was loose.  Once I fiddled with it everything worked okay

  • Go to detail page and update record at the same time

    Hi guys,
    I`m very new to dreamweaver and have no coding skills, so
    please be gentle.
    I`m have created a mail box and it all works fine, the
    problem i`m having is that I want to be able to tag wether a
    message has been read or not.
    So the subject has to be a link so when someone clicks the
    subject you are redirected to the read message page and it displays
    the message in full.
    My question is there a way to go to detail page and update
    record at the same time?
    I`m using ASP and the mysql read or not field is a SET

    "mrmidjam" <[email protected]> wrote in
    message
    news:fghrpf$7s2$[email protected]..
    > Hi guys,
    >
    > I`m very new to dreamweaver and have no coding skills,
    so please be
    > gentle.
    >
    > I`m have created a mail box and it all works fine, the
    problem i`m having
    > is
    > that I want to be able to tag wether a message has been
    read or not.
    >
    > So the subject has to be a link so when someone clicks
    the subject you are
    > redirected to the read message page and it displays the
    message in full.
    >
    > My question is there a way to go to detail page and
    update record at the
    > same
    > time?
    You can use the Update Record ZerverBehavrior and then have
    it redirect to
    the detailpage.
    Joris

  • Adobe Media Encoder for Premiere Pro CS4 stops working on the same frame every time...

    I currently have Adobe Premiere Pro CS4 and have never had these issues exporting before. My timeline is less than 3 minutes long, but it does deal with multiple big files. It rendered perfectly and it plays perfectly in the timeline. When I try to export it using Media Encoder, however, it freezes at the same frame every time (which is actually only a few seconds in!) and then crashes, so that I have to force quit. I have tried exporting it as many different codecs and the problem persists... same frame. I tried creating a new project entirely and whipping together a few titles and exporting that to see if it just won't export anything at all. The new project exported just fine, however, which I suppose is good news. But yeah, my work on that other project is very important to me and I reallllly want to export it. Please help!

    Hi Jim! Thank you for your reply. I think you are right -- and that it lies in the audio somehow!
    It turns out that if I choose to only export the video, and uncheck audio, it will export very well and smoothly. That's great news for me!
    However, now I am trying to work out how to get the audio exported without issues. I actually had the idea of just playing the audio in the timeline and recording it via Stereo Mix, but my Windows 7 driver has Stereo Mix disabled, so it's back to square one. Any ideas of what I can do about the corrupted audio not exporting, which works fine when played in the timeline?

  • Can't watch a programme and record at the same time.

    I rang Sky who say it's nothing to do with them. Gave me Lovedigital number. Rang them they said contact my landlord. Rang Bristol City Council, they say it's nothing to do with them.

    What I meant is the number of cables going into your Sky box. If there is only one cable going to your Sky box, that answers the question of why you can't watch one thing and record another at the same time - your Sky + box would require two inputs to do that. From what you've said it sounds like a communal dish set up. If that is right then whoever looks after that are the people you need to contact to see about the possibility of getting a double feed into your home. 

  • Streaming Live and Recording at the same time

    Currently I allow users to stream live Audio and Video and I would like to begin recording the Audio/Video at the same time.
    The only way I can figure out streaming Live and Recording is to create two NetStreams and connect with the same NetConnection and have one netstream publish "live" and the other netstream publish "record". This just doesn't seem very efficient because it would be streaming the same thing twice to the FMS.
    Is this the only way to go about this? or am I going the wrong way with this?

    What you want to do is record to FMS.  Then use NetStream.Play(filename, -1) to only play live.

  • How to record at the same time broadcast an internet tv show?

    I do an internet tv show on stickam.com and I use the flash
    live camera feed to broadcast. The website has a way to record the
    video ....but I would like to record to my hard drive. Is there a
    way to do that?
    Thanks,
    John

    well, cygwin will not be able to "zip" at the same time, nor will unix does.
    this is because "zip" can not be written/read sequentially, as gzip/compress could
    if you use tar+compress, you could do that with pipes. I tried and it seems cygwin can do pipes (I did not know). but
    mknod mypipe p
    gzip <mypipe >dmp.z &
    exp file=mypipe did not work as it would in unix
    Message was edited by:
    Laurent Schneider
    well, maybe zip could work on unix. I just remind zip/unzip as basically not working thru pipes. But under certain circumstances, it may work...

  • IPod playback + microphone record at the same time?

    Hey,
    I'm making an app that requires music to be playing at the same time as the app is recording audio through the microphone.
    Specifically, I need a volume reading from the microphone to be calculated constantly (30 times a second or so) at the same time as music is playing through the iPod app.
    I also need to be able to set the volume of the music automatically from my code (ie not by the user using a slider)
    I am currently using MPVolumeView to set the volume and AVAudioRecorder to record the microphone volume.
    Problems with this:
    MPVolumeView only allows change of volume by user interaction (AFAIK?), not by the code setting it automatically.
    Also, iOS doesn't seem to like both running at the same time... If music isn't playing, I get a readout from AVAudioRecorder of the sound its picking up but no volume slider, if the iPod is playing, I get the MPVolumeView slider, but the microphone readout does not work.
    Please help me out?
    I know this is possible, apps like IAmTPain do both tasks simultaneously (although the volume of the playback is not automatically variated).
    Thanks for any replies! :P

    Hello!
    Try to use the cloner directly for the player. It seems that all clones need a cloneableableDataSource, which is working on a player or processor:
    DataSource cloner;
    DataSource forPlay;
    DataSource forSave;
    //...get data source from the receive stream
    dsource = stream.getDataSource();
    cloner = Manager.createCloneableDataSource( dsource );// forPlay = ((SourceCloneable)cloner).createClone();
    player = Manager.createPlayer( cloner );
    //when do recording
    forSave = ((SourceCloneable)cloner).createClone();
    Processor p = Manager.createProcessor(forSave);

  • How can I read and display data with OR without recording at the same time?

    Hi all,
      This forum has been of much help to me, but I have a rather specific question I can't seem to find an answer to.  I am new to LabView, educating myself with tutorials, trial and error, and this forum. 
      Attached is what I have so far.  I would like to read data (three voltages) and write it to an excel file.  As written below, it will do nothing until I click the "Record" button, when it then takes data, displays it on the gauges and waveform chart, and writes it to a file.  What I would like it to do is display the data at all times, and record when I click the record button (while still displaying data being read).  I have tried to do this by moving the DAQ Assistant VI, gauges, and waveform graph outside of the loops, but when I do this, it will read until I press record, and then it simply records whatever value it's stuck on.  Sorry for the long post, thanks for any help. 
      --Nathan
    Attachments:
    Record and Write to File 2.vi ‏332 KB

    Sorry, I don't have any DAQ installed, so I won't comment on the DAQ parts.
    First of all, Your VI will do nothing until you (1) first set the record button to ON  and (2) press the start button in the tool bar. It almost seems that you are using the "continuous run" button. (Don't! That's not its purpose. Basically, it automatically restarts the program whenever it finishes). A toplevel VI should never stop during normal operation, so place a big while loop around all code and create a wait state that does nothing until you tell it to acquire.
    You don't need the inner while loop, simply place your code inside the big while loop (and accumulate your array data in an initialized shift register if really needed. Currently you do at the inner loop boundary for some reason). You have a big problem that the array can grow without bounds unless you clear the accumulated data once in a while or place it in a FIFO buffer of limited size. If you let ot grow forever like you do now, the program might run out of resources at one point in the future.
    Since you are appending to your file, maybe yo don't need any shift register, just use the data points of the current iteration. Place your save operations in a case structure and keep appending the new data to your file only if the case is true.
    It is also very inefficient to use highlevel file IO here,because each instance opens and closes the file. I recommend to open the file once outside the loop, then use low level IO to append, and close the file once the big loop is done.
    LabVIEW Champion . Do more with less code and in less time .

  • Inserting two records at the same time.

    Hi all,
    I have to check for concurrency in my application. My problem is that i cant use locks to implement it. Instead i need some logic which has to be handled at the back end that is oracle 10g so that when two records are inserted into the table, only one that came in earlier gets inserted.
    I need some logic to do so...Dose any one have some ideas.
    Regards,
    Ramit Mehra

    Use a Sequence as a surrogate (primary) key.
    What do you mean by "only one that cam in earlier gets inserted" ?
    What if there are 3 sessions attempting an insert ?
    Session "A" came before Session "B" and you reject Session "B".
    But, hey wait ! Session "B" came before Session "C" , so now you
    have to accept Session "B" and reject Session "C".
    How do you determine the "earlier" ? Do you use Date dataype or
    a Timestamp datatype ?

Maybe you are looking for

  • Getting File Name in Automator workflow - combine PDF

    I am using Automator to combine 2 PDF files. I would like to inherit one of the file names in the new PDF and append a standard text to the front of the file name. I am not sure how to do this. I can combine the PDFs the way I would like, but I am no

  • Flash Using Browser as Proxy for Requests

    I've been looking without success for documentation that defines the behavior of Flash (and ActiveScript) when submitting an HTTP request. I've read so far (on sites other than Adobe's) that Flash will proxy it's requests through the browser thus pic

  • My MBP does not boot in the operating system. How can I get it to work again?

    I've tried rebooting from the OS DVD but it does not do anything. Now, I can't even get the DVD out to try the MBP install disks. Is there anyway to get this working again?

  • Forms 4.5 and Oracle 8i

    Hello, we want to upgrade from Oracle 7.3 to Oracle 8i and we still want to use Forms 4.5. Are there any known problems using Forms 4.5 and Oracle 8i? Do we need some patches or are there any other things to do? Thanks and greets, Markus

  • SQL Developer 1.5.5 Tables Node Works a few times

    When I connect and then view my current users tables by expanding the Tables nodes on the left hand side it works. It will work several times bur after being logged in for a while it stops working although other portions of developer continue to func