Save Export Queue Settings

I have recently started doing some batch exports using the Export Queue in Final Cut, so I set up 4 bins for different file types and do an export and everything works great.. But is there a way to save those settings that I created... Everytime I exit I lose all of those settings and have to redo all of them the next time I want to export. 
Am I missing something..
Any help would be great.
Thanks

This is the FCP X forum.  And yes, you create a custom preset in Compressor, then use that.

Similar Messages

  • How to save&export our settings/shortcuts/workspaces?

    Hey, does anyone know hot can I EXPORT my workspace/shortcuts settings form InDesigne CS6 to a for example "a file".
    And then import all my personal presets/settings into another computer?
    How to do that. I know that we can SAVE our settings but how to export them?

    Here is a link to Mike Witherell's excellent PDF guide to saving presets from InDesign:
    http://jetsetcom.net/useful-resources/indesign-cc-resources.html
    Scroll down to the resource I'm talking about, and click the download links.

  • Is there a capability to save/export the time capsule settings file when using the iphone/ipad airport utility. the "file" button does not exist on the latest airport utility app.

    is there a capability to save/export the new airport 2TB time capsule settings file when using the iphone/ipad airport utility. set-up wasn't a problem but the "file" button does not exist on the latest airport utility app v6.3 to save the configuration file.

    the "file" button does not exist on the latest airport utility app v6.3 to save the configuration file.
    Sounds like you are a bit confused with version numbers.
    Latest AirPort Utility version for the iPhone / iPad is 1.3.3.  There is no option or capability to export/import settings on the iOS version(s) of AirPort Utility.....although you could take a series of screen shots and save them for future reference.
    AirPort Utility 6.3.x is found on a Mac.....not on iPhone / iPad. Export and Import options are found under the File menu in 6.3.x.

  • QuickTime - Save Export Settings -  script help needed

    Currently I am using Panther 10.3.9 - with QT PRO 7.02 - ( I do not want to
    upgrade to Tiger at this time unfortunately)...
    * MY GOAL: to be able to save export preferences in QuickTime pro.
    Since QuickTime does not seem to be able to save export presets... I
    downloaded the the script collection from
    From: Scriptable Applications: Quicktime Player
    Location: http://www.apple.com/applescript/quicktime/
    and created export settings and tried ....
    Save Export Settings.scpt
    ... but the file that got saved will not open in QT PRO - OSX and wants to
    open something from old os9....
    what do I do?

    = = = (see scripts below)
    * here is my basic workflow ...
    - load a QuickTime movie
    - adjust the QuickTime movie export settings
    - save a test copy ( validating the settings)
    - run the "save export settings.scpt" with name "set1test"
    Then
    - open and run the "Export QuickTime movie.scpt" with the name " test movie"
    - run the new test movie - and when I check info - it does NOT reflect the desired settings...
    = = =
    One issue is - this line...
    export movie 1 to new_file as QuickTime movie using settings "set1test"
    ... It doesn't seem to care what the settings file name is - and if I change that name to a nonexistent name - it still exports the movie without an error.... Therefore it leads me to believe that it's not using it to begin with....
    - another issue is that the settings file "set1test" says it is the kind = "QuickTime settings document" - however it has a blank icon in the Finder - and there does not seem to be any way to open the file with QuickTime 7.02 - and it can to open something classic mode when I double click on it.
    = = = the Save settings script...
    tell application "QuickTime Player"
    activate
    try
    if not (exists movie 1) then error "No movies are open."
    stop every movie
    set the target_file to choose file name with prompt "name & location for the QT settings file:"
    save export settings movie 1 for QuickTime movie to target_file with replacing
    end try
    end tell
    === the Export QuickTime movie.scpt
    tell application "QuickTime Player"
    activate
    try
    if not (exists movie 1) then error "No movies are open."
    stop every movie
    set the movie_name to "mytest.mov"
    if (can export movie 1 as QuickTime movie) is true then
    set the new_file to ¬
    choose file name with prompt "Enter a name:" default name movie_name
    export movie 1 to new_file as QuickTime movie using settings "set1test"
    end if
    end try
    end tell

  • Save Export settings as a Preset?

    Is there a way to save the Export settings as a Preset?
    I convert QuickTime files to a variety of different formats that use very specific compression, size, and sound settings. It would be helpful to have user-defined presets so I don't have to manually enter them everytime AND to ensure consistancy.
    Thanks in advance.

    Hi,
    I found this thread while looking for a similar thing....Requires a little Applescript, but seems to do the job.
    It was here:
    http://lists.apple.com/archives/QuickTime-Users/2002/Nov/msg00294.html
    Re: Custom export settings
    Subject: Re: Custom export settings
    From: Gary Flint <email@hidden>
    Date: Fri, 29 Nov 2002 13:47:45 -0800
    I'm looking at developing an Applescript that will take a source Quicktime
    file and export several Quicktime versions of the movie using different
    compression settings (FPS, quality, codec) for streaming. Applescript can
    tell Quicktime Pro to export movies using the export presets already
    included in Quicktime Pro, but I am wondering if it is possible to add
    custom export presets?
    -Rob
    The answer to your question is yes, with some caveats. You can preserve any arbitrary export preset using the following process:
    1) Open a movie representative of the kind you'd like to export
    2) Choose "Export" from the "File" menu
    3) Select the desired export kind from the "Export:" popup menu (Movie to QuickTime movie in this example)
    4) Click the "Options..." button to specify your custom settings, then click OK
    5) Note that the "Use:" popup menu now displays "Most Recent Settings"
    6) Start the export by clicking on the "Save" button (if you don't start an export the "Most Recent Settings" won't stick)
    7) Cancel the export if it is a long one
    8) To double-check the export settings, select the "Export..." menu item again. The "Export:" popup in the export dialog should indicate the last export performed and the "Use:" popup should display "Most Recent Settings". Click on the "Options..." button to confirm that the settings are indeed what you desire (you can skip this step once you gain confidence that this process actually works).
    9) Without closing the open movie, run the following AppleScript
    tell app "QuickTime Player"
    tell first movie
    save export settings for QuickTime movie to file "My Volume:Export to Xyz Format"
    end tell
    end tell
    10) Repeat steps 1 through 9 for each export variation. Be sure to provide meaningful names for the export settings files.
    To perform the actual movie export, use something like the following:
    tell app "QuickTime Player"
    tell first movie
    -- export various movie versions
    export to "My Volume:Movie Xyz" as QuickTime movie ,
    using settings alias "My Volume:Export to Xyz Format.set"
    export to "My Volume:Movie Xyy" as QuickTime movie ,
    using settings alias "My Volume:Export to Xyy Format.set"
    export to "My Volume:Movie Xzz" as QuickTime movie ,
    using settings alias "My Volume:Export to Xzz Format.set"
    -- etc.
    end tell
    end tell
    Keep in mind that there is only one "Most Recent Settings" for each export type so you may want to make note of your settings in case you want to go back and tweak them.
    Thankyou, and I hope my ramblings make sense.
    I think they made sense (and my answer is predicated on that assumption). That said, I think both your question and my answer will appear as senseless ramblings to the non-scripters on the list.
    Gary Flint
    QuickTime Engineering

  • Is there a way to export workspace settings?

    The problem is, I work with a two-monitor setup. One is the actual working area with a painstakingly constructed layout of panels, the other one has a synchronized window with a full-screen Preview. Every once in a while I accidentally close the working area window, and because Bridge only saves a "current state" in workspaces, my painstakingly crafted window is just gone, poof (sound effect, not slang).
    I know I can save a duplicate working space. That makes it somewhat easier, but I still have to delete the botched working space and create it again as a copy of the duplicate. This, coupled with the fact that the first stage of any troubleshooting on Bridge is to nuke all settings, makes me a bit uneasy with the solution.
    I would be very grateful if someone knew of a way to export workspace settings so I could just load them back in when I mess up or Bridge does.

    Would you mind disclosing the resolution of your 30" monitor in terms of pixels (so many pixels wide by so many pixels high) ?  I'm just curious to see how such a large monitor compares to my two side-by-side 22" monitors.
    Hallo mr de Gokker!
    Nice to see you also here
    The resolution I use with my 30 " is the default one and set to 2560 x 1600 pixels
    If I can take a little 'gamble' I assume the total pixel amount of 2 x 22" will be more, but I never could get used on the two monitor set up. I just like my tools to be close to the image I work on, and using the pen tool with a lot of Brushing and switching to different layers and combine this with action pallet in button mode that needs also a lot of pressing it would be to often en to much distance to travel for my hand, but that's just personal.

  • Want to export user settings from Office 2007 on client, to be able to import in Office 2013?

    Upgrading from Office 2007 to Office 2013. We may need to save the user settings on the client computer, because we are moving some of the systems from 32-bit to 64-bit. How can we export the settings to a folder?

    Hi,
    Could you please tell us what is included in user setting? Such as the customized Quick Access Toolbar settings, customize ribbon settings, or profile in Outlook?
    Generally, we can’t upgrade operating system from 32-bit to 64-bit directly, we need to reinstall 64-bit operating system.
    Office 2007 don’t provide the Import/Export button like Office 2010/Office 2013, we can’t export QAT setting and customize ribbon setting directly.
    To customize an installation of Office 2013, you can use the Office Customization Tool (OCT) to perform tasks such as the following:
    Specifying installation options
    Customizing how Office applications and features are installed
    Configuring default user settings
    Managing additional content: add or remove files, registry entries or shortcuts
    Configuring Outlook options: setting the default profile, adding email accounts, and specifying Exchange      settings
    For more detail information:
    http://technet.microsoft.com/en-us/library/cc179097(v=office.15).aspx
    Regards,
    Greta Ge
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Export QuickTime Settings

    Does any one try to Export QuickTime Settings with applescript?
    For example:
    tell application "QuickTime Player"
    tell first movie
    save export settings for QuickTime movie to file filePath replacing yes
    end tell
    end tell
    It is working perfect with original QT Settings.
    I tried to install Flip4Mac free version and export QT settings for ".mov" to ".wmv", but the file it created does not played in Windows Media Player.
    I notice that Flip4Mac free version only can export 30 seconds movie, does any body could successfully complete this job with FULL VERSION?

    I tried to install Flip4Mac free version and export
    QT settings for ".mov" to ".wmv", but the file it
    created does not played in Windows Media Player.
    I don't understand what you mean. You mean, switching containers from MOV to WMV? WMP has certain codec requirements, I suppose, just as Quick Time does.

  • Need a program that will save the capacity settings for all storage bins

    Hey all,
    I would really apprecaite any help with a program I am trying to come up with.
    What I need to do is create a program that:
    1. Will save the capacity settings for all storage bins to
    a file
    2. Then update them all to allow unlimited capacity BUT be able to revert back to the
    original that was saved.
    Any suggestions about possible existig reports that I may be able to modify to suit my needs, or where to start from if I have to do this from scratch?

    I know I'm talking about expensive apps, but having been in prepress for about 30 years now, I really don't look at anything other than Quark XPress or InDesign for page layout apps. Your printing vendor will also be much happier with you when you use these products. Some areas of the U.S. tend to be mostly Quark oriented; others, InDesign. Ask your vendor what they would prefer, and if there are any free or cheap alternative apps they'll accept documents from.
    Apple's Pages app (part of iWork) is a decent page layout program, but hasn't been updated in four years. It also doesn't support CMYK. If you place a CMYK image in the app, it will export out an RGB version of it. Not good! You can work with RGB images if you prefer, but your CMYK translations will be left to the skill of the print shop you use to do the conversions.
    Don't even think about using Word. It has what it calls a page layout option, and does pretty much work like one, but there's no good way to import it into a real layout app such as InDesign. You end up paying the printer for their time to rebuild your entire project in either XPress or InDesign so they can actually do something with it.

  • Convert/save/export Adobe Edge animation as an animated gif?

    Does anyone know a way to convert/save/export an Adobe Edge animation file into an animated gif. I've created a simple logo animation and the client now wants it as a animated gif to add to there email signature. Is this possible or an I going to have to recreate it in another programme

    Hi resdesign.
    Thanks for your comment, this helped. Would be nice if there was a more direct way though, but this has done exactly what I need. Thanks again

  • Printer Queue Settings Mysteriously Reverting Back to Default Settings on 2008 R2 print servers

    Printer Queue Settings Mysteriously Reverting Back to Default Settings on 2008 R2 print servers
    We have 4 Windows Server 2008 R2 print servers, all of which has the same printer queues installed on them that are utilized by a 3rd party printing program that does a round-robin load balancing scheme.  
    All printers are a combination of HP and Xerox all running some variation of the HP UPD and the Xerox UPD.  Some use the PCL 5 and some use the PCL 6 version determined by age of printer and need.  
    There are typically two printer queues for each physical printer.  
    Example:
    LOCATION_ROOM
    LOCATION_ROOM_TRAY2
    The regular queue is ok being left with default setting,
    The _TRAY2 queues are set to print to "labels" or "pre-printed" paper type or a specific tray.
    From time to time, these _TRAY2 queues will revert back to a factory default state and lose the setting to print to a specific paper type or tray.  Sometimes it happens to the _TRAY2 queue on all 4 servers, sometimes just 1 server, etc.  No rhyme
    or reason.
    Disabled Bi-directional options on both the HP and Xerox UPDs per another article on the internet that said bi-directional could cause the printer to send back settings to the driver and cause this issue.  Even with this option off, we continue to see
    printer _TRAY2 queue settings revert back to factory default and lose their specific paper and tray settings.  We have ruled out the possibility that users or other technicians are the ones making these changes so we suspect it is some interaction between
    the servers, printer drivers and printers themselves causing the issue.  
    Any insight would be greatly appreciated.

    I'd start by using one of the print drivers included in Windows for a few of the printers and confirm it's the universal driver that is causing the issue.
    HP installs some other processes and services on the machine which communicate with the HP devices. 
    PML and something else.  You might want to shut those down and see if these processes are the ones modifying the settings.
    Run process monitor to truly identify which processes is causing the modifications. 
    Alan Morris formerly with Windows Printing Team

  • Acrobat 9.4.2 does not save/export all graphic formats

    Dear all,
    Obviously i had my glass of wine to early! See http://forums.adobe.com/thread/798630 for the whole story of my re-re-re-istallation of Acrobat.
    The installation of 9.0 from the TCS2 DVD was OK
    After update to 9.2 my tests displayed correct results for all desired tasks
    After the update to 9.4.2 i obviously did not test thoroughly enough (hence the glass of whine).
    Later it turned out that 9.4.2 does not save/export graphic formats:
    pdf (all flavours), eps and ps are exported correctly
    html (all flavours) export a html file and the image as jpg correctly
    jpg, jp2 does not save anything, and no error message gives a hint
    doc, rtf save issue error message "Save As failed to process this document. No file has been created"
    png and tif do not save anything, and no error message gives a hint
    xml table and xml export correctly
    txt (both flavours) are exported correctly
    Hence the only method i can get a picture is to export as HTML and through away the HTML... or: enlarge the picture as much as possible on the screen and take a screen shot.
    What is missing in this installation?
    During my re-re-re-installtions some Windows updates may have happened.
    Any help available for this issue?
    Klaus Daub e

    The story goes on and hopefully Adobe has an answer/fix for this
    There was an automatic update from 9.4.2 to 9.4.3, but the problem still existed.
    So I decided to uninstall Acrobat and re-install it for the nth time: start with the installation of 9.0 from TCS2, reboot, update to 9.2, reboot, update to 9.4.3 and reboot again.
    The result is very mixed (and this was alrady with the newly installed 9.0):
    Save as RTF or DOC creates RTF and DOC files - although the contents is not that useful.
    Save as PNG is OK
    Save as JPG, JP2 or TIF works, but it turns out, that the files are all PNG (although with the various extensions)!
    Creating a snapshot now works correctly. The clipboard receives a bitmap. However: although I have set the preferences for the snapshot to be of 96 dpi the bitmap gets the property 72 dpi!
    Setting acrobat.exe to be Compatible to XP SP3 does not change a jota.
    Keep in mind: on Windows XP things worked correctly for a long time. Switching to Window 7, x64 creates this strange problem.
    I need to start with Acrobat from the TCS2 DVD, because otherwise I do not get the correct implementation for working with FrameMaker.
    I'm very reluctant to buy Acrobat X, for me there are too many gimmics there (besides the costs).
    Klaus Daube

  • How to set and save Custom Print Settings in Aperture?

    How to set and save Custom Print Settings in Aperture
    Hi,
    I am printing 12x18" images on 13x19" sheets. I find it difficult to enter the 13x19" dimensions because each value jumps to another random value when I move to enter the second dimension. For instance 13 jumps to, say, 8.5 as I type 19 into the second box. Same with the sheet dimensions.
    Also, when I finally get it all correctly, the margins don't set themselves automatically - which I would I expect.
    Then, even though I save the setting by clicking Save Setting at the gear below, next time I turn Aperture on, it's all gone.
    Any ideas? Thanks.
    Raphael

    For me, it is working with these settings, Raphael.
    Does your image have a 12x18" aspect ratio? You may want to crop it to the desired aspect ratio before printing.
    I can only test with Aperture 3.6 on Yosemite 10.1.

  • Is it possible to save/export Messages created in the Discussions Panel?

    Is there a way to save/export messaegs created in the discussions panel?  For example, when saving a report to PDF or Excel, is it possible to include the discussion messages?  Is there a way to query the Discussion Messages so that they could appear on a report?

    You can't query for discussions directly in a report.  In the CMS database this information in a binary format.
    You would have to either use the Query Builder tool or write a program using the SDK to get to it.  The query you would run looks something like this:
    Select *
    from CI_INFOOBJECTS
    where SI_PARENTID = (SI_ID of the report the discussion is attached to)
      and SI_HIDDEN_OBJECT = 1
      and SI_KIND = 'DISCUSSIONS'
    -Dell

  • Save PDF Tagging settings in FM11

    Hi
    I am trying to create "accessible" PDF for which I need to add tags in my FrameMaker document. However, I noticed that I need to create this tags list every time I save the FM book as a PDF. Is there a way I can save these tag settings? I have some 50+ tags and structuring it every time is a very time-consuming task.
    Sreekanth

    Hi Sreekanth
    Don't know if you got this sorted or not but see this discussion:
    http://forums.adobe.com/message/5534831#5534831
    Laura

