Recording Logic live?

I'm using Logic more for some composition and one of the things I love it for is looping segments. Is there another utility I can use to record audio out of Logic that would be super simple to setup? I could do it all in Logic, I realize but it just takes so long to cut the segments, add another track, loop it, automate filters, etc. A lot of times I don't want to preserve anything for posterity, I just want to record the tracks looping and automate things live.
I'm looking for something that can record in the background with while screwing around with parameters in Logic live. Simple, and dirty. Thanks!!
There was a utility I once used called AudioCorder but I think it will only record from the microphone.

Got it working with Cycling 74's Soundflower and Audio Hijack. If anyone is interested, I can let you know how to set it up.

Similar Messages

  • Record Logic + all input live in SoundTrack pro (or other?)

    Hi All,
    I would like to record (into soundtrack pro) live sessions using logic and some inputs from the sound card.
    So of course the best way to do this would be to record all into logic and bounce the file but my live sessions are based on a cycle of various tracks set with certain sounds and/or drum paterns which I use to play live with.
    On top of that I have various inputs for other instruments and mics for vocals which are played from in Logic tracks, ending up with everything coming out of my logic output.
    To record these live sessions I have opened up SoundTrack pro and tried to record from various output but all I can get is the inputs (mics etc) without the Logic tracks.
    I have also tried Soundflower but it gave me a piercing noise when I enabled the inputs in Logic...
    Would anyone have any other idea to share please?
    Thx

    sounds like a feedback loop.
    Anyway, you can try Wiretap Pro, Wiretap Studio, and a few others, the names of which I don't recall at the moment (still on first cup of coffee). You can route and isolate the audio i/o around the machine.

  • Record Logic + all input live in SoundTrack pro

    Hi All,
    I would like to record (into soundtrack pro) live sessions using logic and some inputs from the sound card.
    So of course the best way to do this would be to record all into logic and bounce the file but my live sessions are based on a cycle of various tracks set with certain sounds and/or drum paterns which I use to play live with.
    On top of that I have various inputs for other instruments and mics for vocals which are played from in Logic tracks, ending up with everything coming out of my logic output.
    To record these live sessions I have opened up SoundTrack pro and tried to record from various output but all I can get is the inputs (mics etc) without the Logic tracks.
    I have also tried Soundflower but it gave me a piercing noise when I enabled the inputs in Logic...
    Would anyone have any other idea to share please?
    Thx

    sounds like a feedback loop.
    Anyway, you can try Wiretap Pro, Wiretap Studio, and a few others, the names of which I don't recall at the moment (still on first cup of coffee). You can route and isolate the audio i/o around the machine.

  • Logic/live sound application?

    Hello again. OK..I have this idea of using my pre-recorded Logic projects to enhance the sound of my live ensemble. (just some added percussion. Maybe some keyboard parts) I'm thinking I'll need a headphone mix for the drummer with click info. Then, be able to monitor out tracks to external sound system for mixing with the live musicians.  I would like to be able to do all this with my MacBook Pro for portability reasons.
    Where do I begin? Is this idea even doable?  Thanks....

    Hi
    Depending on your needs, this should be relatively simple to set up:
    Logic project with separate audio click outputs via a multi-output andio interface, possibly using separate additional feeds to Front of House main PA, and/or your own monitoring system. Each project could be as simple as audio file bounces of each tunes' parts/stems.
    You may also want to check out Mainstage, which may be perfect for this sort of scenario:
    http://www.apple.com/logicpro/mainstage/
    CCT

  • How do you watch and record a live h.264 stream at the same time using fmis and FMLE?

    I've read all the similar post but could not find a solution that actually works, and please no "just use the dvr or record on the FMLE suggestions" as neither will work for me.
    Some posts I've read suggest naming the stream in the FMLE to something like mp4:mystream.mp4 or mp4:mystream.f4v but then you can no longer view the stream, and according my the admin console the stream will not even publish using this syntax.
    I can view the published stream if I name the FMLE stream to something like mystream.mp4 or just mystream, but then it doesn't record at all or records as a FLV file depending on how I code the main.asc file.
    Here's one version of my main.asc, this one correctly publishes the live stream after the client triggers the joinStreams function but will not record it.
    application.onConnect = function (client, userType)
        trace("userType is " + userType);
        this.acceptConnection(client);
        //this.clientCount++;
        client.joinStreams = function (channel)
            trace("joinStreams on channel " + channel);
            liveVid = Stream.get("livevideo/" + channel + ".mp4");
            liveVid.play("hdvideo/" + channel, -1, -1);
            liveVid.record("append");
        client.clearStream = function (channel)
            trace("clearStream on channel " + channel);
            liveVid = Stream.get("livevideo/" + channel + ".mp4");
            liveVid.play(false);
            delete liveVid;
    I've been working on this for 48 hours straight, please advise.

    I think lets keep it simple, will explain what you have for watching live streams and recorded streams
    Live Publish and Play:
         FMLE Settings:
    Video Codec: H.264
    Audio Codec:<any of your choice>
    Server URI : Please put your server uri with application name here , for example i will use "rtmp://myServer/myApp"
    Stream name: livestream
        Subscriber Settings:
              Server URI :  "rtmp://myServer/myApp"          Stream name: livestream
              Mode: "live" ( i.e. ns.play("livestream",-1,-1,true)
    Playing VOD H.264 file:
         Subscriber settings:
              Server URI :  "rtmp://myServer/myApp"
              Stream name: if file name is "sample", use "mp4:sample", if file name is sample.f4v, use "mp4:sample.f4v"
              Mode: "record" ( i.e. ns.play("mp4:sample.f4v",0,-1,true)
    For DVR (Record-in-progress stream)
    If you are using FMLE and want to use "Record" option of FMLE then you need to have to dvrcast_origin application and subscrier needs to FLVPlayback 2.5 component
    If you want to use that option, do let me know i will give details later.
    For now we will use simple server-side code and FMLE as publisher.
    main.asc of "myApp"
    application.onPublish = function(myclient,mystream){
         mystream.record();
    application.onUnpublish = function(myclient,mystream){
         mystream.record(false);
    FMLE Settings:
    Video Codec: H.264
    Audio Codec:<any of your choice>
    Server URI : Please put your server uri with application name here , for example i will use "rtmp://myServer/myApp"
    Stream name: mp4:mydvrstream.f4v
        Subscriber Settings:
              Server URI :  "rtmp://myServer/myApp"          Stream name:  mp4:mydvrstream.f4v
              Mode: "live" ( i.e. ns.play(" mp4:mydvrstream.f4v",0,-1,true)
    Try out above and let me know if that works or does not work for you.

  • I just bought a docking station for my iPad so I could plug into a mixing board and record a live show.  I was disappointed at the time limitation for the recordings.  What is the maximum amount you can record a song into GB for the iPad?

    I purchased a docking station for my iPad so that I could record a live recording of my band directly from a mixing board this weekend using GarageBand.  Unfortunately, I was unaware of the song length limitations of the iPad version of this program.  Basically, was unable to capture more than 15 minutes of the gig.  I've read other conversations on this forum and can't really determine the maximum amount of time this application can record.  Can anyone tell me how long GarageBand for ipad can record at one single time and how to adjust the settings to achieve this?  Also, is anyone aware of any other apps than could be used to record a longer please share.  Thanks.
    CP

    I received an email reply from George, the Founder and CEO of Studiomini, he indicated to me that their app does not have any time limitations in regards to recording like GB does, you are only limited by the amount of free space on your iPad.  Fo what it's worth, I think the Alesis IO Dock is an amazing piece of equipment.  I would highly recommend purchasing the IO Dock and plugging your mixing board into the dock to capture your rehearsal.  Hopefully the feedback I received from Studiomini is accurate and I can capture my entire rehearsal at one time.  I hope this feedback helps.  One last note, apparently their will be a update soon to view Studiomni in the landscape view on the iPad instead of just the portrait view.

  • No records in Live Authentications

    We have not updated to 1.2.1 yet and are running 1.2.0.899. the only changes made to the system was alarm settings, which was just adding emails to alarm notification in settings.
    Four hours after the alarm notif. change we started gettings alerts that ISE had not had any authent requests, 2 days later it shows no records in LIve authent or live sessions 4 hours after the change. All subfeilds at the top(i.e., Misconfigured Network Devices, Repeat Counters) are all zero as well. Authentication still SEEMS to be working, i am still able to log into network devices and users are still getting domain access so we are really puzzled as to why nothing is being reported in the logs. On the home page of ISE, it also shows the system summary as "no data available" and we get "no heartbeat" alarms continuously and Critical : health status alerts.

    ISE 1.2 Dashboard Statics do not update
    CSCul94611
    Description
    Symptom:
    Issue with the Live dashboard in ISE 1.1.4 not displaying information and only showing "No Data Available".
    The Dash Board will run and work for awhile, but it will randomly stop updating any statistics on the dashboard.
    Data will show and is seen in the database, but never updates per incoming/outgoing endpoints.
    Live authentications will work fine as well as all users are able to be authenticated. Customer reports do not produce data.
    Seen on multiple customer's deployments with fresh installs, a fresh install with a backup from a previous 1.1.x version, as well as upgrading to 1.1.4 from any earlier 1.1.x version.
    Conditions:
    Cisco ISE 1.2 or 1.1.4
    Any browser
    Distributed or single node deployment.
    Workaround:
    The workaround that fixes this M&T corruption is to enter the following commands below:
    ms-ise-mgm01/admin# app config ise
    Selection ISE configuration option
    [1]Reset Active Directory settings to defaults
    [2]Display Active Directory settings
    [3]Configure Active Directory settings
    [4]Restart/Apply Active Directory settings
    [5]Clear Active Directory Trusts Cache and restart/apply Active Directory settings
    [6]Enable/Disable ERS API
    [7]Reset M&T Session Database
    [8]Rebuild M&T Unusable Indexes
    [9]Purge M&T Operational Data
    [10]Reset M&T Database
    [11]Refresh M&T Database Statistics
    [12]Display Profiler Statistics
    [13]Exit
    We need to select the following options:
    7 to reset the session db
    10 to reset the M&T database
    11 to refresh the statistics (Possibly do not need. Was only needed in 1 case.)
    Once you have run these commands the DashBoard should begin to display information.
    This process can take up to 12 hours to complete all three steps. Roughly 1 to 3 hours per option selected.
    Known Affected Releases:
    (1)
    1.2(0.899)

  • Can I record a live streaming concert (audio

    Is there a way to record a live streaming concert (audio & video) with Quicktime on my iMac?

    Sure.  The built-in iSight camera of all Intel iMacs supports both video and audio.  The following link shows how to use Quicktime to record video and audio with your iSight:
    http://support.apple.com/kb/HT4024
    If you wish to append that video with examples on the computer, SnapZ Pro is a great tool for screen capture:
    http://www.ambrosiasw.com/utilities/snapzprox/
    Note, SnapZ Pro is probably the easiest to record an existing webinar.  Note, when recording any webinar, you should be licensed to record the said video, or allowed to by the professor/school offering it for the use of your own instruction.

  • ERROR   OGG-01028  Incompatible record (logical EOF)

    Hi experts,
      i am getting below error in replicat side
    2015-03-13 05:19:08  ERROR   OGG-01028  Incompatible record (logical EOF) in /opt/app/database/ggs/11.2/dirdat/pp1enb6d6/pdrmain/cs034783, rba 153386999
    info replicat
    REPLICAT   replicate   Last Started 2015-03-13 05:18   Status ABENDED
    Checkpoint Lag       37:02:43 (updated 00:28:01 ago)
    Log Read Checkpoint  File /opt/app/p2enb3d6/ggs/11.2/dirdat/database/drmain/cs034767
                         2015-03-11 15:53:51.572589  RBA 179098561
    current trail file is 034767 and corrupted trail file is 034783. i think the transaction is runnin from 034767 onwards.. please confirm if we can skip the transaction as oracle note suggest and move to next good record after rba of 153386999 of trail 034783

    Hi,
    >>current trail file is 034767 and corrupted trail file is 034783. i think the transaction is running from 034767 onwards.
    Yes you can find out the end of transaction by using logdump.
    >> please confirm if we can skip the transaction as oracle note suggest and move to next good record after rba of 153386999 of trail 034783
    Do you know about that transaction? why do you want to skip it, do you know after skipping target table(s) will not be out of sync with primary.
    I would advise reading this note and see if you can recover that.
    Master Note for Oracle GoldenGate(OGG) Error OGG-01028 (Doc ID 1502276.1)
    HTH,
    Pradeep

  • How to record a live camera stream inside Adobe Media Server?

    I am using Adobe Flash Builder 4.6 with Adobe Media Server Extended 5. I am streaming my webcam in Adobe Media Server ("rtmp://localhost/live") successfully. I need to record and save this live video inside Adobe Media Server.
    Could you suggest me how I can record a live webcam streaming inside my server?
    Thanks in advance
    Martin

    I am using Adobe Flash Builder 4.6 with Adobe Media Server Extended 5. I am streaming my webcam in Adobe Media Server ("rtmp://localhost/live") successfully. I need to record and save this live video inside Adobe Media Server.
    Could you suggest me how I can record a live webcam streaming inside my server?
    Thanks in advance
    Martin

  • Streaming Logic Live with another studio

    Hey,
    I am constantly doing minor tweaks after I finish a Major mix and it would be handy if i could find a possible way to stream my logic live with another studio. This was not only could the person hear exactly what I am doing but also have the ability to control it. I have tried Virtual Glass but that is having a lot of issues and does not seem to work and Teamviewer is great for controlling but sound does not work and when you run major programs like Logic 9 Pro it just crashs at the other end.
    So if anyone else knows a way possible for me to stream my Logic Pro 9 arrangement with someone else please let me know!
    Thank you

    The only way I could see this working is using the same Logic project on both location and lock the remote system. You could experiment with Euphonix Eucon ethernet protocol to remote control the slave, but you would need their interface (MC control / Mix). I know that Steinberg have (or had) their platform remotely working and users to exchange files and sync. both machines. May be someone else has some better ideas...

  • RECORDING A LIVE M2P STREAM?

    Can FCP2 capture a live m2p stream? I would like to record a live switch in M2P format saving the conversion time later. The event could be as long as 8 hours with a few breaks. I would be using my G4 notebook. Any other suggestions? Thanks!

    How do you get the stream? From Internet?
    For my experience, QT don't even recognize the .m2p. extension. If you want to open one, you need to change it to .mpg.
    The problem I see (I not an expert at all) is that you are trying to capture a stream a live. Is not just a file that you download. FC and QT can do that with certain video codecs (as Shane says) and though certain hardware ports.
    I don't know if one of those applications (I've never used then) that capture whatever goes on on the screen could do it.
    Probably the PC world is more prepared for that task.

  • Recording a live band through Garage Band

    How do I record a live band (my own) using an iBook G4 with Garage Band 2.0.2?

    I too am trying to record a live band, but in Garageband 3. I want to record multiple tracks. Not sure how or if I can record more than one track at a time using what I have, which is an 8 channel mixer and an i mic (simple rca to usb interface). Do I need to buy one of these fancier interfaces?

  • Last few seconds of stream cut off when recording a live stream

    Hello,
    I'm having a problem with recording a live webcam stream. The last few seconds of the stream is getting cut off.
    The recording is stopped with the following piece of code:
                vid.attachCamera(null);
                vid.clear();
                ns.attachCamera(null);
                ns.attachAudio(null);
                ns.pause();
    What could be causing this? Is the stream cut off too soon? Is the client unable to send buffered data to the server?
    Kind regards,
    FY

    Thanks, I'll consider using ns.publish(false) . I've also managed to solve it using ns.close()
    FY

  • Problem with recording a live stream

    hi,
              i implemented an application for recording a live stream. It was working well locally. But now i am connecting with client's communication server. Broadcaster is working well. But the recording portion is not working. It's showing an error "NetStream.Record.NoAccess" . Can anbody help me to avoid this problem? Also now I am not able to connect with local FMS(developer version). When I tried to connect the same application with local FMS, it's showing an error like NetConnection.Connect.InvalidApp and NetConnection.Connect.Closed. Can anybody let me know why this error is showing?
    Regards,
             Sreelash

    I've just played around with the current developer edition of
    the flash media 2 server, and had a strange experience.
    We are using on our productive server still flash
    communication server mx 1.5.3, like i've noticed before, because we
    have only a licencse for this version.
    If i record a video with our app on flash media 2 server the
    problems i've descriped are away...
    ...BUT...
    flash media 2 seems to cut the corrupted part automaticly out
    of the record.
    I recorded a video which is exactly 30seconds long (made with
    a timeout script). On old flashcom the first 7 seconds have these
    descriped failures.
    If i record the same stream on flash media 2 there are no
    failures in the record, but the record is only 23 seconds long....
    This is very very bad adobe :(
    Or is the problem in my code? If there is anybody who can
    help, i would be very happy!

Maybe you are looking for