Exporting to QT to be used in Garageband

Hello all... I am exporting my project to QT so that I can then import it to GB for audio editing. I know I have done this procedure before:http://imovie08.blogspot.com/2007/10/how-to-add-chapter-markers-addendum.html
And it all worked fine but for some reason it is not working now. When I go to GB it gives me an error that project cannot be used because it has not been shared. If I recall I never shared it before after exporting to QT. Is this something new that was probably installed via an update? Any info or help appreciated. Thanks

And it all worked fine but for some reason it is not working now. When I go to GB it gives me an error that project cannot be used because it has not been shared. If I recall I never shared it before after exporting to QT.
Files exported using QT do not need to be shared. To import them, simply open/create a GarageBand Podcast project, drag the exported file from its saved location, drop it to your GarageBand project work window, and allow replacement of the original video track by your dropped file.

Similar Messages

  • I just purchased Export PDF, and when I use it, it opens them in WordPad (which I never use) instead of Word. Thus, the pictures are not there, and the fonts are changed. How do I get into Word?

    I just purchased Export PDF, and when I use it, it opens them in WordPad (which I never use) instead of Word. Thus, the pictures are not there, and the fonts are changed. How do I get them imported into Word?

    Hi,
    I checked your account,your Export PDF subscription is in 'Pending' status.
    Once it gets confirmed you will be able to use it.
    Please let us know if you require further assistance.
    Regards,
    Florence

  • How can I export a folder of images using the original file data?

    I have edited my images within the "Develop" mode, but now need to export as jpg's using those settings (note: some are now B&W) and then I also need to process as jpg's using the original settings (color), so my client has all the original color files as well. My files were all shot in the Nikon RAW format, but I can't figure out how to export all the images without using the develop adjustments I have made to each file, including having changed many to B&W. Is there a way to do this? Note that I also don't want to lose all of my adjustments, so can't just reset them all, if that's even an option.

    2) Now I need to export all the images that have at least 2 stars
    (around 1200), so I can give the client a folder of "originals." This
    way, they can view images that didn't make the final edit (album) and
    will also be able to print an image that I converted to B&W for
    their album in color.
    First of all, I think making a backup of your directory (using Explorer or Finder or whatever) might be prudent before you start this little experiment!
    So, all of your originals are in one folder, and ~1200 of those are 2-star and 384 are 5-star and have edits, correct?
    What might be easiest (although not the most effecient) is to just click on the folder, then use the Library Filter to select everything that's 2 stars and above. This will select all the images that need exporting.
    Then follow Jao's instructions for creating a new collection and removing the edits. Make SURE you create your new collection with VIRTUAL COPIES or you're going to wipe out everything you've done. 
    Your new collection should then  have virtual copies of everything 2-star and above, in their original unadulterated state. You can then export to JPG.
    I think from now on I will export those files with 2 stars first, then narrow down the the final 384 and make adjustments
    You could always create a collection of your "keepers" (2-stars and above). Then, for every image you want to edit, be sure to edit the virtual copy  and then put it in a subcollection under the main collection.
    That way you kind of have a history of what you did, and you can export (or re-export) at any time. You don't even really need to keep the exported JPGs around, since you can always re-export.
    Scott Kelby has a Lightroom book that illustrates this kind of workflow much better than I can. I highly recommend it.

  • I used a GarageBand loop in a video I made for youtube. I want to submit this video for revenue. First, is this legal? Second, youtube requires written permission to use songs, and provides a comment box for proof of permission. What do I put in this box?

    I used a GarageBand loop in a video I made for youtube. I want to submit this video for revenue. First, is this legal? Second, youtube requires written permission to use songs, and provides a comment box for proof of permission. What do I put in this box to prove It's ok for me to make ad revenue from my video?

    Yes, you can use GarageBand loops for commercial purposes. Here's the Apple Doc:
    http://support.apple.com/kb/HT2931
    (Basically the only thing it excludes is to re-distribute the loops as loops.)
    I don't know about the YouTube form, maybe you just fill in "Apple Loops", they certainly have come across this before.

  • CSV output (export to excel) don't use right code table

    CSV output (export to excel) don't use right code table. We use code table
    8859-2 (reports and forms are OK). Why export to excel don't use this code table.
    Thanks for answers

    You could also take the example from my blob that Denes mentioned and instrument it to output in either CSV or HTML. This way, you could have a single procedure that worked for both formats.
    All you would need to do is handle each field differently - pad a TD and /TD (with proper brackets, of course) if its HTML or just append a comma if it's CSV.
    Thanks,
    – Scott –
    http://spendolini.blogspot.com/
    http://sumnertech.com/

  • Export Project Tasks to Excel using VBA by Custom Field

    Question referring to the link:
    http://social.technet.microsoft.com/Forums/projectserver/en-US/9c46458c-893f-41ba-bd46-bdb59c533f4a/export-project-tasks-to-excel-using-vba-by-custom-field?forum=project2010custprog
    Help needed. I have inserted my question at this address for Andrew or anybody else to reply. Hope to hear from you.
    Regards,
    Chuck

    Thank you Andrew for getting back to me and I have found somewhere on the net the following macro that would do the job for the version 2007. Here is a copy for those that may need it.
    Option Explicit
    Sub CreateMenus()
    Dim cbrMain As CommandBar
    Dim ctlMain As CommandBarControl
    Dim ctlOLExport1 As CommandBarControl
    Dim ctlOLExport2 As CommandBarControl
    Dim ctlOLExport3 As CommandBarControl
    Set cbrMain = Application.CommandBars.ActiveMenuBar
    Set ctlMain = cbrMain.Controls.Add(Type:=msoControlPopup, Temporary:=True)
    ctlMain.Caption = "Export to Outlook"
    Set ctlOLExport1 = ctlMain.CommandBar.Controls.Add(Type:=msoControlButton)
    With ctlOLExport1
    .Caption = "Selection to Outlook tasks"
    .OnAction = "Macro """ & "Export_Selection_To_OL_Tasks"""
    End With
    Set ctlOLExport2 = ctlMain.CommandBar.Controls.Add(Type:=msoControlButton)
    With ctlOLExport2
    .Caption = "Selection to Outlook appointments"
    .OnAction = "Macro """ & "Export_Selection_To_OL_Appointments"""
    End With
    Set ctlOLExport3 = ctlMain.CommandBar.Controls.Add(Type:=msoControlButton)
    With ctlOLExport3
    .Caption = "Selection to Outlook notes"
    .OnAction = "Macro """ & "Export_Selection_To_OL_Notes"""
    End With
    End Sub
    Cheers!
    Chuck

  • Is it possible to export tables from diffrent schema using expdp?

    Hi,
    We can export tables from different schema using exp. Ex: exp user/pass file=sample.dmp log=sample.log tables=scott.dept,system.sales ...But
    Is it possible in expdp?
    Thanks in advance ..
    Thanks,

    Hi,
    you have to use "schemas=user1,user2 include=table:"in('table1,table2')" use parfileexpdp scott/tiger@db10g schemas=SCOTT include=TABLE:"IN ('EMP', 'DEPT')" directory=TEST_DIR dumpfile=SCOTT.dmp logfile=expdpSCOTT.log{quote}
    I am not able to perform it using parfile also.Using parfile it shows "UDE-00010: multiple job modes requested, schema and tables."
    When trying the below, i get error
    {code}
    bash-3.00$ expdp directory=EXP_DUMP dumpfile=test.dmp logfile=test.log SCHEMAS=(\'MM\',\'MMM\') include=TABLE:\"IN\(\'EA_EET_TMP\',\'WS_DT\'\)\"
    Export: Release 10.2.0.4.0 - 64bit Production on Friday, 15 October, 2010 18:34:32
    Copyright (c) 2003, 2007, Oracle. All rights reserved.
    Username: / as sysdba
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Starting "SYS"."SYS_EXPORT_SCHEMA_01": /******** AS SYSDBA directory=EXP_DUMP dumpfile=test.dmp logfile=test.log SCHEMAS=('MM','MMM') include=TABLE:"IN('EA_EET_TMP','WS_DT')"
    Estimate in progress using BLOCKS method...
    Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
    Total estimation using BLOCKS method: 0 KB
    Processing object type SCHEMA_EXPORT/TABLE/TABLE
    Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX
    Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
    Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
    Processing object type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    . . exported "MM"."EA_EET_TMP" 0 KB 0 rows
    ORA-39165: Schema MMM was not found.
    Master table "SYS"."SYS_EXPORT_SCHEMA_01" successfully loaded/unloaded
    Dump file set for SYS.SYS_EXPORT_SCHEMA_01 is:
    /export/home/nucleus/dump/test.dmp
    Job "SYS"."SYS_EXPORT_SCHEMA_01" completed with 1 error(s) at 18:35:19
    {code}
    When checking expdp help=y shows :-
    {code}TABLES Identifies a list of tables to export - one schema only.{code}
    As per few testing,tables from different schemas are not possible to export using expdp in a single command.
    Anand

  • I get program not responding every time I try to use new Garageband

    I get program not responding every time I try to use new Garageband

    I mean the program will open, but when asked to open anything it just sets with the rainbow pie spinning. Click on garageband in the dock and it says that is not responding.

  • I am exporting a 2 min video, using a custom compressor setting. i have not had issues with this setting in the past, but recently its taking upwards of 4 hours to process. Any idea what is going on?

    I am exporting a 2 min video, using a custom compressor setting. I have not had issues with this setting in the past, but recently its taking upwards of 4 hours to process. Any idea what is going on?

    Name: Vimeo HD Encode
    Description: No description
    File Extension: mov
    Estimated size: 2.3 GB/hour of source
    Audio Encoder
              AAC, Stereo (L R), 44.100 kHz
    Video Encoder
              Width: 1920
              Height: 1080
              Pixel aspect ratio: Square
              Crop: None
              Padding: None
              Frame rate: (100% of source)
              Frame Controls On:
                        Retiming: (Best) High quality Motion Compensated
                        Resize Filter: Statistical Prediction
                        Deinterlace Filter: Best (Motion Compensated)
                        Adaptive Details: On
                        Antialias: 0
                        Detail Level: 0
                        Field Output: Progressive
              Codec Type: H.264
              Multi-pass: On, frame reorder: On
              Pixel depth: 24
              Spatial quality: 75
              Min. Spatial quality: 25
              Key frame interval: 30
              Temporal quality: 50
              Min. temporal quality: 25
              Average data rate: 5.12 (Mbps)
    Compatible with Mac
    My video in the timeline is 1920 x 1080 / 23.98 fps
    I've installed Toast and photoshop elements recently, i also updated my apps the other day.
    I have had this problem before the updates of the apps though

  • How to export low quality png while using exportToPNGSequence jsfl command ?

    how export low quality png while using exportToPNGSequence jsfl command ?

    var mat=fl.getDocumentDOM().library[0].matrix;
    mat.a=.5;
    mat.d=.5;
    fl.getDocumentDOM().library[0].exportToPNGSequence(file:///yourfile.png,startframe,endfram e,mat);

  • Can you export as AVCHD if you use "Matched sequence"?

    As far as I know, "Matched sequence" means that you will export the file exactly the same as your sequence settings. Adobe says that you can't export to AVCHD, you can only import AVCHD but you have to export to something like MPEG 2.
    So what if I export a AVCHD sequence as "Matched sequence"? Will the final export be a AVCHD file or something different?
    How do I check if the exported file is a AVCHD file?

    Where it says "Format" that would be the exporter you'd want to use from Premiere Pro or AME.
    1.Youtube.
    Format: H.264. There is a preset for YouTube 720p that you can use as a baseline; increase the dimensions to 1080p, change the frame rate, and I set the bit rate to 8mbps target/10mbps maximum for my YouTube 1080p uploads. Save this as a preset so you can reuse it later.
    2.Delivery for TV broadcast.
    That's hard to answer; every broadcaster will want different deliverables. You'll need to check with their requirements. I deliver everything from H.264 MP4s, Avid MOVs, DV AVIs, and HD MPEG2 files--it's sort of a mish-mash so it's not really possible or practical to give you a set number of parameters for this one.
    3.Archival use on my computer.
    You could use an uncompressed AVI or MOV (Format: Microsoft AVI/QuickTime, Codec: None), but they will be very large files. Why not just keep the footage and the project file? You could also try a lossless codec like the Ut Video Codec Suite or (my preference) Lagarith Lossless Video Codec. Both are free, Windows-only, and appear as codecs under Microsoft AVI. They're both good; they'll be big files as well, but not quite as big as uncompressed.
    4.To burn to DVD.
    5.To burn to blue ray.
    Premiere Pro has specific exporters for both of these; check out Format: MPEG2-DVD for DVD and Format: MPEG2 Blu-ray or H.264 Blu-ray for BD. You can also just send your sequence to Encore and let it pick the best settings based on your desired output format; select your sequence and go to File > Adobe Dynamic Link > Send to Encore.
    6.To upload and sell the footage on a website like shutterstock.
    Just like #2 above, you'll need to check with the specific stock service what their requirements are. They should be pretty simply spelled out, and then you can choose the format and codec based on those requirements. Googling for the particular service and other users' experiences would help, too.

  • How to read data from analog input and export it to a file using Components Works

    I've made a simple application (Delphi 5 using the activeX) that read data from analog input channel 0. After I read the data, I want to export it to a file using the Components Works on a 6035E NIDAQ. (I'm not using labview and don't want to use it)
    How can I do that???
    Regards,
    Francis

    Here's a sample code to do this...
    P.S.: If you read only one channel this code won't work.
    function MyFunction: Integer;
    var
    Low, High, i, j, ChannelCount, RowCount: Integer;
    Po: P;
    begin
    //you are reading multiple channel
    ChannelCount := VarArrayHighBound(Buffer, 1);
    RowCount := VarArrayHighBound(Buffer, 2);
    for i := 0 to ChannelCount do begin
    for j := 0 to RowCount do begin
    WriteToDisk(Buffer[i, j]));
    end;
    end;
    end;

  • Export the data of Essbase using ODI11

    Hi,
    I want to export the data of essbase using odi 11.g ,and store in the oracle database;
    But i got a issue that i haven't got the whole information,which just have the value of data column,and null instead of the Dimension Members ;
    The DataSet as the below:
    Account,Period,Year,Entity,Project,Data;
    Null,Null,Null,Null,Null,5231.212
    Null,Null,Null,Null,Null,6231.231
    Null,Null,Null,Null,Null,NULL
    I have check the below ways:
    *1.Essbase Report*
    http://ServerName:27130/easconsole/console.html
    Execute the report script:
    //ESS_LOCALE SimplifiedChinese_China.MS936@Binary
    <Sym {SUPALL}{TABDELIMIT} {NAMESON}{ROWREPEAT}{NOINDENTGEN}{SUPMISSINGROWS}{MISSINGTEXT "0"}
    <COLUMN(Scenario)
    {DECIMAL 8}
    "BUDGET"
    <ROW(Account,Period,Year,Entity,Project)
    <DimBottom "Account"
    <DimBottom "Period"
    <DimBottom "Year"
    <DimBottom "Entity"
    <DimBottom "Project"
    Result:
    Account,Period,Year,Entity,Project,Data;
    ACC1,1,FY13,ORG1,PRJ1,5231.212
    ACC2,2,FY13,ORG2,PRJ1,6231.231
    ACC3,3,FY13,ORG3,PRJ1,#Missing
    *2.odi Interface*
    LKM Hyperion Essbase DATA to SQL
    EXTRACTION_QUERY_TYPE:ReportScript
    EXTRACTION_QUERY_FILE:C:\odifile\budgetdata.txt
    EXT_COL_DELIMITER:\t
    *3.oracle table*
    The data type oracle 's table ,the data is NUMBER,other is NVARCHAR2(80);
    Anyone can help me ,thanks
    Kevin
    Edited by: kevin123 on 2013-4-17 下午11:03

    Who has experience in this field,thanks

  • Why can't I export my FCP 6 sequence using Compressor 3?

    I am wondering if anyone can tell me why I can't export my FCP 6 sequence using Compressor 3.0.5. 
    I have an hour-long 1080p Pro Res 422 sequence that I am trying to export using Compressor 3.  Whether I export using the 'Pro Res 422' preset or the 'H.264' preset, transcoding commences but then stops abruptly 15 to 20 minutes later with an error message saying 'Quicktime Error: -50.'
    For what it's worth, I have an early-2008 dual quad-core Mac Pro desktop with 6 GB of RAM and two ATI Radeon 5770 graphics cards.  I am currently running OS X 10.6.8.  The media (including Motion graphics) and project file are on an external drive connected via Firewire 800.
    Any advice on how to properly export this sequence at the highest quality without getting the error message is greatly appreciated!
    Shaun

    Are you "sending" to compressor?  Probably not the best way to work.
    First step:  make sure the sequence is COMPLETELY rendered.  If you don't understand how to do that, post back.
    Then, I'd strongly recommend that you export a quicktime file with current settings (file:  export:  quicktime movie NOT quicktime conversion) and bring that file into compressor and chose the appropriate preset.
    This workflow isolates each step and makes it easier to troubleshoot.
    Here are a few user tips that might be helpful
    Some tips for using compressor
    Common FCP Troubleshooting tips
    sending to compressor from fcp - a few issues

  • Exporting to blu ray and using episode problem

    I have a 60 min HDV time line of which I would like to export to Blu Ray ready for the future so I can then delete the master files and clear some space of the main hard drive.
    I bought a program by flip 4 mac called Episode Pro which plugs in to compressor and you can use it to export files apparently quicker and better.
    Episode has a drop down box with Blu Ray settings for Video and Audio which I choose. so far so good.
    When I tell it to export and then bring up the batch monitor it tells me that it take 3 or 4 days and the first try took 3 days and then a message failed came up.
    After that I had to reboot because it messed up FCP too
    Am I doing something wrong in episode and if I was to use normal compressor for Blu Ray exporting what settings should I use, I only see HD DVD?
    Thank you in advance,
    Regards
    Darren

    These are settings for compressor that I use.
    I use bootcamp, windows, and DVDitPro HD to burn blu ray disc.
    These settings are what DVDitPro likes ( no re-encoding)
    Name: blu ray video
    Description: No description
    File Extension: m2v
    Estimated file size: 7.91 GB/hour of source
    Type: MPEG-2 video elementary stream
    Usage:Blu-ray
    Video Encoder
    Format: M2V
    Width: 1920
    Height: 1080
    Pixel aspect ratio: Square
    Crop: None
    Padding: None
    Frame rate: 29.97
    Frame Controls: Automatically selected: Off
    Start timecode from source
    Aspect ratio: 16:9
    Field dominance: Automatic
    Average data rate: 18 (Mbps)
    1 Pass VBR enabled
    Maximum data rate: 27 (Mbps)
    High quality
    Best motion estimation
    Closed GOP Size: 1/2 second, Structure: IBBP
    Name: blu ray audio
    Description: No description
    File Extension: ac3
    Estimated file size: 82.4 MB/hour of source
    Audio Encoder
    Format: AC3
    Sample Rate: 48.000kHz
    Channels: 2
    Bits Per Sample: 16
    Target System: Generic
    Data Rate: 192 kbps
    Compression Preset: Film Standard
    Audio Coding Mode: 2/0 (L, R)
    BitStream Mode: Complete Main
    Center Mix Level: -3dB
    Surround Mix Level: -3dB
    Dolby Surround Mode: None
    LFE Exists: No
    Dialog Normalization: -27 dbFS
    Copyright Exists: Yes
    Original Content: Yes
    Audio Production Information Exists: No
    RF Overmodulation Protection: Off
    Channel Bandwidth Lowpass Filter: On
    DC Highpass Filter: On
    LFE Channel Lowpass Filter: On
    3dB Attenuation: Off
    phase 90: On
    Deemphasis: Off

Maybe you are looking for