Maybe you are looking for

  • Questions: On NVIDIA Kernel module and install process

    Hi everyone, I have a PCIe 7600 GT card, and trying to get it to work in its full power. So far I have not succeeded, and condemned to run in VESA mode. But have one more try to do following the advisory of upgrading kernel and reinstalling the Nvidi

  • Fading Effects in and then out...

    Bit of a confusing question so here it goes... I've got a multi track project set up with 10 tracks of drums - What I'm looking to do is start the song of with heavily effected drums sort of spacey/big reverb thing which I can do but I want to stop t

  • My PPC G5 Mac Has Been Randomly Shutting Down...

    Is there anything else that it could be besides the power supply? It's happened maybe once daily for the last week or so... Always powers right back up though. Are there any tests and such that I could run to get more information? Any help appreciate

  • .clearfix css doesnt render in DW Design View

    I have used the css .clearfix code in my site to enable two divs to clear a floated element. It works fine in browsers like IE6, IE7, FF, Safari, etc. But the clearfix code doesnt make the divs clear when I am designing in Dreamweavers Design View. T

  • Can't disable share button on Mavericks

    It seeps that Share Button appears in Notification Center every time I restart my mac. I go to Settings/Notifications and untick "Show share button in Notification Center". The button disappears but as soon as I restart my mac it is there in Notifica