Equivalent for Create Sequence from clip in Extendscript

Hi,
     Please help me to create a sequence from a clip using Extendscript.(through jsx coding).
     I want to create a sequence from a clip in same way as a sequence is made through GUI when we click on "New Sequence from clip".
     This is very urgent please help..
Thanks and Regards,
Anoop NR

But before I grant this privilege, it was able to create the sequence from sql command only its like
CREATE SEQUENCE seq_name START WITH 1 INCREMENT BY 1 NOCACHE NOCYCLE;
Is the privilege specially required to be granted when used from stored procedure?

Similar Messages

  • New sequence from clip does not apply the Pro Res Compressor...

    I wanted to test Premiere to see if it could handle Pro Res videos (which after some initial research, I read that it can). So to see for myself, I imported a Pro Res 422 video, right clicked the clip and selected "New Sequence From Clip"... But it does not seem to apply the Pro Res 422 compressor...
    The video is originally HDV and I converted in Compressor to 422...
    I know it may be pointless to convert HDV to Pro Res (not to mention that the HD clips weights 45 MB and the converted 205 MB, although in FCP the pro res is less taxing on the system as opposed to HDV, not sure if the same applies with Premiere)... But I will be receiving from pro res files soon, and I want to make sure they work properly in Premiere.
    Thanks

    Being a recent FCP devotee I will see if I can interpret what this person expected.
    By dropping a Prores 422 clip on the Make Sequence button, I will hazard a guess that he expected to see a Prores 422 sequence created. In the FCP workflow that  is the desire sequnce to play that clip in. What he is seeing in the second image (the sequence settings) is an AVCHD 1080 anamorphic sequence. And hes not sure why its not Prores.
    Im sure once he reads the links Todd provided he will understand he is not in Appleland anymore and that there is a different workflow with PrP.
    How did I do?   ;-)

  • Setting margins for "Create PDF from Clipboard"

    I'm posting this because I could not find another question that dealt with my problem directly, but after A LOT of searching, and a few failed attempts, I did find the solution.
    Problem: When creating a PDF from content copied to the clipboard from a webpage, everything on the page was way off-center, with almost no left margin.
    Once the PDF was created, since there is no easy way to adjust page margins, the only way to center everything would have been one page at a time (for 24 pages), by dragging the page contents manually to the center of the page. I tried using the "Set Page Boxes" function, but I ended up with 24 blank pages. Yes, I could export the PDF as a Word document, and then reprint that Word document as a PDF, but I knew there had to be a simpler way.
    Solution: When you create a PDF from a clipboard containing text (or in the case of the above document, text and images), Acrobat uses the settings for "Create PDF from Web Page."
    Unfortunately, if you look up Convert clipboard content to PDF in Acrobat Help, it doesn't tell you that. AND the settings for "Create PDF from Web Page" are NOT included in the list of settings under Preferences > Convert to PDF. There is an HTML option in that list, but there are no editable settings for that file type (There are actually quite a few such file types listed there, and my question is, if there are no editable settings, why are they even listed under Preferences?). Batch Conversion of Text Files also uses the same settings.
    So, here's how to do it:
    Select File > Create > PDF from Web Page
    Click on Settings
    To adjust the default margins for new PDF files created from a clipboard containing text, select the Page Layout tab, and adjust the margins to your liking. Notice how small the Default right and left margins are... hence my problem.
    Click on OK to save your new settings, and the simply Cancel out of the "Create PDF from Web Page" dialog box. If you read this page, it says you have to actually create at least one PDF file using the "Create PDF from Web Page" dialog in order for your settings to stick, but I never did, and my settings were saved just fine.
    If you're copying basic text (or converting text files), that's all there is to it.
    With web page content, there could still be a problem (as there was with this web page), if the content you've selected is not the full width of the web page. I think this has to do with the fact that web pages often use Content Style Sheets to format their page elements, and those styles are transferred when you copy that content to the clipboard. The PDF page margins are technically correct now, as you can see by the position of the image at the top of the page, but the text portion (at the bottom of the page) of the PDF only fills the same percentage of the text area (between the margins) as it did on the web page.
    The only solution I have found if this happens, is to export the PDF as a Word document, and adjust the margins there. In the document I was working with in these examples, there were boatloads of different invisible subsections to the document, and each subsection had different settings for right and left indent, fonts, font sizes, etc., so there was a lot more to it than a simple 'copy & paste' type of procedure. Once I corrected all the different elements (and this one had a whole lot of weirdness going on), and then printed it as a new PDF, everything looked much better.
    Hopefully this helps someone else find their answer much easier than I found mine
    And of course, comments and suggestions are welcome.

    Thanks for asking. Yes, with either the Crop tool or the Set Page Boxes tool, I could trim the page just fine, removing the excess from the right side, but as soon as I tried to add space to the left side, it just blanked out the whole page. It seemed like it should have worked, and maybe on a simple text file it would have. But that particular array of content proved to be most troublesome.
    I also could have just cropped the page down to 6.5 x 11, and then centered it when I printed it.
    My primary goal in searching for the answer, and my main reason for posting this, was for setting the margins for future documents (and to help others find those settings,too). Since I still had the web address, I could easily recreate the PDF once I figured out how to set the margins. Of course I didn't realize that there would still be problems once I got the settings right. Like I said, that particular web page seemed to have several unique difficulties.

  • CREATE SEQUENCE from a stored procedure

    Hello,
    Is it possible, to create a sequence object from an own written stored procedure? Can I reinitialize the actual value of a sequence object without recreating it from a stored procedure?
    Thank you for recommendations,
    Matthias Schoelzel
    EDV Studio ALINA GmbH
    Bad Oeynhausen

    maybe this example might be of some help.
    SQL> create or replace procedure dy_sequence (pSeqName varchar2,
      2                                           pStart number,
      3                                           pIncrement number) as
      4    vCnt     number := 0;
      5  begin
      6    select count(*) into vCnt
      7      from all_sequences
      8     where sequence_name = upper(pSeqName);
      9 
    10    if vCnt = 0 then
    11      execute immediate 'create sequence '||pSeqName||
    12                        ' start with '||to_char(pStart)||
    13                        ' increment by '||to_char(pIncrement);
    14    else
    15      execute immediate 'alter sequence '||pSeqName||' increment by '||to_char(pIncrement);
    16    end if;
    17  end;
    18  /
    Procedure created.
    SQL> -- create the sequence by calling the dy_sequence procedure
    SQL> execute dy_sequence ('test_sequence',1,1);
    PL/SQL procedure successfully completed.
    SQL> select test_sequence.nextval from dual;
       NEXTVAL
             1
    SQL> -- alter the sequence to increment by 2
    SQL> execute dy_sequence ('test_sequence',0,2);
    PL/SQL procedure successfully completed.
    SQL> select test_sequence.nextval from dual;
       NEXTVAL
             3
    SQL>

  • IMovie equivalent for creating custom audio files

    Is there an iMovie equivalent for just music?  I am trying to create a cardio routine that plays music and has recorded prompts and/or sound effects at different intervals.  I can do this in iMovie, but it's overkill and iMovie shuts down when the screen is locked.

    Looked at this, but did not see where you could leverage an existing song purchased from iTunes and insert an audio recording or sound effect in the file.

  • New sequence from clip not really matching my clips

    We mainly do motion graphics and 3D animation, so I use Premiere Pro almost exclusively to edit together such pieces rendered out of After Effects using the Pro Res 4444 codec.  As an FCP user, my instinct was that if I invoked creating a New Sequence from one of those clips Premiere would create a sequence that would match my Pro Res 4444 clip exactly.  It doesn't.  It matches the size and frame rate, but creates a sequence with the Editing mode set to ARRI Cinema, I-Frame Only MPEG Preview File Format, MPEG I-Frame codec, and my pristine ProRes 4444 ends up with a yellow render bar in the sequence.
    Am I missing something?
    I have to select custom from the Editing mode and manually select ProRes 4444, etc.  Not a big deal.  I could save that preset.  Just wondering why that function doesn't totally match my source clip.
    Thanks.
    Shawn Marshall
    Marshall Arts Motion Graphics

    Being a recent FCP devotee I will see if I can interpret what this person expected.
    By dropping a Prores 422 clip on the Make Sequence button, I will hazard a guess that he expected to see a Prores 422 sequence created. In the FCP workflow that  is the desire sequnce to play that clip in. What he is seeing in the second image (the sequence settings) is an AVCHD 1080 anamorphic sequence. And hes not sure why its not Prores.
    Im sure once he reads the links Todd provided he will understand he is not in Appleland anymore and that there is a different workflow with PrP.
    How did I do?   ;-)

  • BAPI for Create PO from Sales Order Data and POST GR from PO created

    Dear,
             Can u help me how to create BAPI for Purchase Order creation from sales order Data
              what the bapi to Post GR from the PO created.
    Regards,
    Manoj

    Hello Manoj what you have to do to create PO from PR is that
    1) Use   BAPISDORDER_GETDETAILEDLIST (pass sales order number in sales_document table) and then get PR (Purchase requisition number from this BAPI.
    2) Use  BAPI_REQUISITION_GETDETAIL to get PR items
    3) Use BAPI_PO_CREATE1 to craete PO from PR then.
    to create goods movement you can use
    BAPI_GOODSMVT_CREATE
    REWARDS IF USEFUL.

  • Issue with IDE configuration for creating Webservice from EJB

    Hi All,
           I was trying to create a webservice from a EJB(session bean).I executed following steps :
    1. I created the bean in one EJB project.
    2. Then created another Enterprise Project in whichEJB projects .jar file is included.
    3. Now when i right click "ejb-jar.xml" to create a webservice ,webservice wizard
       appears in which Server and WS runtime configuration are set properly.
       But it displays following error message on the top : "Select a service Project Type".
       If i click on the link on the wizard to select a "service Project type" the drop down for the same comes empty.The value for 'Service Project' is already defaulted
    as "Webservice Project ".If i go to windows->preferrences->Webservcies->ProjectTopology i found two entries in the service project type list :
                         1.Dynamic Web project
                         2.SAP Web Project
         But there is no entry for Webservice Type project.Can any one help me out
    how to solve this issue ?
    Thanks and Regards
    Ashis

    Hi Ashish,
    perhaps you launch the Web service wizard from the wrong location (i.e. not selecting the SEI you want to use). Did you strictly follow the steps described in the <a href="http://help.sap.com/saphelp_nwce10/helpdata/en/44/f36fa8fd1d41aae10000000a114a6b/frameset.htm">documentation</a> for creating the web service?

  • Create Sequence from Bin and retain sort order

         I am trying to create new sequences by dragging a bin to the "new item" folder icon in the bottom right. It does create a sequence that matches the settings of the clips in the bin, but they are in a completely random order. The bin itself is sorted by name. If I select all of the clips in a bin and drag it to create a bin, they are sorted properly, but it is slowing down my workflow. Any thoughts? Does Premiere CC work this way for anyone else?

    Not sure what to suggest except..
    Posters often talk about wanting a faster workflow...
    but it is slowing down my workflow.
    FWIW
    Maybe 1 minute invested in creating a New Sequence Preset (Custom) for now and future use..
    Click On Bin - 1 sec
    Ctrl-A ( Select all) - 1 sec
    Drag to the Sequence - 2 secs
    Cant think of a faster way to speed up your workflow apart from that.
    [Text formatting corrected.]
    Message was edited by: Jim Simon

  • Create sequence from Data Modeler?

    Hi,
    I started using SQL Developer Data Modeler to model my first APEX application, but there are one thing I don't understand.
    From the logical model, I can create all my application model, but I don't find anywhere I can define thath my PK must be populated from a squence.
    From APEX is a step in the wizard, creating the sequence and trigger, but If I model from Data Modeler, then, I "loose" this important feature common to mostly all my table objects.
    There are something I'm missing?
    Regards.

    Philip Stoyanov wrote:
    You can set surrogate key to be generated for entity during engineering to relational model - in DM 3.3 available here http://www.oracle.com/technetwork/developer-tools/datamodeler/downloads/datamodeler-33-ea-1869055.html
    PhilipHi again,
    Sorry sir, but I downloaded 3.3 and can't find what you point in your last message.
    Regards.

  • Request Advice for creating DVDs from 7.5 gig file sizes

    Hi,
    [using dvdstudio 3]
    I’m looking for advice for home DVD project i'm working on. I want to create a DVD from video that has been captured to my computer using iMovieHD, and have completed my wanted edits for two clips. They are about an hour-plus each. When exporting the two clips separately (Sharing, in iMovie terms), the file sizes are about 7.5 Gig each at full quality,and I understand I’m going to have to cut some corners in the process to get both on one DVD and I’m even willing to have two DVDs, but still need to know the best way to decrease the file size for each one. The audio should remain as 16 bit 44.1 Khz, Stereo.
    I’m wondering what the best method to achieve an optimum quality DVD is. Again, I realize I’ll have to compress the video at the loss of quality (i.e., “cut corners”) to make the DVDs.
    In my previous experiences, I’ve retained the larger file size all the way up through the authoring process in DVD Studio letting it build a 7.5 gig dvd format (VIDEO_TS). Then, I used DVDx2One to compress it down to 4.5. The end result was pretty good and I never had any troubles per say. However, this project is important to me and I want to make the best quality I can. What would you do differently?
    Here are my software tools that I use interchangeably for previous projects; copying, authoring, editing, etc:
    -> iMovieHD 4x – used to capture the video.
    -> DVD Studio 3 - to author and build my dvd session
    -> ffmpegx - as a video conversion and compression tool
    -> DVDX2one to recompress DVD formatted (VIDEO_TS).
    Thanks very much for your tips!
    JeffTronics

    Hi Jeff - is the iMovie file in QT format?
    If so, you need to compress it to MPEG2 - you don't need to suffer too much of a quality loss by doing so - how long (in minutes) is the video?
    You should also encode the audio to AC3 - this will save loads of space as AC3 is about a tenth the size of a .aiff.
    ffmpeg will create the MPEG for you, but so will DVDSP (as indeed will Quicktime). In your applications folder you should find 'A.Pack' which will handle the audio conversion as well.
    The exact encoding parameters you use will depend on the nature of the footage that you have got - it's more than just squeezing it to fit - you need to account for fades, pans, zooms and fast action as well. Some parts can have a lower bitrate applied than others, and this is where a tool such as Compressor comes in handy. DVDSP will encode the footage as you work, or when you build if you want it to - this is also a reasonable option if you have nothing else available, or if you are new to the whole thing.
    The best workflow is to go from iMovie to a compression tool to create your MPEG2 file. Take the associated .aiff file and encode to to Dolby Digital (AC3). Import both the MPEG2 and the AC3 file into DVDSP and you should be able to get the entire project to less than 4.37GB (the maximum capacity of a DVD-R).

  • Render Markers to Files OR Create Sequences From Markers

    This may have been asked before, but here goes (and yes, I did a search...extensively here and google):
    Is there a way to set markers within a long sequence containing begin and end times. Either automatically create multiple sequences or video files with the same name as the marker.
    I need to do this because I shoot long form Church services (1.25 hours) and need to output the Worship team performances separate from the sermon prior to upload. Currently, I have to duplicate the long video 6-7 times and set the in/out times to correspond to the markers. Then rename the sequences as the markers and then import them all to Media Encoder.
    Vegasaur (a plugin for Sony Vegas) has this functionality. Much quicker and easier.
    Thanks.
    Wally

    No, I'm afraid you can't do that trick from the iPad's Safari. What I do is take a snapshot of the screen when I want to keep a record. Press the Home and Lock buttons simultaneously real quick. You should hear a click and see the screen flash blank for a second. A snapshot of the screen will then be saved to your Saved Photos album. It's almost the same as having a PDF file of the page.
    Oh, and welcome to Apple Discussions!

  • Best practices for creating movie from still images?

    I have created an architectural model in *someone else's* software, and animated a camera in *someone else's* software, and rendered that out to still images.  I rendered every 5th frame (for a total of 401 frames) in order to save time on rendering.  My goal is to create a short movie (2 minutes) of the camera flying around the building.
    When I imported all of the images, I stretched the duration so that they equally fit the 2 minutes, and used the keyframe assistant to sequence the layers.  Now that I've done that, the movie is choppy (as I expected it to be, since I only rendered every 5th frame).  Does anyone have suggestions as to what effect or transition can be used to smooth the sequence out?  Or am I living in a dreamland and I need to go back and render every single frame?  Is this even the software I should be using?  I'm obviously a n00b, so any help is greatly appreciated.
    Thanks!
    Using After Effects CS4 (9.0.0.346) on Windows 7 64-bit

    Or am I living in a dreamland and I need to go back and render every single frame?
    You are. There is no effect that could automatically synthesize those missing frames even halfway realistically. Timewarp and Twixtor are only gonna make things look like a smear even with a lot of tweaking. By the time you have tweaked their settings and done all your masking and otehr corrections, your 3D render with all frames will be finished just as well and offer better quality.
    Mylenium

  • Problems for create PO from SRM to ECC BADI BBP_ECS_PO_OUT_BADI

    Hello Experts
    I require your help in the following topic:
    I have created an extension to BBP_ECS_PO_OUT_BADI BADI, you can make an extension to data conditions of my code-PO annexe, however I get the following situation:
    When I have the active code, ie the lines are commented and gender programming the PO from the PO SRM creates no problems, but when I remove the comments, the PO is not created.
    I did a "debug" from SRM to see what was going on with my extension, so use the FM "BBP_PD_PO_TRANSFER_EXEC" and place corresponding to the creation of the PO in ECC breakpoint, verify that the data I am sending ECC arrived properly and when the BAPI "BAPI_PO_CREATE1" run will carry the data from SRM am expanding what I'm sending values ​​are within the BAPI tables:
               "lt_pocondheader"
               "lt_pocond"
    The BAPI_RETURN table returns the following messages:
    "1 E BAPI 1 No instance of object type PurchaseOrder has-been created External reference:. 0 PurchaseOrder POHEADER 1"
    My questions are:
    Why when I have commented lines of code if I create the PO from SRM?
    Why if I take the notes to the lines sends me the error message?
    As I researched the "http://scn.sap.com/thread/449080" mentioned that should not be used to create the PO. But to change it later.
    Indeed, when there is PO if I allowed to create the conditions, hence is derived my new question
    What is the BADI that I must use so that when the PO is generated, take I require the data to be saved to the same PO?
    On the other hand, in the same extension of BADI mentioned, I'm doing the addition of a "Partner", but when it comes to ECC not placed in the tab "Partners" and when I check the messages you send me the BAPI as All that tells me is:
    You could not make changes to the "Partners".
    The lines of code that joined the expansion are:
    CALL FUNCTION 'BBP_PD_PO_GETDETAIL'
             EXPORTING
               i_guid is_header-guid =
             IMPORTING
               e_header = lw_header_po
             TABLES
               e_item = lt_item_po
               e_partner = lt_partner
               e_pridoc = lt_cond.
    IF lw_header_po-process_type EQ ZIPO 'OR lw_header_po-process_type EQ ZICP'.
    DATA: vl_type (2) TYPE c VALUE 'ZI'
    vl_num (2) TYPE c,
    vl_reg (2) TYPE n,
    vl_typef (4) TYPE c.
    DO 25 TIMES.
    vl_reg vl_reg = + 1.
    vl_num = vl_reg.
    Vl_type vl_num vl_typef CONCATENATE INTO.
               lw_cond_b-cond_st_no = '33'.
               lw_cond_b-cond_count = vl_num. "
               lw_cond_b-cond_type = vl_typef.
               lw_cond_b-cond_value = "0".
               lw_cond_b-is_header-currency = currency.
               lw_cond_b-applicatio = 'M'.
               lw_cond_b-STAT_CON = 'X'.
               lw_cond_b-change_id = 'I'.
               APPEND TO lw_cond_b ct_bapi_pocond.
               MOVE-CORRESPONDING TO lw_cond_b lw_condh.
               APPEND TO lw_condh ct_bapi_pocondheader.
             ENDDO.
             lw_poeikp-transport_mode = is_header-zexpvz.
             MOVE TO lw_poeikp cs_poexpimpheader.
           Lt_partner LOOP AT INTO WHERE lw_partner partner_fct EQ '00000711'.
             lw_p711-buspartno = lw_partner-partner_id.
             lw_p711-langu = 'E'.
             lw_p711-partnerdesc = 'TZ'.
             APPEND TO lw_p711 ct_bapi_popartner.
    endloop.
    endif. "
    I hope your answer, thanks.

    Do the config in SRM under Text Mapping > Text Mapping for Inbound and Outbound Texts.
    Hope this helps.
    -Bakulesh

  • Looking for "Creating IDocs from Outbound Deliveries 101" guide

    Please forgive what is probably a very stupid question as I am very new to the subtleties of SAP interface configuration. I am looking for a guide to as to how to set up SAP4.7 to create an IDoc from the creation (or update) of an outbound delivery. I'm think I'm looking for a SHPORD IDoc, and I thought I'd set up all the necessary stages, but I create a delivery and no idoc appears.
    If anyone knows of a "basic configuration guide" to get a SHPORD idoc from a delivery then please point me in that direction.
    Thanks!

    check here https://www.sdn.sap.com/irj/sdn/wiki
    SAP R/3(Idocs) to XI - Steps Summarized

Maybe you are looking for