How to save custom settings

I was wondering if anyone knows of a software that allows you to save custom quicktime export settings so that one can easily go back and compress videos from pre-selected settings opposed to just using the 'use recent settings' option.
I know of rooVid but it does not work for leopard.
Please advise thanks.

I was wondering if anyone knows of a software that allows you to save custom quicktime export settings so that one can easily go back and compress videos from pre-selected settings opposed to just using the 'use recent settings' option.
MPEG Streamclip (free) will allow you to save named "Presets" which can be recalled/loaded as needed when using Streamclip to perform the various exports via the QT/QT component structure embedded in the current OS. (I.e., the created file is not for use by QT Pro itself.)

Similar Messages

  • How to save Custom control records through module pool program ?

    Hi guru ,
    1. How to save Custom control records through module pool program ?
    I wrote multiple lines of record in custom control
    Who to save that records ?
    thanking you.
    Regards,
    Subash.

    Hi,
    can refer following code -
    IN PAI , CODE is as follows-
    *&      Form  editor_output
    FORM editor_output .
    NARRATION1 is name of custom controller
      IF v_editor IS INITIAL.
      Create obejct for custom container
        CREATE OBJECT v_custom_container
          EXPORTING
            container_name              = 'NARRATION1'
          EXCEPTIONS
            cntl_error                  = 1
            cntl_system_error           = 2
            create_error                = 3
            lifetime_error              = 4
            lifetime_dynpro_dynpro_link = 5
            OTHERS                      = 6.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno
                     WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      Create obejct for the TextEditor control
        CREATE OBJECT v_editor
          EXPORTING
            wordwrap_mode              = cl_gui_textedit=>wordwrap_at_fixed_position
            wordwrap_position          = line_length
            wordwrap_to_linebreak_mode = cl_gui_textedit=>true
            parent                     = v_custom_container
          EXCEPTIONS
            error_cntl_create          = 1
            error_cntl_init            = 2
            error_cntl_link            = 3
            error_dp_create            = 4
            gui_type_not_supported     = 5
            OTHERS                     = 6.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno
                     WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ENDIF.
    ENDFORM.                    " editor_output
    getting textdata in internal table as follows
    *&      Form  create_text
    FORM create_text .
      REFRESH : it_texttable,
                it_text.
      IF v_doc_number IS NOT INITIAL.
        IF v_editor IS NOT INITIAL.
          CALL METHOD v_editor->get_text_as_r3table
            IMPORTING
              table                  = it_texttable
            EXCEPTIONS
              error_dp               = 1
              error_cntl_call_method = 2
              error_dp_create        = 3
              potential_data_loss    = 4
              OTHERS                 = 5.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                       WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ENDIF.
    Now, our final text data is in internal table it_texttable.
    pls, Reward if found helpful.

  • How to save Custom control records ?

    Hi guru ,
    1. How to save Custom control records module pool program ?
    I wrote multiple lines of record in custom control
    Who to save that records ?
    thanking you.
    Regards,
    Subash.

    REPORT  ZCUSTOMC.
    CLASS event_handler DEFINITION.
      PUBLIC SECTION.
        METHODS: handle_f1 FOR EVENT f1 OF cl_gui_textedit
                 IMPORTING sender,
                 handle_f4 FOR EVENT f4 OF cl_gui_textedit
                 IMPORTING sender.
    ENDCLASS.
    DATA: ok_code LIKE sy-ucomm,
          save_ok LIKE sy-ucomm.
    DATA: init,
          container TYPE REF TO cl_gui_custom_container,
          editor    TYPE REF TO cl_gui_textedit.
    DATA: event_tab TYPE cntl_simple_events,
          event     TYPE cntl_simple_event.
    DATA: line(256) TYPE c,
          text_tab LIKE STANDARD TABLE OF line,
          field LIKE line.
    DATA handle TYPE REF TO event_handler.
    START-OF-SELECTION.
      line = 'First line in TextEditControl'.
      APPEND line TO text_tab.
      line = '----
      APPEND line TO text_tab.
      line = '...'.
      APPEND line TO text_tab.
      CALL SCREEN 100.
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'SCREEN_100'.
      IF init is initial.
        init = 'X'.
        CREATE OBJECT: container EXPORTING container_name = 'TEXTEDIT',
                       editor    EXPORTING parent = container,
                       handle.
        event-eventid = cl_gui_textedit=>event_f1.
        event-appl_event = ' '.                     "system event
        APPEND event TO event_tab.
        event-eventid = cl_gui_textedit=>event_f4.
        event-appl_event = 'X'.                     "application event
        APPEND event TO event_tab.
        CALL METHOD: editor->set_registered_events
                     EXPORTING events = event_tab.
        SET HANDLER handle->handle_f1
                    handle->handle_f4 FOR editor.
      ENDIF.
      CALL METHOD editor->set_text_as_stream EXPORTING text = text_tab.
    ENDMODULE.
    MODULE cancel INPUT.
      LEAVE PROGRAM.
    ENDMODULE.
    MODULE user_command_0100 INPUT.
      save_ok = ok_code.
      CLEAR ok_code.
      CASE save_ok.
        WHEN 'INSERT'.
          CALL METHOD editor->get_text_as_stream IMPORTING text = text_tab.
        WHEN 'F1'.
          MESSAGE i888(sabapdocu) WITH text-001.
        WHEN OTHERS.
          MESSAGE i888(sabapdocu) WITH text-002.
          CALL METHOD cl_gui_cfw=>dispatch.      "for application events
          MESSAGE i888(sabapdocu) WITH text-003.
      ENDCASE.
      SET SCREEN 100.
    ENDMODULE.
    CLASS event_handler IMPLEMENTATION.
      METHOD handle_f1.
        DATA row TYPE i.
        MESSAGE i888(sabapdocu) WITH text-004.
        CALL METHOD sender->get_selection_pos
             IMPORTING from_line = row.
        CALL METHOD sender->get_line_text
             EXPORTING line_number = row
             IMPORTING text = field.
        CALL METHOD cl_gui_cfw=>set_new_ok_code   "raise PAI for
             EXPORTING new_code = 'F1'.           "system events
        CALL METHOD cl_gui_cfw=>flush.
      ENDMETHOD.
      METHOD handle_f4.
        DATA row TYPE i.
        MESSAGE i888(sabapdocu) WITH text-005.
        CALL METHOD sender->get_selection_pos
             IMPORTING from_line = row.
        CALL METHOD sender->get_line_text
             EXPORTING line_number = row
             IMPORTING text = field.
        CALL METHOD cl_gui_cfw=>flush.
      ENDMETHOD.
    ENDCLASS.
    aniruddh

  • How to save Custom control records module pool program ?

    Hi guru ,
    1. How to save Custom control records module pool program ?
    I wrote multiple lines of record in custom control
    Who to save that records ?
    thanking you.
    Regards,
    Subash.

    Hi Subasha,
    Please check the format below since it is based on a working code
    **************data declarations
    TYPES: BEGIN OF TY_EDITOR,
    EDIT(254) TYPE C,
    END OF TY_EDITOR.
    data: int_line type table of tline with header line.
    data: gw_thead like thead.
    data: int_table type standard table of ty_editor.
    You should create a text for uniquely identifying the text you are saving each time so that it doesn't get overwritten
    For this a key combination must be decidedd to uniquely identify the test..here it is loc_nam
    ****************fill header..from SO10( t-code )
    GW_THEAD-TDNAME = loc_nam. " unique key for the text
    GW_THEAD-TDID = 'ST'. " Text ID
    GW_THEAD-TDSPRAS = SY-LANGU.
    GW_THEAD-TDOBJECT = 'ZXXX'. "name of the text object created
    *Read Container and get data to int_table
    CALL METHOD EDITOR ->GET_TEXT_AS_R3TABLE
    IMPORTING
    TABLE = int_table
    EXCEPTIONS
    ERROR_DP = 1
    ERROR_CNTL_CALL_METHOD = 2
    ERROR_DP_CREATE = 3
    POTENTIAL_DATA_LOSS = 4
    others = 5.
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    loop data from int_table and save to int_line-tdline appending it.
    *save the text
    CALL FUNCTION 'SAVE_TEXT'
    EXPORTING
    HEADER = GW_THEAD
    TABLES
    LINES = InT_LINE
    EXCEPTIONS
    ID = 1
    LANGUAGE = 2
    NAME = 3
    OBJECT = 4
    OTHERS = 5.
    IF SY-SUBRC 0.
    ENDIF.
    The code shown above is ok and working fine for save also,hope that the above sample with helps you solve the problem
    Please check and revert,
    Reward if helpful
    Regards
    Byju

  • How to save slideshow settings so when I press Ctrl-Enter it does what I want?

    How to save slideshow settings so when I press Ctrl-Enter it does what I want?
    eh?
    R

    I tested what you gave me there Rob. On my Mac I have dual monitors:
    -Only blackens/show slideshow on one monitor (the main monitor, if I move LR to my secondary monitory, the slideshow is still on the first, but the second still runs normal, with LR just sitting there).
    -If I disable slide durration I have to manually advance the slides with the right arrow.
    -I don't have "Lightroom" (or with my current settings any) text on the screen.
    -Does not repeat.
    My Windows machine doesn't have dual monitors, but the others work correctly....
    That is, until I thought about this differently. Since we are looking at changing Slideshow settings, I was naturally in the Slideshow module. But then I remembered the whole point of the Impromtu Slideshow was that you can view slideshow playback from any module. Once I returned to Library and clicked Command/Ctrl+Enter, then I saw exactly what you are talking about. Both monitors are blackened, slide duration is ignored, etc.
    You know why? Because the Impromptu Slideshow uses one of the templates when outside of the Slideshow Module. Which one? Well, Default +, of course. How do you change that? Right-click (Command-click) the slideshow template you'd rather use and select "Use for Impromptu Slideshow".

  • How to save custom metadata display in CS4.2?

    I know this has been asked in the past, but no one has come up with an answer I can find.
    Here's what happens: in the project bin, I click Metadata Display, click the Premiere Project Metadata line, unclick the metadata I don't want to see, save the settings as My Setting, and go on with my day.  The settings remain the same UNTIL I close the propject and open it back up and all the settings go back to default.  So I open the Metadata Display back up from the project bin to reload my saved, custom settings...the (custom) bar is greyed out and not selectable, so I have to go through and do this all over.
    Essentially, Premiere is NOT saving the custom settings.  Why is this happening?  It worked when I had 4.1.  What's going on?

    do a chain and endchain on the fields.Then insert the fields in to the required database.

  • How to save panelCollection settings?

    in ADF11G af:panelCollection can give RichTable some awsome function, like set column hidden or not , column reorder and so on. how can i save this settings to login user or browser cookie?

    Hi,
    also note that the column hide/show state is saved on the af:column not the panelCollection. The panel collection calls the RichColumn API to change the visible state
    Frank

  • How to save scanner settings?

    Hi,
    My Acrobat Pro 11.0.06 does not save scanner settings. So every time I scan, I have to select the scanner from the dropdown list and change the settings (scan front page or double sided, paper size, etc). Appreciate any help on what I should do to solve this.
    In case that's useful, my scanner is a HP Photosmart.
    I also use Acrobat at work, and it saves the last scanner setting automatically.
    Many thanks!
    Don

    Hi,
    also note that the column hide/show state is saved on the af:column not the panelCollection. The panel collection calls the RichColumn API to change the visible state
    Frank

  • Apple: How to Save Audio Settings in QTP 7 ???

    Searching through the forums here and see that I'm apparently chasing my tail here trying to save Audio settings on a QT movie that I need to boost the audio on.
    Is it true that we can't save our modified audio settings with Pro??? If so, WHAT are we supposed to do in order to be able to accomplish this? Sheesh, I would NOT have upgraded if I'd know this - removing features without notice doesn't seem to be the way to play nice. I've got to believe that this is a DEFECT that someone within Apple is aware of and is fixing.
    Someone at Apple care to comment? I see that I'm not the only one unhappy with the change.
    Please advise and I also welcome suggestions for another option out there.
    Many thanks...Bob
      Mac OS X (10.4.7)  

    If so, WHAT are we supposed to do in order to be able to accomplish this?
    I use MPEG Streamclip to adjust brightness, contrast, saturation, and/or volume settings. However, I normally do this in conjunstion with recompression to an iPod compatible format.
    I would NOT have upgraded if I'd know this - removing features without notice doesn't seem to be the way to play nice. I've got to believe that this is a DEFECT that someone within Apple is aware of and is fixing.
    Since QT 7 is supposedly based on an all new framework, possibly there was no choice in the matter for one reason or another. I agree with your frustration. Have you used Apple's QT feedback to request these features be interegrated/reintegrated in future upgrades. If enough people make their wishes known, perhaps Apple will eventually take heed.

  • How to save custom Producer Kits?

    Hello.
    I've been trying to save a complete custom mixed/edited producer kit with no succes.
    There's an article how to load, edit and save the patches, but I haven't been able to make the custom saved producer kits to appear in the library or even in the finder. The saved instrument appears on the Library image window, but not in the library. Has anyone succeeded with saving pre-mixed multichannel drum kits?
    I would like to use this in other songs too...

    Thanks Art, CCTM and KC
    Oh how I wish to say these advices resolved the problem - but no...
    I followed through these steps:
    In the Finder, choose Go to Folder from the Go menu.
    Type ~/Library/Preferences in the "Go to the folder" field.
    Press the Go button.
    Remove the com.apple.logic10.plist file from the Preferences folder. Note that if you have programmed any custom key commands, this will reset them to the defaults. You may wish to export your custom key command as a preset before performing this step. See the Logic Pro X User Manual for details on how to do this. If you are having trouble with a control surface in Logic Pro X, then you may also wish to delete the com.apple.logic.pro.cs file from the preferences folder.
    If you have upgraded from an earlier version of Logic Pro, you should also remove~/Library/Preferences/Logic/com.apple.logic.pro.
    Restart the computer.
    I found the plist files from the ~/Library/Preferences folder and deleted them
    I also deleted
    Then restarted - no cure
    Then I did the same but deleted all files including "logic" from the Preferences. Then checked out all the User accounts of this computer with the same procedure. I deleted also the Mainstage PLISTS just to make sure.
    Then I emptied the Trash and restarted - but no cure
    Then I did that all again and deleted the Logic Pro X app - restarted and reinstalled it.
    That didn't help either.
    I also tried to save different PATCHes using SAVE on the Library low-right corner.
    I wasn't sure where to save them, but the Labrary didn't create any User Folder or those custom patches.
    Not even after using refresh library...
    What about Garageband, Final Cut Pro or some other app - could they cause this?
    What do you think? Do I have to start from a scratch to build up the system installing every app one by one again to make this work? That would be **** of a job...
    I'm beginning to feel like a kid complaining about something and nothing seems to help.
    Thanks for your patience and all the advice you've given.
    If you have any other ideas- keep them coming

  • Premier CS3 how to save your settings (Presets) ?

    I installed my Premier CS3 on my new PC and wanted to use some of my old PRESET setting that i have saved on my other PC...
    Ok here its :
    On my old PC i modified let's say a Trapcode plug in and saved it under PRESET , basically i chnged certain prameters within that plug in and saved it under a new name, now that i upgraded my PC and reinstalled my Premier on the new PC, is there any way i could go to my old PC and somehow save that file and use it on my new PC, so when i try to use my old preset, i get the same settings ?
    thanks !

    Ok Harm here its..
    I used the Magic Bullet's MisFire on one of my clips, but you know how you goto effect control settings and change certain parameters and then you can save it under a user PRESET, which appears on top of all effects as  Presets, ok there we go .
    so, everytime i wanna use the MisFire i goto Presets on top of effect page and use that one instead of the actual MisFire from Magic Bullet video effect section, that way i don't have to change any parameters , its already set the way i wanted to look !

  • How to save chart settings to file

    How can I easily save the whole settings of a chart (not the chart data) to a file?
    The solution should also work with an executable.
    Saving every property isn´t really handable.
    Thanks for hints

    Good morning, 2ev!
    The way to do this is with Property nodes. If you right click on the chart and select create property node, you will get a pulldown menu on the wiring diagram. Select the parameters you want (be sure to choose READ all) and then direct them to a file. A simple file generation script should be all you need to do this automatically. Look at the attached example....you will want to select your own parameters to save. Good luck!
    Eric
    Eric P. Nichols
    P.O. Box 56235
    North Pole, AK 99705
    Attachments:
    settinglogger.vi ‏26 KB

  • How to save router settings?

    Hey,
     Can anybody tell me how or if I can save off my D-Link (DIR-628) router settings?
    I have to format my hard drive and I remember how much of a pain it was to set it up.
    Thanks!
    Jack

    Perhaps you should ask in a D-Link forum...you understand this is a Linksys support forum, and the two brands ane made by different manufacturers, right.....?
    Tomato 1.25vpn3.4 (SgtPepperKSU MOD) on a Buffalo WHR-HP-G54
    D-Link DSM-320 (Wired)
    Wii (Wireless) - PS3 (Wired), PSP (Wireless) - XBox360 (Wired)
    SonyBDP-S360 (Wired)
    Linksys NSLU2 Firmware Unslung 6.10 Beta unslung to a 2Gb thumb, w/1 Maxtor OneTouch III 200Gb
    IOmega StorCenter ix2 1TB NAS
    Linksys WVC54G w/FW V2.12EU
    and assorted wired and wireless PCs and laptops

  • How to save customized skin (via Intel graphics) from session to session

    Hi-I'm a novice so hopefully there's an easy resolution. I've customized the Firefox theme using Intel HD graphics "color enhancement." Even though the coloring setting are saved via the Intel card, when I start a new Firefox session the theme reverts to the original shadings. I can change back to my customized theme by opening the Intel Control Center but I'd like to avoid that step.
    Is there a way to keep my settings as default without fiddling with css editing which I'm too stupid to do? Thanks for any thoughts

    Thanks for responding! It's a trivial issue but with OCD I can spend hour after hour trying to get things as I want them.
    I found Flaminglow as a theme that was a bit unique. But I wanted the saturation, contrast, etc. altered, which I did with Intel graphics program that was pre-installed. I can save the color enhancement i.e. "a" scheme, "b", etc. with Intel. But when I restart the pc it reverts to the default colors of Flaminglow and I have to go to the Intel program and enter the saved scheme. I don't want to have to do that each time I turn the PC on. I've included a screenshot of the homepage and one of the Intel control center.
    I thought that perhaps a session saving add on may work but just don't know. Make any sense, lol? Thanks

  • How to save edit settings under preferrences to use when creating or printing a PDF from word 2003 Windows PC 8.1

    I have tried to save my PDF settings after editing them, but when I go to "Print" to PDF and check the settings I keep getting Standard default settings.
    There is no Adobe PDF listed as a file heading to change conversion settings on my Word screen.
    I have tried to create a PDF by open file through the Adobe application and also by trying to print through the Word application with document open and using Adobe PDF as the printer driver.I have changed or edited the settings but they do not appear as an option to select, just the standard default settings.
    I have been able to save my setting as a Adobe PDF job options, but can't access them or use them when it comes time to convert to PDF.
    Any help would be appreciated. Thanks

    I have apprached it 3 different ways:
    - by opening acrobat and going to preferrences, clining on  convert to PDf
    - Microsoft Word, then changes each section of the edit settings, ie
    general, fonts, images, etc make the cahneges then hit OK, at this point I
    get a save as option rather than a save. It saves my changes as a PDF, but I
    am not able to access it when I go to make the PDF.
    - I also have tried to print PDF from Word  and got to properties to make
    the changs with the same results as above.
    - Then I tried yur suggestion and went to the printer in the control panel
    and had the same results.
    I am using mircosoft word 2003 which has been compatable with my windows 8.1
    I think the problem may be I am using a "trial" version of Adobe Acrotbat DC
    2105 version. It must not belettingme save the setting changes.But this
    shouldnot be if they want me to really experience the full effects of the
    program.
    I appreciate your help, thanks

Maybe you are looking for