Sequence Grabber and multiple output file

Hi,
I'd like to use sequence grabber to capture video and save it to two files in the same time, one has better quality while another one has lower quality(high compression, low frame rate), is this possible? any samples? thanks.
AC

I love you guys!
thanks alot!
this makes life so much easier I'm about to cry.
In article <3b2dbd1c$[email protected]>, [email protected]
says...
"denis krizanovic" <[email protected]> wrote in message
news:[email protected]..
>
Can I write an XSLT stylesheet that will splinter a single xml into
multiple HTML files?Yes. It is not part of the XSLT spec but extensions are sometimes available
depending on xsl processors. (xalan, saxon..)
is this something XSLT can do today? Specifically in WebLogic6 - Using
the Xalan thingy.Yep. Right pick. Xalan can do it using the redirect extension
See below. For more information look at the xalan doc or mailing list
[email protected]
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0"
xmlns:lxslt="http://xml.apache.org/xslt"
xmlns:redirect="org.apache.xalan.xslt.extensions.Redirect"
extension-element-prefixes="redirect">
<!-- default output directory -->
<xsl:param name="output.dir" select="'.'"/>
<xsl:template match="/">
<!-- doing some output on file1 -->
<redirect:write file="{$output.dir}/file1.html">
</redirect:write>
<!-- doing some output on file2 -->
<redirect:write file="{$output.dir}/file2.html">
</redirect:write>
</xsl:template>
</xsl:stylesheet>
Stéphane Bailliez
Software Engineer, Paris - France
iMediation - http://www.imediation.com
Disclaimer: All the opinions expressed above are mine and not those from my
company.

