Select a part of a videofile

hi
i want to capture a specific,adjustable(from frame.. to frame...) part of an existing videofile. for example i have a file with a length of 2 minutes an i only need frame 400 - 600 to work with them. i want to set these borders by scrolling the file in a player. is there (in jmf) any method which can do this?
thanks for answers and sorry for the bad english.

If you want to select the first 10 characters of a character column, you would use the SUBSTR function
SELECT SUBSTR( reportdate, 1, 10 )
  FROM traffic;If reportdate is really a DATE column, you would want to include a to_char cast operation to specify how the DATE should be converted to a string. Since you are explicitly specifying the formatting in that case, you can eliminate the SUBSTR call
SELECT to_char( reportdate, 'DD-MM-YYYY' )
  FROM traffic;If you want to group by day, and reportdate is a DATE column, you can do
GROUP BY TRUNC( reportdate )Justin
Distributed Database Consulting, Inc.
http://www.ddbcinc.com/askDDBC

Similar Messages

  • Using applet to select a part of an image and then save it

    Hi ,
    I want to use applet to select a part of an image and then save that particular selected part to a server. can anyone provide me a code for this. I have found codes on the sun site which help in uploading an image but I am having trouble in trying to select a part of the image.

    Sorry to get back to you so late, but I was away from my computer this afternoon.
    I'm not sure just what you are after. I do see that you have positioned the tree on the labels. I went to the web site for the label company, and their instructions are not too helplful.
    http://www.pixentral.com/show.php?picture=15sBkl9OZE9xSkHoLMxgwjTFv2VCg1
    I changed the white portion of 1 label to black - - this can be any color. To do this use the magic wand tool, tolerance=10 worked for me, then go to Edit>fill selection.

  • How to select different parts of the text? cmd button no longer does that...

    After installing Maverics i can no longer propertly edit my work as I cannot mark different parts of text using cmd button. Shift works as before for highlighting all the text from starting point to selected point but I can no longer use cmd to highlight different areas of the text. Is this an OS bug? Or was the button for selecting different parts of the text changed? I tried everything...

    It's just a small part of what makes Pages 5 so "stunning" (Apple's word). You think stripping out the nifty ability to mark non-contiguous passages of text was neat? Sure that was nice. But Apple has gotten rid of more, so much more. And for free!
    Just wait till you put the product through its paces and you discover other nice features that are missing, such as (but not limited to):
    - no linking of text boxes!  Yes, that's right. Now a newsletter that had a "continued on page 6" or whatever will be broken by Pages 5. Stunning! (Even more stunning, Pages 5 will strip out all sorts of formatting from documents created with Pages 4.3 and it will do ao without warning and will save the document in a NEW unified file format so that it cannot be opened by Pages 4.3, thereby potentially losing users hours and hours of work. Stunning!
    There's more!
    - Pages 5 has no mail merge, no bookmarks, no images in headers/footers! Pages 4.3 has those features, but this stunning new release removes them.
    - Pages 5 features vastly reduced and simplified set of templates (there used to be about 130 Apple-cupplied templates, now there are about 60).
    - Page 5 also boasts NO RTF SUPPORT, so a paper your wrote with Apple's own TextEdit is not natively readable with Pages: Stunning!
    - No detail was too small to omit in this stunning new release: the vertical ruler, so you can easily place text or an obejct at a certain place in a document: gone! Setting the default zoom: gone!  Status bar reproting word count and pagecount (e.g., Page 4 of 48): Gone! View comments in the left side bar: Gone!  Autocapitalization: Gone! Search & Replace: drastically simplified!
    But here's the really good news: Pages 5 is just PERFECT for creating a one page-poster advertising a new concert by Apple employee Eddie Cue. What's more you can collaborate on it with someone else, even if they're using a PC. Now that's "stunning"!

  • SQLException while selecting only part of XML document

    Hi,
    I'm newbie in oracle XML DB. I'm trying to make an example application but I'm still getting an SQLException while selecting only part of my XML document. I'm using oracle 11g release 1.
    I have following XML document:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <CATALOG>
    <CD>
    <TITLE>Empire Burlesque</TITLE>
    <ARTIST>Bob Dylan</ARTIST>
    <COUNTRY>USA</COUNTRY>
    <COMPANY>Columbia</COMPANY>
    <PRICE>10.90</PRICE>
    <YEAR>1985</YEAR>
    </CD>
    <CD>
    <TITLE>Hide your heart</TITLE>
    <ARTIST>Bonnie Tyler</ARTIST>
    <COUNTRY>UK</COUNTRY>
    <COMPANY>CBS Records</COMPANY>
    <PRICE>9.90</PRICE>
    <YEAR>1988</YEAR>
    </CD>
    </CATALOG>
    and following java code:
    import oracle.jdbc.OraclePreparedStatement;
    import oracle.jdbc.OracleResultSet;
    import oracle.xdb.XMLType;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.SQLException;
    public class Select {
    private static String SQL_1 = "SELECT OBJECT_VALUE FROM CATALOG";
    private static String SQL_2 = "SELECT extract(OBJECT_VALUE,'/CATALOG/CD/ARTIST') FROM CATALOG";
    public static void main(String[] args) throws SQLException {
    Connection conn = createConnection();
    OraclePreparedStatement stmt = (OraclePreparedStatement) conn.prepareStatement(SQL_1);
    OracleResultSet orset = (OracleResultSet)stmt.executeQuery();
    while (orset.next()) {
    // get the XMLType
    XMLType poxml = XMLType.createXML(orset.getOPAQUE(1));
    // get the XMLDocument as a string...
    System.out.println(poxml.getStringVal());
    conn.close();
    private static Connection createConnection() {
    try {
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    Connection conn =
    DriverManager.getConnection("jdbc:oracle:thin:@hruby.marbes.cz:1521:oracle", "hruby", "password");
    return conn;
    } catch (SQLException e) {
    e.printStackTrace();
    return null;
    While executing SQL_1 statement everything goes well and I get whole document.
    While executing SQL_2 statement I get following exception:
    Exception in thread "main" java.sql.SQLException: Only LOB or String Storage is supported in Thin XMLType
         at oracle.xdb.XMLType.processThin(XMLType.java:2817)
         at oracle.xdb.XMLType.<init>(XMLType.java:1238)
         at oracle.xdb.XMLType.createXML(XMLType.java:698)
         at oracle.xdb.XMLType.createXML(XMLType.java:676)
         at Select.main(Select.java:27)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.intellij.rt.execution.application.AppMain.main(AppMain.java:90)
    I expect to get such result:
    <ARTIST>Bob Dylan</ARTIST>
    <ARTIST>Bonnie Tyler</ARTIST>
    any suggestion???
    Thanks

    OBJECT_VALUE in this case refers to an XMLType datatype (fragment due to the use of "extract"). Convert it on "the fly" to a CLOB using getCLOBVal(). Then pick it up in java as a LOB.

  • How can I selectively amplify parts of a track?

    My apologies if i'm not using the correct parlance, however I'd like to selectively amplify parts of my track that fall within a particular threshold without affecting anything else. For example, I have sections of my track that fall between -6dB and -9dB. I would like to amplify only sound within that range by +2dB. How can I do this? Or, if it'll just "sound better", how can I amplify everything lower than -6dB to be "a little louder" without affecting anything else?
    Note that I have already applied compression to my track to bring the peaks down a bit (thresh = -6dB, ratio = 2:1); that was the first half of what I want to accomplish. The amplification question above is the other half. I'm not interested in having the compressor do all the work; the results have always been severly clipped audio.
    Any assistance is much appreciated!

    What you have already done to your track to reduce the peaks is "downward" compression. What you need now is a little "upward" compression to bring up the level of the -9 to -6 range. Audition's Dynamic Processing is quite good for this as you can either draw on the graph or enter values for various levels in the audio.
    Alternatively "parallel" compression might be appropriate here. There is an excellent article on how to do it in the latest edition of Sound on Sound mag.

  • When I select a part of a text and click in "Search Google", a new tab is opened. I don't like the switch. I want the search result in a background page.

    When I select a part of a text in a page, use the right button of mouse and click in "Search Google for "the text"", I want a new tab open in a NEW TAB BACKGROUND. How do I set that? Thanks.

    Ok, I found a reply about it in
    https://support.mozilla.org/en-US/questions/952403
    "hello, its possible to achieve this through the settings in firefox - just enter '''about:config''' into the firefox location bar (confirm the info message in case it shows up) & search for the preference named '''browser.search.context.loadInBackground'''. double-click it and change its value to '''true'''. "
    Thanks!

  • Need to select just part of a frame

    Hi everyone
    I'm trying to select just part of a frame in order to higlight it overshadowing the rest. How could I do it? Thank you in advance!
    By the way. I'm using FCE 4.0, not HD, I guess.

    Ok, imagine a sequence in which there are differents characters. My goal is to highgliht one of the characters during this clip.
    So, what I like the most about your answer is the 'multi-point Garbage Matte' tool. And that leads me to another question . Could I use it in the original clip or is it necessary to duplicate it?
    Thanks again!

  • Is it possible to select a part of a video project and only render that specific part?

    Hi.
    I formerly used Sony Vegas Pro - and I'm in the process of getting into Final Cut Pro X, and I'm wondering...
    In Sony Vegas Pro - I was able to mark a part of my video project, and only render that. It was usefull if I wanted to send a part of a project rendered to someone else for review etc.
    In Final Cut Pro X I can't find a similar possibility - I have to render my complete video project - or nothing at all.
    Does anyone know if it's possible to select a part of a project and render only that part?
    Best regards
    Jens Rosenstand

    Hi.
    Well...that's not quite what I meant...
    I would like to render a part of a video to a .MOV file for example - that I can send of to someone to watch - but the whole project, just a part of it.
    Is that possible?
    Br.
    Jens

  • Best Way to Select Complicated Parts of Image?

    I'm trying to design a cover for a book and usually do the whole thing in Photoshop, which I know very well. I rarely use Illustrator and made the mistake of purchasing a graphic ornament I thought would be easy to alter, but has turned out to be quite complex, or at least complex for me. All I want is to move the inner loops on the ornament toward the frame (make them smaller so that I'll have more room for the title, and to shorten the bottom loop so it doesn't hang down so far into the rest of the cover. Being an illustrator novice, I thought this would be a simple adjustment (i.e. direct select and tap the arrow keys a few times), but this graphic is made of dozens, maybe more than a hundred, parts grouped and regrouped on two layers. Nothing is labeled and even figuring out what part to select and how to select it is really confusing. Sorry, this is probably a seriously stupid question, but is there any way to simplify an illustration so that I can more easily select the parts I'm interested in adjusting? I should probably just go purchase a different ornament, but really like the look of this one. Thank you!

    Thank you. I worked with it last night for hours, and tried something similar, but kept messing it up. I don't think the designer intended for it to be edited that much. For instance, just to change the colors would have taken forever, since all the pieces are slightly different. I gave up and bought another one that was simple and editable.

  • How do I split Imovie events?  I find the option in File menu and have selected the part of the event that I want to split before, but the option to split is not bolded (allowed) in the File menu.

    I have imported video to iMovie and want to split the event.  I have selected part of the event and when I go to File> Split the event before the selected clip it is not bolded in the menu and it is not an allowed selection.  I had imported directly to an external HD so moved the event to the Mac HD and tried it again. This did not work either.  Any ideas why this option is not available to me???

    Use iMovie to move the events to your Movies folder, otherwise you're can't.

  • SAP_BS_FND addon was not selected as part of the stack xml

    We are in a process of upgrading production system (SAP NW 7.0) to EhP1, we
    have components SEM-BW,FINBASIS installed in the Netweaver system, we have added the system under Netweaver
    We have generated the stack xml file using solution manager MoPZ but we are not
    getting the option to select the upgrade addon SAP_BS_FND as part of
    stack xml file
    where in we had an option to select the SAP_BS_FND for Development
    and Quality and we have included the addon SAP_BS_FND in stack xml file
    my main question was why the component is not available for Production for selecting the option ??
    Please suggest us how to proceed further, we have read the note Note
    1326576 - SAP NetWeaver Systems Containing SAP ERP Software Components
    which says to install the addon after upgrade
    generating the stack file from Service Market Place too is not including the SAP_BS_FND in the stack xml
    Please help why it is behaving different for production
    Thanks,
    Ravi
    Edited by: ravi prasad on Aug 8, 2011 9:56 AM

    Hi,
    >The note says that if going with EhP1 with ERP components then it asking to register the system in Netweaver and then >upgarde the addon package with SAINT
    You should read the note carefully, below is extract from this note:
    Maintain your SEM, E-Recruiting or SAP Learning Management system as an ERP
    system in SMSY in order to download the EHP packages and to be able to
    maintain the system. Afterwards you must not use the generated Stack XML,
    but instead use a generated Stack XML from SAP Service Marketplace and
    include the packages for ERECRUIT, SEM-BW, FINBASIS or LSOFE in the
    IS_SELECT phase during the installation of EHP1 for SAP NetWeaver 7.0.
    Thanks
    Sunny

  • Select Query: Part of the field

    Hello Experts,
    I have an issue.
    In my selection from one table T1, i need to select just lines that have the field F1 begins by some numbers. For example, all lines that have the field F1 like that '12345678xxxxx'. 
    The problem is: in my selection i can't use 'Like %' or a range with Option 'CP'  because the field F1 is a DECIMAL and not a CHAR!!
    In the fact, the field is in the format: 'AAAAMMJJhhmmss', and i want  all lines that have the date 'AAAAMMJJ'  irrespective of the hour.  The type of this field is DECIMAL 15.
    Do you have any idea how i can do it?
    Thank you in advance.

    Could you try to get all data say between 20081211000000 and 20081211235959 ?
    This may work to solve your problem.

  • Language selection as part of User Interface Template

    Hi all,
    I'm looking for an alternative way of letting the user select language on portal pages. Instead of including the language selection portlet on all the pages, I wonder if I can implement language selection as links in the User Interface Template used by all the pages.
    Has anyone done this?
    Any ideas about how this could be done?
    Thank you,
    Oystein Hunnes

    Where are your images being used in the UI template stored? I like to place my images in directory:
    <portalMidTier>/apache/apache/htdocs/img
    Then from within the UI template I can relatively reference the images as /img/logo.gif
    Regards,
    Candace

  • Characteristic of selection not part of aggregation level

    I am receiving the following message in my log after running a background job for my forecast.  My selection profile has an exclusion so I did not add the Characteristic to the Aggregation Level.  I want to run the forecast at the higher level of aggregation excluding these two criteria (Sales Regions).  If I include it in the Aggregation Level it runs the forecast at the individual Sales Regions.  Can an expert clarify this is ok and I am not running the forecast at the higher level including the two Sales Regions. 
    Thanks.

    Thanks Guarav, please see my comment below.
    Ok, I believe I have resolved the issue.  I am going to summarize my previous process. 
    1.Created a Master Profile (forecast) for each Strategy I wanted to test.  I would use the same Master Profile even if I changed the Parameters in the Univariate Profile. 
    2.Used the same forecast Activity, changing each time I changed the Strategy.  Planning Job would remain the same.
    3.By creating a New Activity & New Planning Job my forecast model appears to be running correctly.  The only items I continue to select in the Planning Job Aggregation Level are SourceSystem and Product.
    It Appears the best methodology is to set up a separate Master Profile/Univariate Profile for each Strategy & set of Parameters.  A separate Activity & Planning Job should also be set up for each Strategy & set of Parameters.  This would also have to be done in order to add to an overnight (monthly) Process Chain.

  • How to selectively import part of a clip in the import window on FCP X ver 10.8

    Hi guys just wondering how to selectivly import part of a clip in the import window, cant do it since 10.6 ver??. im now using 10.8

    If you jump to 10.1 you will be wise to understand the use of the NEW Libraries and how they update.
    Things have changed.
    I'll post some info when I find it.
    Found it:
    http://www.apple.com/final-cut-pro/docs/Media_Management.pdf
    Al

Maybe you are looking for

  • Lync 2011 for Mac with iMessage on OSX inbound and outbound calls fail

    Running Office 14.4.9 updates and many before that.  If you activate or deactivate an iMessage account using the built-in Messages application, Lync can no longer make or receive calls.  Calls received will automatically go to voicemail.  Outbound ca

  • Clock icon always displays 10:15:00

    Hi, It's more a comment than a question but the icon for the calendar always displays the correct date, the icon for messages displays the number of new messages. So why is it that the icon for the clock doesn't display the correct time ? I suppose u

  • Where can I find 30/60 sec MoH files?

    In UCCX 7 and prior, I could dig down into the wfavvid folders and find 60 second hold music, 30 second hold music, wav files for cardinal numbers, etc.  Now that it's a Linux appliance, is there any way for me to get ahold of these files?  Right now

  • Bapi table error

    Hi, I imported the "Bapi_Delivery_Getlist_Input" while selecting output tables (any out put table in Bapi) it is showing following exception,but there no problem in selecting input parameters com.sap.dictionary.runtime.DdException: Incorrect amount t

  • "no symbolic info for main compile with -g"

    Hi i compile my code with g77 -g but I get the above error when I try to use the sun studio debugger. Anyone can tell me how to fix?