Exporting from logic to finalcut pro fails

Hello everyone
i am very new to logic
i am editing a short clip in finalcut 6
i am trying to import an xml to finalcut but it is failing
i received an email with an attached logic project
i open the project it has 7 tracks with loops about 5min length
tried exporting to xml and importing to finalcut- failed
any suggestions
thanks
danny

danny,
If you want to keep the 7 tracks independent in FCP, then just bounce each track seperately in Logic. You'll need to do this to render your loops and effects anyway. Bounce each from the beginning of the song so when you import the files from your bin in FCP they will all start at the same place. Either find your start timecode point and snap the files to it or bring them all in, select them and snap it to your location then. Did you have a 2-pop at the beginning of the file?

Similar Messages

  • How to export from lightroom to premeire pro?

    How to export from lightroom to premeire pro?

    You cannot export directly from Lr to another program.
    You have to export to your hard drive and then open them in Premiere.

  • Export from logic

    Hi,
    Can anyone suggest the best way to export from logic? I want to export a finished mp3 or wav or whatever to play in itunes. There are a number of options in the export drop down but I'm not sure which to go for. It's not quite as simple as garageband.
    Thanks.

    Bounce the track down to and mp3 or wav file and when the box opens click the add to itunes box

  • Formatting of text fields when exporting from InDesign to Acrobat Pro

    How does one preserve the formatting  of a text field when exporting from InDesign CS6 to Acrobat Pro? It loses both the font and the alignment formatting in the PDF.

    Use a font that allows embedding/ check the font embedding settings in the PDF output settings.
    Mylenium

  • Export from Crystal Reports 2008 viewer fails if run on separate thread

    I have a windows desktop application written in Visual Basic using Visual Studio 2008.  I have installed and am trying Crystal Reports 2008 to run a report.  Everything seems to work well except that when I preview a report (using the viewer control) and click the export button found in the upper left corner of that control, I get the following message:
    Error 5: Current thread must be set to single thread apartment (STA) mode before OLE calls can be made.  Ensure that your Main function has STAThreadAttribute marked on it.  This exception is only raised if a debugger is attached to the process.
    I am a little confused on what to do exactly.  Is the problem because I am running in the Visual Studio 2008 IDE?  It says this exception is only raise if a debugger is attached to the process.  No, I tried running it outside the IDE.  The exception wasn't generated but the application hung when the button was clicked.
    It says the current thread must be set to single thread apartment (STA) mode.  If the report is run on its own thread, is the "current" thread the thread the report is running on or is the main application's UI thread?  I don't think I want to set my main application to single thread apartment mode because it is a multi-threaded application (although I really don't know for sure because I am new to multi-threaded programming). 
    My objective is to allow reports to run asynchronously so that the user can do other things while it is being generated.  Here is the code I use to do this:
        ' Previews the report using a new thread (asynchronously)
        Public Sub PreviewReportAsynch(ByVal sourceDatabase As clsMainApplicationDatabase)
            Dim backgroundProcess As System.ComponentModel.BackgroundWorker
            ' Start a new thread to run this report.
            backgroundProcess = New System.ComponentModel.BackgroundWorker
            Using (backgroundProcess)
                ' Wire the function we want to run to the 'do work' event.
                AddHandler backgroundProcess.DoWork, AddressOf PreviewReportAsynch_Start
                ' Kick off the report asynchronously and return control to the calling process
                backgroundProcess.RunWorkerAsync(sourceDatabase)
            End Using
        End Sub
        Private Sub PreviewReportAsynch_Start(ByVal sender As Object, ByVal e As System.ComponentModel.DoWorkEventArgs)
            ' The source database needed to call preview report was passed as the only argument
            Call PreviewReport(CType(e.Argument, clsMainApplicationDatabase))
        End Sub
        ' Previews the report.  From the preview window, the user can print it.
        Public Function PreviewReport(ByVal sourceDatabase As clsMainApplicationDatabase) As FunctionEndedResult
            Dim errorBoxTitle As String
            Dim frmPreview As frmReportPreview
            ' Setup error handling
            errorBoxTitle = "Preview " & Name & " Report"
            PreviewReport = FunctionEndedResult.FAILURE
            On Error GoTo PreviewError
            ' Set up the crxReport object
            If InitializeReportProcess(sourceDatabase) <> FunctionEndedResult.SUCCESS Then
                GoTo PreviewExit
            End If
            ' Use the preview form to preview the report
            frmPreview = New frmReportPreview
            frmPreview.Report = crxReport
            frmPreview.ShowDialog()
            ' Save any settings that should persist from one run to the next
            Call SavePersistentSettings()
            ' If we got this far everything is OK.
            PreviewReport = FunctionEndedResult.SUCCESS
    PreviewExit:
            ' Do any cleanup work
            Call CleanupReportProcess(sourceDatabase)
            Exit Function
    PreviewError:
            ' Report error then exit gracefully
            ErrorBox(errorBoxTitle)
            Resume PreviewExit
        End Function
    The variable crxReport is of type ReportDocument and the windows form called 'frmPreview' has only 1 control, the crystal reports viewer. 
    The print button on the viewer works fine.  Just the export button is failing.  Any ideas?

    Hi Trevor.
    Thank you for the reply.  The report document is create on the main UI thread of my application.  The preview form is created and destroyed on the separate thread.  For reasons I won't get into, restructuring the code to move all the initialization stuff inside the preview form is not an option (OK, if you a really curious, I don't always preview a report, sometimes I print and/or export it directly which means the preview form isn't used).
    What I learned through some other research is that there are some things (like COM calls and evidently some OLE automation stuff) that cannot be run on a thread that uses the MTA threading model.   The export button probably uses some of this technology, thus the message stating that an STA threading model is required.  I restructured the code as follows to accomodate this requirement.  Here is a sample:
    ' Previews the report using a new thread (asynchronously)
        Public Sub PreviewReportAsynch(ByVal sourceDatabase As clsMainApplicationDatabase)
            Dim staThread As System.Threading.Thread
            ' Start the preview report function on a new thread
            staThread = New System.Threading.Thread(AddressOf PreviewReportAsynchStep1)
            staThread.SetApartmentState(System.Threading.ApartmentState.MTA)
            staThread.Start(sourceDatabase)
        End Sub
        Private Sub PreviewReportAsynchStep1(ByVal sourceDatabase As Object)
            Dim staThread As System.Threading.Thread
            ' Initialize report preview.  This includes staging any data and configuring the
            ' crystal report document object for use by the crystal report viewer control.
            If InitializeReportProcess(DirectCast(sourceDatabase, clsMainApplicationDatabase)) = FunctionEndedResult.SUCCESS Then
                ' Show the report to the user.  This must be done on an STA thread so we will
                ' start another of that type.  See description of PreviewReportAsynchStep2()
                staThread = New System.Threading.Thread(AddressOf PreviewReportAsynchStep2)
                staThread.SetApartmentState(System.Threading.ApartmentState.STA)
                staThread.Start(mcrxReport)
                ' Wait for step 2 to finish.  This blocks the current thread, but this thread
                ' isn't the main UI thread and this thread has no UI anymore (the progress
                ' form was closed) so it won't matter that is it blocked.
                staThread.Join()
                ' Save any settings that should persist from one successful run to the next
                Call SavePersistentSettings()
            End If
            ' Release the crystal report
            Call CleanupReportProcess(DirectCast(sourceDatabase, clsMainApplicationDatabase))
        End Sub
        ' The preview form must be launched on a thread that use the single-threaded apartment (STA) model.
        ' Threads use the multi-threaded apartment (MTA) model by default.  This is necessary to make the
        ' export and print buttons on the preview form work.  They do not work when running on a
        ' thread using MTA.
        Public Sub PreviewReportAsynchStep2(ByVal crxInitializedReport As Object)
            Dim frmPreview As frmReportPreview
            ' Use the preview form to preview the report.  The preview form contains the crystal reports viewer control.
            frmPreview = New frmReportPreview
            frmPreview.Report = DirectCast(crxInitializedReport, ReportDocument)
            frmPreview.ShowDialog()
        End Sub
    Thanks for your help!
    Andy

  • What format to export from mpg in QuickTime Pro 7

    Hi, I just got Quick Time Pro 7, because when I´am trying to use the videos of my old sony digital camera in imovie, this gives me a message that cannot support this format, which is mpg, so one time before, I changed them on a pc software, and it worked, but this time I got Quick TIme Pro 7 to convert the videos, but I cannot find an option to export them with the audio, is exporting only the videos with no audio, can somebody tell me what format do I have to use?
    thanks

    http://www.sjoki.uta.fi/~shmhav/SVCDon_a_Macintosh.html#edit_convertMPEG
    BTW, this is the mother of all FAQs here Sadly the FAQ section of the forum decribes just the problem, not any solutions. And searching the forums doesn't always work either.
    ObSig: I don't benefit from the link.

  • Exporting from FCP to Soundtrack Pro looses files!!!

    I'm working on a project shot on an f900 HD camera with the tapes downconverted to HD-DVCPro to quicktimes. I sb-clipped the QT and I re-synced the audio with the .wav tracks recorded on set. My sequence is set up for a .wav project. I've exported a sequence from FCP by using both Send to Soundtrack Pro and exporting to Soundtrack pro. In both cases I received an error and when I went back to FCP some of my clips were gone. They weren't in the trash or in the Capture folder> I did a search for the file names and they had vanished, or had been renamed. Anyone had this problem before? Should I dump the STP then re-install it? I'll look at Apple support page. Is there a problem between the .wav and aiff? Can Soundtrack Pro bring in .wav or is it only aiff?

    Welcome To  Discussions justjewell!
    As a Host has relocated your Topic to a more appropriate Forum, it is not necessary for you to repost elsewhere, at this time.
    But for future reference, please review the first entry How To Post A New Topic, on Feedback About Discussions.
    That is the Forum where you erroneously posted your issue.
    ali b

  • Exporting from AE to Premier Pro

    First off thanks to everyone who posts here. I have been browsing the topics for a couple of months and have learned a ton! One of the issues that I can't seem to find a definate answer on is this. I have the Superimpose template from professional-video-templates.com and after configuring it with my own footage, I'm now looking to take that into Premier. What is the best way to export this in order to best import it? I tried importing the AE project into Premier and it will import fine, but when I try to export a 10 minute clip it says roughly 30+ hours left. Is the raw AE file too large for this?
    I'm sure this is an easy question for most, and I'm loving learning the CS3 suite!

    >but when I try to export a 10 minute clip it says roughly 30+ hours
    >left. Is the raw AE file too large for this
    Well, 10 minutes is a lot of frames to render in AE terms. I dunno how the template works internally, but it looks like it is indeed processing every frame to do some color correction along with the fitting in the frames/ filmstrips, so long-ish render times would be normal. It also seems to use 3D layers, which can drastically increase render times, even without all the bells and whistles like motion blur. 30 hours seems a bit excessive, though. Most likely you are running extremely low on memory 'cos you are using Dynamic Link to "import" the AE project. Therefore I highly recommend rendering the clip directly from AE and importing it into PPro instead of following your current approach. This should noticeably cut down render times. You should also look into pre-rendering parts of the project. Very likely the original project is created so it loops, and therefore you'd only need to render that short piece one time, then reimport it and let it loop by setting the number of loops on the footage interpretation. This way only the source footage would need be rendered. You could take this even further by pre-rendering this as well with an Alpha channel... Just try it, perhaps it will make your work render a lot faster.
    Mylenium

  • Export from FCPX to Compressor 4 Failed - Quick time Error:-50

    Hi all,
    Having some trouble exporting a large video (1080p, about 5 gb) after using the Share>send to compressor option.  Footage was shot with a Canon Ti3, and exported fine by itself to an .mov, but when sent to compressor I get the above error. 
    I have so far done the following:
    trashed FCPX and Compressor 4 prefs
    checked for updates
    deleted the projects render files and rerendered
    Any ideas?  Screen shot below.
    Jimmy

    There have been many reports of QT- 50 errors on export at FCPX forum.
    This may sound as though I'm changing the subject, but why not bring your exported movie into Compressor? It's always been a more reliable workflow than Send-to Compressor going back to the FCS days.
    If you are committed to the Send workflow,  try creating a new project and copy and paste from the old project to the new.
    Russ

  • Can I upgrade from logic 8 to pro x

    I currently have logic 8 and want to upgrade to Logic Pro x  can it be done with out buying the older verson first

    Here are the system requirements:
    http://www.apple.com/logic-pro/specs/
    It does not mention needing any earlier version. As it is only sold at the app store, the licensing and versions have changed: When a new version is introduced, it is mostly a stand alone version (meaning that there are no upgrades any longer).
    Out of curiosity: why do you ask about having to buy v. 8 when you say you have it installed?

  • Open from scanner Acrobat 9 pro fails

    I am restricted to scanning with Preview because Acrobat 9 collapses every time I try to open from scanner and that causes my Mac to give me a black screen until I unplug the scanner (a simple Lide Canon 70) from the USB port. Any suggestions?

    Preview uses a different scanner driver to Acrobat. Have you installed the [LiDE70 scanner driver v12.13.1|http://support-au.canon.com.au/contents/AU/EN/0900323301.html]?
    If you do have the scanner driver installed then what settings do you have selected in the Acrobat Scan window? I just tried scanning from Acrobat 9.4.1 using Canon LiDE200 and worked okay for me.

  • Export from HD project to DVCPro 50?

    I had no trouble exporting from my Final Cut Pro 5 HD (1080i60) project to an HD deck this morning but now that I'm trying to go to DVCPro 50 I'm getting a messages about settings not matching. I've tried redoing seq. settings to DVCPro and then it looks like it's going to export and then it stalls out. Is it even possible to output from an HD project to an NTSC deck? I'm ok with a print to video with no TC info.

    Thanks for the input on output! I'll try the QT method first since dropping into a DVCPro sequence didn't seem to work just now. I'm outputting to H.264 QT right now (for DVDs) so it'll be about half an hour before I can test again. I guess I'm wondering if I output to DVCPro QT, do I just crash record to DVDPro deck from Quicktime (which I've never done, but assume is pretty straightforward) or do I import back into FCP and output from there?

  • Export from Soundtrack to Logic?

    How can I export a Soundtrack project so that I can open it in Logic? Is there a way to do this as a single file without exporting all the Soundtrack tracks as individual files?

    I suppose my question is more along the lines of what solution (I've purchased them all) allows you to Record and Edit multiple spoken tracks of audio?
    I've purchased:
    SoundTrack Pro
    SoundBooth
    Logic Express
    Audacity
    and of course I've upgraded to iLife 09.
    If one of these tools could allow you to select a section of audio from 1, 2, 3, or all tracks and delete it with a "Ripple Delete" option, then I'd be a happy guy.
    Right now:
    GarageBand doesn't allow you to delete and shift-left "ripple delete".
    As for Logic, I don't see ripple delete either.
    SoundTrack does do this but it only allow me to edit one Track at a time--open them all, but edit one, then the other, then the other. Lots of flipping around.
    With Audition (which is limited to Windows) I can select a section of 1, 2, 3, or all tracks, and delete that section, ripple or not.
    FYI: "Ripple" is a Final Cut Pro term.
    To be honest, no that I think about it... FinalCut Pro may be the best solution. Load everythign into it as separate tracks and have at it--at least it does it.
    Remember, I'm not a musician, nor do I record music, only audio for podcasting. (but don't equate "podcasting" to Video-podcasting as most people do).
    Anyway, my solution will be to load Virtual Box on the Mac. Record using Logic (which did a great job of recording onto multiple tracks) and then bring those AIF files into Adobe Audition under Windows in VirtualBox--or perhaps on a Networked PC.
    Of course the other solution (and perhaps less painful) would be to simply abandon the Mac entirely and move all this stuff onto the PC and only use the Mac for FinalCut Pro work. What a huge disappointment that would be.

  • FLV Export From Final Cut Pro

    Hi Folks,
    I've been reading and reading and just want to know what is
    the right way to go about exporting video from a third party
    application like Final Cut Pro. Yes, the easy way is to
    Export>quicktime conversion and go from there. If this is the
    best way then great, But i'm wondering if exporting as a lossless
    quicktime codec such as the Video codec or the Anitmation codec
    would be a better choice then go to the flash video encoder with
    the lossless file. I heard that exporting straight out of FCP could
    be bad as the video needs to be deinterlaced before the flv stage.
    If this is the case, what are the best settings when
    exporting a lossless quicktime file? There are about 6 setting s
    that need to be set and I haven't a clue what would be the right
    settings.
    If exporting from final cut straight to flv, are you folks
    dropping the frame rate to 15 fps(cutting your frames in half). Is
    this working better for you?
    Well thanks for all your help, I keep on testing short clips
    and can't seem to find a any certain configuration that i really
    like.
    hanks so much for all your help.
    todd

    Todd ..
    We do quite a bit of video / flv work.
    Our editing software is VEGAS so unfortunately we can't
    render directly to flv .. but avi->flv via Sorenson Squeeze.
    If Final Cut allows rendering directly to flv, my
    recommedation would be to use that functionallity. Caveats .. if
    the encoder can 1. deinterlace i.e. progressive scan. 2. reduce
    your framerate from 29. to 15. 3. gives you the ability to control
    # of key frames.
    The logic being .. use the fewest number of encoding methods
    to get from source to output to maintain best quality.

  • Can you import software instruments and plug-ins  from Logic Pro to GB

    Hello,
    I purchased Logic 7 Pro and I find it to be way too much for me. Is there a way to take the software instruments from Logic to GB? I am not even sure Logic comes with more software instruments than GB. Do they both rely on the Jam Packs for additional instruments.
    Is there anything else GB can borrow from Logic. I know I can move the sound effects aif files and use them. Just wondering about other plug-ins and the like.
    Thanks!!
      Mac OS X (10.4.6)  

    Here's how you get past the static interruption.
    Make your software track and ignore the static interruption. Its not being recorded into the midi information.
    Then export the track out and reimport it to a new track. Do this twice. Your export/import WILL have static in it but since it was random your two tracks will not have the static in identical places.
    Edit out the static in track one by replacing it with a static-less portion from track two. You'll now have a complete loop with no static interruption.
    xs4sis. The cool thing about the demos is you don't have to program anything just use the presets. Who CAN program those **** synths anyway?
    There are some demos that have a hundred presets to them. I love that!

Maybe you are looking for