Similar Messages

  • Multiple output files from single Request

    Hi guys
    i have one requirment,can we display multiple outputs files (multiple templates) for a single request .
    ie i have some banks ,if i run an request ,it will get the details of each bank details ,induadual template .
    let me know the solution for this one.
    thanks inadvance.

    Pl post details of OS, database and EBS versions.
    Pl elaborate on your requirements. Assuming you are using XML/BI Publisher, the physical output file will be a single file, but you can use XML/BI Publisher bursting features to separate out different outputs.
    How to Implement XML Publisher Bursting in 11.5.10.2?          (Doc ID 740428.1)
    How to Print Via Bursting Control File          (Doc ID 844276.1)
    HTH
    Srini

  • How to bundle a .FLA and multiple .SWF files in one .EXE?

    Hi,
    I have a .FLA file which uses loadMovieNum() to load various
    .SWF files when each one is called by the user clicking on a
    button. Each .SWF file also uses loadMovieNum() to call a second
    .SWF file. When I publish the .FLA file as a .SWF file it all works
    beautifully.
    Now I need to package the entire project into a Windows
    projector .EXE file for offline use on a computer without the Flash
    Player. When I publish the main .FLA file as a .EXE file, the .SWF
    files still load, although they blink before fully loading and
    displaying steadily.
    What I would really like to do is to bundle all the .SWF
    files into the .EXE file so when I send the finished project to the
    end user, they only have to deal with one file, rather than a
    folder with the .EXE file and multiple .SWF files.
    Is there a way to do this?
    I am using Flash 8 Professional.
    Thanks,
    Cam

    Since this isn't going to be web-based, why not include all
    the external swf files into the same Flash file and then use
    attachMovie?
    This will allow you to create one .exe file that would
    contain EVERYTHING. Since you aren't worried about loading speeds,
    you don't have to load the movie clips, but can simply create one
    large Flash file.

  • Question about creating multiple output  files from same query

    I have a query like this:
    select * from emp;
    ename empno deptno
    Scott 10001 10
    Tiger 10002 10
    Hanson 10003 20
    Jason 10004 30
    I need to create multiple output files in xml format for each dept
    example:
    emp_dept_10.xml
    emp_dept_20.xml
    emp_dept_30.xml
    each file will have the information for employees in different departmemts.
    The reason I need to do this is to avoid executing the same query 200 times for generating the same output for different departments. Please let me know if it is practically possible to do this.
    Any input is greatly appreciated.
    Thanks a lot!!

    You can write a shell script to generate the multiple spools files for the same output. Below script may helps you.
    #====================
    #!/bin/bash
    n=0
    while [ $n -le 20 ]
    do
    n=`expr $n + 1`
    sqlplus -s system/manager <<EOF
    spool emp_dept_$n.xml
    select count(1) from tab;
    spool off
    EOF
    done
    #====================

  • How to create multiple output files using TrAX?

    I am new in this field. I'm trying to create multiple xml output files using TrAX. I have to parse a xml source file and output it to multiple xml files. My problem is that it only creates one output file and puts all the parsed data there. When i use saxon and run xsl and xml files, it works fine and creates multiple files...it has something to do with my java code...Any help is greatly appreciated.
    Here's my XSL file
    <?xml version="1.0"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.1"
    <xsl:template match="data_order">
    <data_order>
         <xsl:copy-of select="contact_address"/>
         <xsl:copy-of select="shipping_address"/>
         <xsl:apply-templates select="ds"/>
    </data_order>
    </xsl:template>
    <xsl:template match="ds">
    <xsl:variable name="file" select="concat('order', position(),'.xml')"/>
    <order number="{position()}" href="{$file}"/>
    <xsl:document href="{$file}">
    <xsl:copy-of select="."/>     
    </xsl:document>
    </xsl:template>
    </xsl:stylesheet>
    xml source file
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE operation SYSTEM 'data_order.dtd'>
    <data_order job_id='00-00-000' origin='PM-ESIP'>
         <contact_address>
              <first_name>ssssss</first_name>
              <last_name>sssss></last_name>
              <phone>2323232</phone>
              <email>dfdfdsaf</email>
         </contact_address>
         <ds ds_short_name ='mif13tbs'>
              <output>
                   <media_format>neither</media_format>
                   <media_type>FTP</media_type>
                   <output_format>GIF</output_format>
              </output>
         </ds>
              <ds ds_short_name ='mif15tbs'>
              <output>
                   <media_format>neither</media_format>
                   <media_type>FTP</media_type>
                   <output_format>GIF</output_format>
              </output>
         </ds>
    </data_order>
    My java file
    import javax.xml.transform.*;
    import javax.xml.transform.stream.*;
    import java.io.*;
    public class FileTransform {
    public static void main(String[] args)
    throws Exception {
    File source = new File(args[0]);
    File style = new File(args[1]);
    File out = new File(args[2]);
    TransformerFactory factory = TransformerFactory.newInstance();
    Transformer t = factory.newTransformer(new StreamSource(style));
    t.transform(new StreamSource(source), new StreamResult(out));

    Saxon has specific extensions. In this case it is <xsl:document>. That looks like a standard XSLT element, but it actually isn't. The history behind it is this: There was a proposal to create a new version of XSLT, called XSLT 1.1. One of the new features of this version was to be this xsl:document element. The author of the Saxon product, Michael Kay, is one of the people on the W3C committee directing the evolution of XSLT, so he upgraded his product to implement XSLT 1.1. But then the committee decided to drop XSLT 1.1 as a recommendation. So that left Saxon in the strange position of implementing a non-existent extension to XSLT.
    The other outcome of this process was that XSLT (1.0) does not have a way of producing more than one output file from an input file. And so the short answer to your question is "Trax can't do that." However, XSLT 2.0 will be able to do that, although it is not yet a formal W3C recommendation, and when it does become one it will take a while before there are good implementations of it. (I predict that Saxon will be the first good implementation.)
    One of the problems with XML and XSLT is that what you knew a year ago is probably obsolete now, because of all the evolution going on. So being new in the field is not a disadvantage, unless you get stung by reading obsolete tutorials or magazine articles.

  • One Input File Multiple output files.

    Hi,
    How to Generate Multiple Output (Target) files by using Single (Source File) Input file in File 2 File Scenario.
    Please help me to do this.
    With Regards,
    Mahesh

    Hi,
    This is a scenario of 1 : N transporting right.. for this u shud use Multi-mapping then you need to change your logic because Multi-mapping is only be used by ccBPM. so use BPM (integration process) in IR to implement you logic in File to File scenario.
    oops.. i missed one thing ..
    in simple file to file scenario you can use Message patterns for duplicating the target fields if you getting from single file. You can use this pattern like in target field structure right click on root tag and then click on duplicate subtree, and then you are down.. above is the other way if u want to use bpm.
    Hope this will help you,
    Regards
    Aashish Sinha
    PS : reward points if helpful

  • Multiple output files

    hi,
    i am using report 6i.
    two differ output is generated by one report
    so ...i want to display both in differ output file.(.txt)
    is it possible in report 6i ?
    can i save two differ frame's output in differ file ?
    or pls guide any another way to do this thing in report 6i.
    thnkx in advance

    Have you tried using TEXT_IO or UTL_FILE. These are file utilities and you may use it in the trigger of your frame to generate the output. Just take note of where the files will be created if you use either of these package

  • Ultrabeat and Multiple outputs into a new Aux strip???

    Hello,
    I am new to Logic and have not been able to get a new Aux strip to take inputs from the multiple outputs ultrabeat has to offer (i.e. output 5-6). I tried to follow a tutorial I found in the help window, but couldn't get it to work. In the tutorial, when a new Aux strip is created, in the input pull down there is an option to select instruments>Ultrabeat>5-6. When I set up an Aux strip, no instrument option shows up in the input pull down. What do I do? I noticed that the tutorial I am looking at was made in 2005, and I am working in Logic Pro 9. So, maybe the issues is with the different versions. How have other logic 9 users done what I am trying to do?
    Thanks for the help.

    if you didn't click the + sign in the mixer (as Sampleconstruct suggests) which automatically creates stereo and mono Auxes for that UB instance and you have created the Aux Channels in the environment etc ....by default they are in mono ...if you click on the bottom of the channel to set it to stereo then you'll see the instrument
    A

  • Multiple output files for one report

    I would like to dump out multiple files (PDF and delimited) from one single report refresh.
    I'm using rwcli60. How do I do this ?

    Hi
    Thanks for the information. Its nice to know.
    However, if I understand it correctly, it is basically for directing the same report output to different targets.
    For me, it may be the same report, but the output will be different based on some logic I have in the before report trigger. For me it is like running the report 3 times.
    Example - From parameter screen - one parameter with 4 options
    1. Top 10 students in IT
    2. Top 10 students in Fin
    3. Top 10 students in Acc
    4. All
    The output of these report may come from the same table. But the criteria is set in the lexical parameter in the before report trigger.
    If user selects all, I want the output for the all the first 3 options. I am not worried about the output being emailed. This is equivalent to running the report 3 times for the first, second & third option respectively.
    Any help helps:).

  • Opening and Closing Output Files

    I have a simple question. After opening a file for output by doing:
    PrintStream out =
    new PrintStream(
    new BufferedOutputStream(
    new FileOutputStream(
    ("filename")));
    and then closing by:
    out.close();
    How do I go open it back up again later? What I'm looking for is something along the lines of out.open(); which is what I would expect the command to be but it's not. I have several files for output so I don't want to keep them open throughout the program which is how I have it right now. Thanks for any help!

    When PrintStream.close() is called, it flushes itself and calls the underlying stream's close method - here a BufferedOutputStream. When BufferedOutputStream.close() is called it also flushes itself and calls the underlying stream's close method - here FileOutputStream.
    The API doccumentation for FileOutputStream.close() says:
    "Closes this file output stream and releases any system resources
    associated with this stream. This file output stream may no longer be used for writing bytes."
    So thats it.
    Hope this helps.
    Thanks,
    Binil

  • Idoc to multiple output files - configuration

    I have got a single idoc type being output from my R/3 system.
    Within the idoc is a marker that determines the mapping that the idoc should undergo in XI.
    I have set up all the individual mappings, and have tested the flow from R/3 to flat file one message at a time.
    However I am uncertain as to how best to configure this in the Integration Directory.
    I understand that I will need to set conditions within the configured receivers in the Receiver Determination for the idoc, but after that I am uncertain as to both best practice and most efficient method.
    Do I need a separate service for each output?
    Do I need to set up Intergration Processes?
    How should I set up the Receiver Determination?
    Regards
    C

    Hi Chris,
    I am not really sure about your question but:
    Yes you will need one service per output if the output goes to a different system (service defines a system to receive a message).
    Now it depends on your process what you want to get as a result.
    If there are only some conditions which determine if one receiver should get a message or not you can put them together in one condition as a chain with OR .
    If the condition defines the receiver system and per condition there is another system, you need a receiver determination per receiver (with its own condition for the message!).
    Integration processes: I think you are talking about BusinessProcessManagement?
    No, you don´t need them as long as you don´t work with complex business process e.g. to modify messages or append them within XI area (or other funny things you can do here.) BPM is a kind of workflow and enables you to do MORE than only send message from a to b refering to a condition.
    Receiver determination:
    Add a new one after adding a new sender agreement (don´t add any receivers i this agreement!) by starting in the middle of the rec.agr. screen. Per condition line you can add one or more receivers. (First you need to complete your interface mapping(s) in Int. Repository!)
    After completing this screen save and continue in the screen area at the end of the screen. Here refresh and add now per receiver (with NEW SPECIFIC) the implementation from the int.repository.
    (Always use NEW SPECIFIC for the different columns here).
    As I wrote your threat is not really clear and sounds like you need complex help. Hope this helps a little bit.
    For more questions to this issue add them here...
    regards
    Dirk

  • Dreamweaver and multiple flash files (xml)

    I am trying to add multiple flash image galleries on my
    website...most of these have xml files (usually named the same,
    "images.xml"). My problem is that I tried to put each gallery in
    its own folder to keep things organized; however, while the swf
    seems to work when you click to test it, it is not working on the
    webpage.
    My original flash gallery that has the xml file and swf file
    on the root of the site work fine. I guess if I had different named
    xml files it may work but I cannot figure out how to change that
    either. Please help!

    Here's a site with four flash slideshows... check their code
    and you will
    see four separate xml files and images for each slideshow in
    in their own
    separate folder
    "jl25" <[email protected]> wrote in message
    news:gmnb2p$1cu$[email protected]..
    >I am trying to add multiple flash image galleries on my
    website...most of
    >these
    > have xml files (usually named the same, "images.xml").
    My problem is that
    > I
    > tried to put each gallery in its own folder to keep
    things organized;
    > however,
    > while the swf seems to work when you click to test it,
    it is not working
    > on the
    > webpage.
    >
    > My original flash gallery that has the xml file and swf
    file on the root
    > of
    > the site work fine. I guess if I had different named xml
    files it may work
    > but
    > I cannot figure out how to change that either. Please
    help!
    >

  • How to automate multiple output file names from a single input image?

    I have about 100 eps cmyk 4000 pixel wide images to process daily.  The website needs several jpeg editions of the same image: 1000 pixel wide, 850 pixel wide, and 80 pixel wide.
    Question:
    Can I load the single source and save three differently named outputs through a single droplet?
    I was hoping for an Automation -> Batch answer, but I am a programmer.  I haven't touched ExtendScript nor scripted anything in CS, but I can certainly read about it.  Any examples I can download or references to methods that would do a "Save As" very similar to the Jpeg Save For Web?  Any links would be helpful.

    You will find many examples at ps-scripts.com
    IE: http://www.ps-scripts.com/bb/viewtopic.php?t=3247

  • Splash screen with progress bar and multiple jar files to load

    Hello,
    I have been looking to the new features in java 6 for splash screens. I haven't implemented this never before and i was wondering how i could do the following with java 1.5 or 6:
    I would like to see a splash screen with a progress bar that "grows" when every jar file has been read.
    At this time i call my application like this from a shell script:
    exec "$JAVA_BIN" -Djava.library.path=$LIBRARIES_J3D -classpath xxxx.jar yyyy.jar zzzz.jar ...
    where xxx.jar, yyy.jar and zzz.jar are very heavy jars.
    So i would like to see in the progress bar 33% 66% and 100% when they are loaded.
    I do not know if this is the right forum to ask for this. If no, please point me which would be the ideal one.
    Any help will be very useful. Thanks to all!

    Am 10.07.2015 um 07:17 schrieb Lalit Solanki:
    > Hi friend,
    >
    > I am create pure eclipse E4 application and trying to splash screen with progress bar and message.
    >
    >
    >
    >
    > but above image in only support eclipse E3 application so pleas help me how to add progress bar and message in eclipse E4 application
    >
    Hi Lalit,
    there's a Bug entry: https://bugs.eclipse.org/bugs/show_bug.cgi?id=382224
    Meanwhile you can use this solution:
    https://www.eclipse.org/forums/index.php/t/328812/5ceed4bcaa683a94d65efb161bffd217/
    Regards,
    Ralf.

  • About ABAP and EXCEL output files

    Hi experts.
    We are using an outbound interface that creates a Excel files with ABAP OO. The main problem of the issue occurs when we call the method to save and close the excel document already created but in windows task manager it stays opened.
    Is there any possibility in abap to call some method or statement to close (or kill) the excel application already opened in Windows?
    Regards!

    Am not sure but my answer is NO.
    Because, ABAP is a different server and windows is a different server.
    So you cannot control any applications and actions that are performed out of sap box.
    Thanks
    Kiran

Maybe you are looking for