Thank's Shane!  Process for de-interlacing other than FCP filter

Is there a process for de-interlacing other than the FCP filter. I have some 1080i material i want to de-interlace so it will co-exist with my 1080p material.
J

Nattress FILM EFFECTS has a pretty good de-interlacer. Demo available.
www.nattress.com
Shane

Similar Messages

  • Bpel deployment fails for all processes that have revision other than 1.0.

    Using: Release *10.1.3.3.1*
    Hello All,
    Bpel deployment fails for all processes that have revision other than *1.0*.
    We have been attempting to deploy several BPEL projects via ANT script to a target environment and are encountering failures to deploy for every project which isn’t a (revision 1.0). We are getting the following error whenever we try to deploy a process with a revision other than 1.0:
    D:\TJ_AutoDeploy\BPEL_AutoDeploy_BETA\build.xml:65: BPEL archive doesnt exist in directory "{0}"
         at com.collaxa.cube.ant.taskdefs.DeployRemote.getJarFile(DeployRemote.java:254)
         at com.collaxa.cube.ant.taskdefs.DeployRemote.deployProcess(DeployRemote.java:409)
         at com.collaxa.cube.ant.taskdefs.DeployRemote.execute(DeployRemote.java:211)
         at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
         at org.apache.tools.ant.Task.perform(Task.java:364)
         at org.apache.tools.ant.Target.execute(Target.java:341)
         at org.apache.tools.ant.Target.performTasks(Target.java:369)
         at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
         at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
         at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
         at org.apache.tools.ant.Main.runBuild(Main.java:668)
         at org.apache.tools.ant.Main.startAnt(Main.java:187)
         at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
         at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)
    The structure of our automated deployment script is as follows:
    First, a batch script calls (Jdeveloper_BPEL_Prompt.bat) in order to set all necessary environment variables i.e. ORACLE_HOME, BPEL_HOME, ANT_HOME, etc for ant.
    Next, the script lists every .jar file within the directory to an .ini file called BPEL_List.ini. Furthermore, BPEL_DIR, ADMIN_USER and ADMIN_PSWD variables are set and initialized respectively to:
    -     “.” – point to directory where script is running from because all the BPEL processes are located here
    -     “oc4jadmin”
    -     “*********” (whatever the password for out environment is)
    We’ve developed a method to have the script prompt the user to select the target environment to deploy to. Once the user selects the appropriate environment, the script goes through the BPEL_List.ini files and a loop tells it that for every BPEL process listed:
    DO ant
    -Dprocess.name=%%b
    -Drev= !Rev!
    -Dpath=%BPEL_DIR%
    -Ddomain=default
    -Dadmin.user=%ADMIN_USER%
    -Dadmin.password=%ADMIN_PWD%
    -Dhttp.hostname=%HOST%
    -Dhttp.port=%PORT%
    -Dverbose=true
    (What’s happening is that the variables in the batch file are being passed on to the ANT script where *%%b* is the process name, !rev! is revision #, and so on…)
    The loop goes through each line in the BPEL_List.ini and tokenizes the BPEL process into 3 parts *(%%a, %%b, and %%c)* but we only extract 2 parts: *%%b* (process name) and *%%c* which becomes !Rev! (revision number).
    Example:
    Sample BPEL process:
    bpel_ThisIsProcess1_1.0.jar
    bpel_ThisIsProcess2_SOAv2.19.0.001B.jar
    After tokenizing:
    %%a     %%b     %%c
    bpel     ThisIsProcess1     1.0.jar
    bpel     ThisIsProcess2     SOAv2.19.0.001B.jar
    *!Rev!* and not *%%c* because *%%c* will return whatever the revision number is + the “.jar” file extension as illustrated above. So to circumvent this, we parse *%%c* so that the last 4 characters are stripped. Such is done like this:
    set RevN=%%c
    set RevN=!RevN:~0,-4!
    Hence, the usage of !Rev!.
    Below is a screenshot post of the ANT build.xml that goes with our script:
    <!--<?xml version="1.0"?>-->
    <!--BUILD.XML-->
    <project name="bpel.deploy" default="deployProcess" basedir=".">
         <!--
         This ant build file was generated by JDev to deploy the BPEL process.
         DONOT EDIT THIS JDEV GENERATED FILE. Any customization should be done
         in default target in user created pre-build.xml or post-build.xml
         -->
         <property name="process.dir" value="${basedir}" />
              <!-- Set BPEL process name -->
              <!--
              <xmlproperty file="${process.dir}/bpel/bpel.xml"/>
              <property name="process.name" value="${BPELSuitcase.BPELProcess(id)}"/>
              <property name="rev" value="${BPELSuitcase(rev)}"/>
              -->
         <property environment="env"/>
         <!-- Set bpel.home from developer prompt's environment variable BPEL_HOME -->
              <condition property="bpel.home" value="${env.BPEL_HOME}">
                   <available file="${env.BPEL_HOME}/utilities/ant-orabpel.xml" />
              </condition>
         <!-- show that both bpel and oracle.home are located (TESTING purposes ONLY) -->
         <!-- <echo>HERE:${env.BPEL_HOME} ${env.ORACLE_HOME}</echo> -->
         <!-- END TESTING -->
         <!--If bpel.home is not yet using env.BPEL_HOME, set it for JDev -->
         <property name="oracle.home" value="${env.ORACLE_HOME}" />
         <property name="bpel.home" value="${oracle.home}/bpel" />
         <!--First override from build.properties in process.dir, if available-->
         <property file="${process.dir}/build.properties"/>
         <!--import custom ant tasks for the BPEL PM-->
         <import file="${bpel.home}/utilities/ant-orabpel.xml" />
         <!--Use deployment related default properties-->
         <property file="${bpel.home}/utilities/ant-orabpel.properties" />
         <!-- *************************************************************************************** -->
         <target name="deployProcess">
              <tstamp>
                   <format property="timestamp" pattern="MM-dd-yyyy HH:mm:ss" />
              </tstamp>
              <!-- WRITE TO LOG FILE #tjas -->
              <record name="build_verbose.log" loglevel="verbose" append="true" />
              <record name="build_debug.log" loglevel="debug" append="true" />
              <echo></echo>
              <echo>####################################################################</echo>
              <echo>BPEL_AutoDeploy initiated @ ${timestamp}</echo>
              <echo>--------------------------------------------------------------------</echo>
              <echo>Deploying ${process.name} on ${http.hostname} port ${http.port} </echo>
              <echo>--------------------------------------------------------------------</echo>
              <deployProcess
                   user="${admin.user}"
                   password="${admin.password}"
                   domain="${domain}"
                   process="${process.name}"
                   rev="${rev}"
                   dir="${process.dir}/${path}"
                   hostname="${http.hostname}"
                   httpport="${http.port}"
                   verbose="${verbose}" />
              <sleep seconds="30" />
              <!--<echo message="${process.name} deployment logged to ${build_verbose.log}"/>
              <echo message="${process.name} deployment logged to ${build.log}"/> -->
         </target>
         <!-- *************************************************************************************** -->
    </project>
    SUMMARY OF ISSUE AT HAND:
    ~ Every bpel process w/ 1.0 revision deploys with no problems
    ~ At first I would get an invalid character error most likely due to the “!” preceding “Rev”, but then I decided to set rev=”false” in the build.xml file. That didn’t work quite well. In another attempt, I decided to leave the –Drev= attribute within the batch script blank. That still led to 1.0s going through. My next thought was deploying something other than a 1.0, such as 1.2 or 2.0 and that’s when I realized that if it wasn’t a 1.0, it refused to go through.
    QUESTIONS:
    1.     IS THERE A WAY TO HAVE ANT LOOK INTO THE BPEL PROCESS AND PULL THE REVISION ID?
    2.     WHAT ARE WE DOING WRONG? ARE WE MISSING ANYTHING?
    3.     DID WE GO TOO FAR? MEANING, IS THERE A MUCH EASIER WAY WE OVERLOOKED/FORGOT/OR DON’T KNOW ABOUT THAT EXISTS?
    Edited by: 793292 on Jul 28, 2011 12:38 PM

    Only thing i can think of is instead of using a MAC ACL , u cud jus use the default class
    Policy Map Test
    class class-default
    police 56000 8000 exceed-action drop
    Class Map match-any class-default (id 0)
    Match any
    You would be saving a MAC-ACL ;-).

  • PO message should get failed for P.grp other than AB1 and AB2

    Hello SAP Gurus,
    I have a requirement like PO message should get failed for P.grp other than AB1 and AB2.
    Detail explanation:
    I have a P.grp AB1,AB2,AB3,AB4 etc.... The current process is once PO created and saved the message will be triggered and IDOC is transmitted to the vendor, irrespective of what ever the P.grp.
    My requirement is like the PO message should get failed if P.grp is other than AB1 and AB2, and reason should be shown any where in IDOC or in messages.
    Pls advice.
    Thanks.

    Hi Jurgen,
    Thanks for the reply...
    There are only 5 vendors which is relevant for EDI and P.grp AB1 and AB2 denotes EDI PO, same P.grp mapping has been done in PI also via data ID. The user sometimes selects the P.grp AB3, AB4 etc incorrectly and it goes to the vendor which in-turn again the customer has to amend the PO.
    Now I'm planning to include a piece of logic while saving the PO, check if the vendor is EDI vendor then P.grp should be AB1 or AB2, if it is a different P.grp  then the system will not allow to save the PO,so that the user will select the relevant P.grp for EDI vendors. Pls let me know your thought and inputs.
    Thanks.

  • Life and work event for any country other than US.

    Hello,
    I have to implement ESS for UAE.
    In ESS we did all country specific settings and thus our "Address" application in Personal Information section is working fine now.
    Now we have to implement the life work event section "My first days".
    There we are getting "Address" application in left panel.
    Now when I am clicking in this application it shows me error :
    Country/Structure do not match application country
    So which means it requires some settings in guided procedure end in portal.
    I am assuming ....Because our address application is already working fine in Personal Information section so same should also work in My first days section using existing configuration settings of R/3.
    So I went through below wiki page :
    http://wiki.sdn.sap.com/wiki/display/profile/LifeandWorkEvents(LWE)-Other+Countries
    In the above page there is a section to update parameters in guided procedure process for address.
    GP Context = X
    PT Family Service = EMPLOYEEPERSINFO_FAMMEMBER_PT_05 - this parameter is going to be created in the backend (transaction PTARQ)._
    I am making changes to existing Life and Work events - US only. (for testing purposes)
    In my case I only updated the Address service :
    sap_xss_service
    sap_xss_menusrv
    With the address service from R/3 which is in my case running under personal information section.
    But still I have been receiving the same error under My First Days address section.
    In the above wiki page there is a line as below :
    VERY IMPORTANT: the parameters need to give in action, after in the block, after in the main block, and after in the process (THIS IS CRUCIAL).
    I feel this is where I am missing something.
    What does this line mean...
    Can anybody help me out with the same...if you have implemented life and work event for any country other than US.
    Edited by: Saurabh Agarwal on Apr 10, 2011 3:03 PM

    Hello,
    In continuation of my question I have also been following below sap Note :
    929447 - Adopting Life and work events for countries other than US
    In the above note there us a section which confuses me :
    Page 3 - Home and Area page customizing
    Step2 - In this step they say that we have to make an entry in
    IMG node access: Cross-applicaiton components -> Homepage framework ->Services -> Define Country-Specific Services (Add Entries) - (Table:V_T7XSSSERSRVCG)
    as
    Service Key:EMPLOYEE_LIFEWORK_FIRSTDAYS
    Country grouping: 01
    Link Resource:EMPLOYEE_LIFEWORK_FIRSTDAYS_DE_SERVICE
    I believe it should not be for FIRSTDAYS....it should be about service which is actually throeing the error "Countr/structure does not match"
    i.e. in this note case it should be :
    EMPLOYEE_PERSINFO_ADDRESS05

  • How to enable remote debugging for a session other than the current one

    Hi all,
    I am trying to figure out how to enable remote debugging for a session other than the one I am currently using.
    More specifically, we have an application that is making database calls to Oracle 11gR2. Something is causing an exception during this invocation. My system is currently not set up to recompile said application, so I can't just add the debug call to the code and recompile. Therefore I would like to be able to log into the database (as sys, if necessary) and invoke dbms_debug_jdwp.connect_tcp on the desired session.
    The docs indicate that I should be able to do so:
    dbms_debug_jdwp.connect_tcp(
    host IN VARCHAR2,
    port IN VARCHAR2,
    session_id IN PLS_INTEGER := NULL,
    session_serial IN PLS_INTEGER := NULL,
    debug_role IN VARCHAR2 := NULL,
    debug_role_pwd IN VARCHAR2 := NULL,
    option_flags IN PLS_INTEGER := 0,
    extensions_cmd_set IN PLS_INTEGER := 128);
    But when I try (even as sys), I get the following:
    exec dbms_debug_jdwp.connect_tcp('1.2.3.4',5678,<session id>,<session serial>);ORA-00022: invalid session ID; access denied
    ORA-06512: at "SYS.DBMS_DEBUG_JDWP", line 68
    ORA-06512: at line 1
    00022. 00000 - "invalid session ID; access denied"
    *Cause:    Either the session specified does not exist or the caller
    does not have the privilege to access it.
    *Action:   Specify a valid session ID that you have privilege to access,
    that is either you own it or you have the CHANGE_USER privilege.
    I've tried granting the 'BECOME USER' privilege for the relevant users, but that didn't help. I read something about having to set some kind of ACL as of 11gR1, but the reference documentation was very confusing.
    Would someone be able to point me in the right direction? Is this even possible, or did I misread the documentation?

    Interesting deduction, that would be very useful indeed. I hate recompiling just to add the debug call, and it can't be done in our production environment. But it seems unlikely to me it would be implemented this way.
    I would cross-post this in the SQL AND PL/SQL forum though, as this is really a database issue, not with the SQL Developer tool. Do add the links to the other posts in each.
    Regards,
    K.

  • How do i get siri to set a reminder for a time other than the appt time. For example:  I want Siri to remind me at 10:00 pm on Monday that I have a dentist appt. at 9:00 am on Tuesday. She screws up the dates and times no matter what I say

    What I can't figure out is how to set a reminder for a time other than the appt time. For example:  I want Siri to remind me at 10:00 pm on Monday that I have a dentist appt. at 9:00 am on Tuesday. She screws up the dates and times no matter what I say

    "Remind me at 10:00 pm on Monday".  Siri: "Ok, just tell me what you want to be reminded about".  "I have a dentist appointment on 9:00 am on Tuesday".  Siri should set it up correctly.

  • Settings for email applications other than MyVerizon

    The "new" settings for email applications other than MyVerizon (in my case Thunderbird) does not alow my antivirus program (Avast) to scan incoming mail because of the secure connection setting "SSL". 
    Solved!
    Go to Solution.

    kathyshum wrote:
    I use Windows Live Mail....I used the recommended settings and now I get an error message:
    Unable to send or receive messages for the Verizon (kathyshumway) account. A time-out occurred while communicating with the server.
    Server: 'incoming.verizon.net' Windows Live Mail Error ID: 0x800CCC19 Protocol: POP3 Port: 995 Secure(SSL): No
    What have I done wrong? I don't remember the initial settings...please help!
    Based on what you posted you failed to check the SSL box.
    Here is a link to a thread I created a week ago with definitions that do work for Windows Live Mail:
    http://forums.verizon.com/t5/Verizon-net-Email/Windows-Live-Mail-SSL-Account-Definitions-for-verizon...
    Compare your settings to these.....
    Justin
    FiOS TV, 25/25 Internet, and Digital Voice user
    QIP7232, QIP7100-P2, IMG 1.9
    Keller, TX 76248

  • Is ther any alternative solution for music downloads other than iTunes

    Plz suggest me if there is any other service out there that provides music download service other than iTunes.
    One with DRM-Free & Monthly subscription would be awesome..!
    Thanks in advance.

    Okay, in removing duplicate posts, these got pulled. Here they are...
    <hr width="95%">
    StarDeb55 Posted: May 29, 2007 9:14 PM
    Kirk, I'm almost certain that any Napster downloads have DRM on them. 2nd problem is that Napster doesn't work for a Mac.
    The forums are having problems as you can see. When you post it is taking over 30 minutes to appear in the thread at the moment, so it's really not necessary to re-post.
    <hr width="95%">
    Kirk Boragine Posted: May 29, 2007 9:32 PM
    StarDeb55
    My mistake. I've been happily listening to their streams. The subscription service does not work for Macs, yet. Sorry to all for the post(s).
    [ sorry about that, Nubz N.]
    PM G5, PM G4, iPods   Mac OS X (10.4.9)   Mac OS 9.2.2

  • Can I use a different charger for my iPhone other than the one that was supplied for it

    Can I use a different wall charger for my iPhone 4S other than the one that was supplied with it

    wjosten wrote:
    Lawrence Finch wrote:
    Apple puts no special requirements on it other than that it meet the USB spec.
    Except for the connector...
    What is special about the connector for the 4s charger cable? Mine is a normal USB connector. The question was about the wall charger, not the connector to the phone.

  • Configuring a Communication Channel for an AE other than the default IS

    Configuring a Communication Channel for an Adapter Engine other than the default engine.
    See:  help.sap.com for Communication Channel http://help.sap.com/saphelp_nw04/helpdata/en/1b/d5ef3b1ad56d4fe10000000a114084/frameset.htm
    It states under 'Adapter Configuration', that you can specify the Adapter Engine you want to use in the Adapter Engine dropdown box.
    I have activated the XI components on my ERP system using transaction SICF, but what do I have to do to make the other adapter engines show up in the dropdown list when configuring an adapter?
    Maybe some background would be helpful:  This is for a scenario that will send a file from an external system to one of the ERP systems in our landscape.  BUT, the system admins have decided to revoke our FTP accounts (because they have their reasons), so I need to create a File Adapter that will drop the file on the file system of that ERP system, due to visibility I want to use the integrated Adapter Engine that comes with the ERP system, but need to know how/what I'm missing in setting up this scenario.

    Hi Anesh,
    >>>>but what do I have to do to make the other adapter engines show up in the dropdown list when configuring an adapter?
    in order to use some other adapter engine you
    have to install it first by dafault only one
    (central) adapter engine is used and it is all
    most clients need
    if you'd like to use some other adapter engine
    (decentralized for example) have a look at thid guide:
    <b>Configuring a Local Adapter Engine to Work with a Central Instance</b>
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/03fd85cc-0201-0010-8ca4-a32a119a582d
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions">XI FAQ - Frequently Asked Questions</a>

  • Options for receiving audio other than onboard mic...

    I spent about 8 hrs in my home studio making a really awesome voice mail message for my Verizon account. After I completed my new snazzy message I attempted to record it to my voice mail account. When the phone promoted me to say my message I simply played my recording through the speakers and held up the phone. Ugh! Sounded terrible. I tried different volumes of playback, diff distances from speakers... nothing could make it sound clear like it does in the actual room. Then I tried my Bluetooth headset with the understanding that the thing is marketed as having a good mic. No better. So I called Verizon and they claim to have no way to digitally transfer my mixdown to the account (I was thinking if I could make my message into a MP3 r whatever, maybe I could upload it somehow). No go. So I'm forced to record it real time to Verizons recorder. Soooo...does this Curve here have any sort of alternative to the onboard mic other than a Bluetooth? A line in would be perfect as I could play my mix into the phone bypassing the mic altogether. But I think I'm outta luck. Any ideas for me? 

    I think you're out of luck as you said.
    This is a Verizon function, not of the BlackBerry. The voicemail system lies in their servers somewhere.
    I don't know of any line-in function. It's not available.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • My daughter wants to purchase an ipod touch.  Are there charges or fees for texting ipods other than ios5 systems (i.e. ios4's, etc.)?

    My daughter wants to purchase an ipod touch.  Are there charges or fees for texting another ipod with a system other than the ios5 (i.e. ios4,etc.)?

    Also, there is no battery percentage. The battery drains quicker than in iOS 6. The high power consumption may be fixed in the next update.

  • Can Adobe Story be used for writing something other than a screenplay?  Say and article or short story?

    I have just downloaded Adobe Story and I am wondering if it can be used to write an Article or Novel.  Maybe in a short story?

    Although not really designed for Articles and Novels, if you insist you it may work but would not be really be fit for purpose. I mean you can use the research or synopsis document, most documents you create are free form text (text editor), except scripts. I would recommend the use of other software for Novels.

  • Better use for Fireworks CS6, other than animated gifs and batch process?

    I started using fireworks in the much earlier days of web design back in 2000. Now with Illustrator and Photoshop being the law of the land, fireworks has begun to fade and take a back seat.  Primarily right now i use fireworks just for creating animated gifs and batch process if i have a bunch of images that i would like to re-export or format to my liking.  Does anyone have any other better uses for this program?  detPhx
    I am just looking to utilize this more, since i install it.

    For the web, exported PNG compression is better in FW than PS.
    CS6 FW can now generate code  for CSS3 borders, gradients, Sprites, etc...
    FW can be used for jQuery Mobile Theme skinning
    http://tv.adobe.com/show/learn-fireworks-cs6/
    I still use AI for vector graphics & PS for photo & image manipulation, but FW has some nice features for web designers.
    Nancy O.

  • Is there any better way for updating table other than this?

    Hi all, I need to update a row in the table that require me to search for it first (the table will have more than hundred thousands of row). Now, I am using a LOV that will return the primary key of the row and put that primary key to DEFAULT_WHERE property in the block and execute query command to fetch the row that need updating. This works fine except that it require 2-query-trip per update (the lov and the execute_query). Is there any better way to doing this? This update is the main objective for my application and I need to use the most effective way to do it since we need to update many records per hour.

    Thanks Rama, I will try your method. Others, how to query row instead of primary key? I thought that querying primary key is faster due to the index?
    BTW, what people do if you need to update a table using Form? I have been using the LOV then execute query since I first developing form. But I am building a bigger database recently that I start worrying about multiple query trip to dbms.
    FYI my table will have up to million rows on it. Each row will be very active (updated) within 1-2 weeks after it creation. After that it will exist for records purposes only (select only). The active rows are probably less than 1% of all the rows.

Maybe you are looking for

  • Mountian Lion does not recognize Yosemite in Start up disk

    Greetings All, I recently installed Yosemite on the partition of my HD (1TB) I ran Mavericks on. On another partition of the same HD I run Mountian Lion (I use Pro Tools 9.06 on it). When working within Mountain Lion, I used to switch to Mavericks (a

  • Can't get granular file .bak or .cmp to restore.

    I made a granular backup of my site collection into .bak. and now im trying to import said file by using I have the site I'm importing to already created at http:/testserver/sites/test Import-SPWeb -identity http:testserver/sites/test -path \\shareds

  • Technical Content Activation

    Hi Iam trying to activate technical content from Bus. content are and being unsuccessfull. Steps i took     Collected the technical content objects.     Marked all of the objects to be installed.     Ran install and nothing happenned.     Then i trie

  • Yahoo mail keeps cycling through login and will not open.

    I was trying to get a picture of a plane off of the yahoo emails I was sending out. I must have done something to the security settings. I can open my yahoo, but when I click on a piece of mail I can't get into it. The http:// site cycles endlessly a

  • Photo effects in Garageband

    Is there a way to dissolve between photos in a Garageband podcast? Or is a cut between photos the only way to show the photos? I'm matching photos to a pre-recorded narration and can't create a slideshow first.