Re: LOOKING FOR H264 CODEC in JAVA!!

I am still looking for it!! Now is 2007, will it come this year??
Looking forward to it!!

Here are examples of a streaming video applet embedded inside a Java FX application.
http://vxweb1.vx30.com/images/myVideoPlayer1.png
http://vxweb1.vx30.com/images/myVideoPlayer2.png
http://vxweb1.vx30.com/images/myVideoPlayer3.png
Much better quality, performance compared to the previous example.

Similar Messages

  • Look for general blog on Java technologies

    Hello,
    I am greatly interesting in Java and look for active blog on Java technologies. I found 1000 of blogs posted in this forum but many are very specific or not active anymore. Could you please advise me good java blog with regular posting and interesting articles on different part of Java?
    thanks
    sebastien

    To write JNI code for integrating of an activeX is not a simple task. You will face with a number of problems related to COM:
    - when and where to call CoInitialize and CoUninitialize,
    - how to clean up COM references on Java Application exit,
    - when to do Thread Marshal and when it is not needed for COM interfaces;
    - how to Marshal and Unmarshal COM parameters in Java methods calls to COM Interface methods, etc.
    The best decision is to use some Java-COM Bridge.
    My company has developed tools like
    - Java-COM Bridge
    - Object-Oriented JNI SDKs for C++ and .NET (v1.1,v.2.0) languages (do not mix with JNI wrapper generators). These are an object-oriented maps of the regular JNI SDK,
    - Add-Ins for MS Visual Studio v.6.0 and v.7.1 that generate Java wrappers in C++, C#, J#, MCpp, VB for Object-Oriented JNI SDK.
    So we know problems you have.
    See our site
    http://www.javain.com

  • Looking for a Codec

    I have no clue where to start looking or even what exactly I'm looking for, but I'm after the codec for Quicktime which allows me to play .avi files of the "MP42" type. Anyone know where I can go for that?
    Thanks,
    Felixia
    G4 iBook   Mac OS X (10.3.9)  

    Give this link a try. I haven't used it personally
    but some others have used it with good results:
    http://home.comcast.net/~appleguru/ms-mpeg4v2-macosx.s
    it.hqx
    Yep, that worked pretty well. There was some weird lag in places, but much better than a blank white screen. Thanks!

  • Looking for training on Sun Java(tm) System Messaging Server 6

    Hi All,
    I looking to take training on Sun Java(tm) System Messaging Server 6 i checked SUN Training Site but i didn't find
    Can ant one tell me if its available or not.
    regards,
    Mariam

    MariamS wrote:
    I see that you know so much about Sun Java System Messaging staff. I've been using Messaging Server for over 8 years in various roles so I have a good head-start.
    from where you learned all these i like to expert in this area but i dont know from where i have to start.The Messaging Server admin guide is the best place to start:
    http://docs.sun.com/app/docs/doc/819-4428
    Regards,
    Shane.

  • Looking for More Info on Java Web Service

    Hi Everyone,
    Where can i find More info on Java web Service in BPEL? Is there any link or documentation for this? I looked at the tutorial and the only info available is:
    B.2.7 Java Web Service
    This service enables you to publish a Web service from a Java class. A wizard creates the WSDL document and deployment files needed to publish your code as a Web service. After you select the class and methods you want to publish, the wizard generates deployment descriptors, a JAX-RPC mapping file, and a WSDL document that can be deployed to an application server.
    Thank You,

    Sure,
    one way would be to upload the files to XE using the WebDav feature of the XML DB. You find more information here: http://daust.blogspot.com/2006/03/where-are-images-of-application.html
    Another option would be to configure a standalone Apache as a proxy server to XE. This way you can configure the Apache any way you like.
    HTTPS with Oracle XE ?
    Re: Existing http server
    For correctly logging the remote IP you will need the following workaround:
    Re: How to get X-Forwarded-For value?
    Regards,
    ~Dietmar.

  • Looking for a codec to use AVI files on Windows 8

    Thanks for you assistance. My new computer using Windows 8 doesn't take a shine to me using AVI files in Adobe Premiere. Prompts me to install a codec. Pretty sure there are a ga'zillion out there. Any suggestions on which is right? And one step further, how to properly install? Best regards!

    @ATRomano - First, thank you for your reply. I've been trying to correct this problem since purchasing the new computer in Dec, and this is effecting my livelihood.
    Here's a what I know.
    Downloaded Adobe Premiere 11 from Amazon in June 2013 onto my Sony Vaio laptop running on Windows 7. the AVI files from my Fujifilm Finepix 4500S camera were accepted. The AVI files are titled DSCF0217.AVI. for example.
    Computer crashed on T-day, so forced to buy new one. Also a Vaio, this time running on Windows 8. AVI files from my Fugifilm Finepix 4500S no longer work. Says I need a codec.
    Went to Best Buy. They spent two hours on it, nothing. There solution since the AVI files worked on Windows Media player, was to start uses Sony Vaio's editing software the comes with the computer, really?
    Then all of a sudden, the program is gone. Completely removed from my computer. All the projects and video/pics in elements included.
    So last night I redownloaded the software from Amazon. Thank goodness they kept the serial number.
    Surprisingly, the projects are still there, though when I open them most of the files in the timeline are AVI and appear as "Media Offline."
    When I try to add new AVI files to the time I receive this error message - "This type of file is not supports, or requires a codec to be installed."

  • Looking for some help on Java IO Streams

    Need to find a example or how to on:
    Java IO Streams
    using a scanner to find files with
    FileInputSeteam ...("c:\\data.in")
    did that make sense
    sandyR

    What about the API page for Scanner: http://java.sun.com/javase/6/docs/api/java/util/Scanner.html
    And the IO tutorial: http://java.sun.com/docs/books/tutorial/essential/io/index.html (which also discusses Scanner).

  • Looking for performance boost to java.nio.charset.encode(String) method

    hi ,
    i have run jprofiler on my application and so that this method takes 4% of the overall CPU time (!) .
    is there any other , faster way to do this encoding ?
    thanks!

    yjavaman wrote:
    i susspect that in my application (multi threaded ) , it is actually a larger bottle neck than i think right now.
    i ask about maybe the caching of the encoder , decoder , maybe i can save this time by doing other stuff .Not sure if you are already buffereing, but from javadoc:
    java.io.OutputStreamWriter
    Each invocation of a write() method causes the encoding converter to be invoked on the given character(s). The resulting bytes are accumulated in a buffer before being written to the underlying output stream. The size of this buffer may be specified, but by default it is large enough for most purposes. Note that the characters passed to the write() methods are not buffered.
    For top efficiency, consider wrapping an OutputStreamWriter within a BufferedWriter so as to avoid frequent converter invocations. For example:
    Writer out = new BufferedWriter(new OutputStreamWriter(System.out));
    Just something simple to use.

  • I'm in class right now and am looking for answers to all java questions

    post all answers to every question i will have in the future here now.

    sorry, people's i was in my csc class and feeling a
    little bored. i do have a legitimate question.
    what is the difference between a static variable and
    an instance variable?i'll tell you the answer LATER. c'mon, a little guessing so i don't have to use any effort

  • I look for a "java client IRC applet"

    Hello every body and good hollydays!
    For long time, I looked for a open source java "client irc" applet.
    I have found one, but it does' n run! (it needs to be signed and unfortunatly
    I don't doing it !).
    Briefly i need links about all this subject.
    A great thanks.
    elias

    Search in google by "java client IRC applet" found many different links :-)

  • Looking for a MetalTheme repository

    is there any MetalTheme repository ?
    where ?

    Maybe this is what you're looking for?
    http://developer.java.sun.com/developer/techDocs/hi/repository/

  • Looking for RMS.jar Package

    Hi,
    This is Murthy i am looking for RMS.jar file [Java Package].
    With the following classes...
    import rms.RMSFile;
    import rms.DictionaryFile;
    import rms.rsrdds.DataDictionary;
    import rms.RMSException;
    If any one has any idea where i can get it....
    or if you have it mail to me at:
    [email protected]
    It would be a very big favour....
    It is Very Urgent...
    Thanks in Advance,
    Murthy Rayudu

    Are you sure this is a publicly available JAR? I can't find it even mentioned somewhere on the web. What is it supposed to do?

  • Looking for Help with Hyperion to JAVA

    I am looking for help with connecting Hyperion to Java. We are in Maryland but would be willing to work out something for remote consulting. If you have experience with connecting web services, hyperion, and Java and would be interested in about 80 hours of consulting please contact me at:[email protected] x4846

    Hi,
    From your description, you want to achieve the following goal:
    Configure Exchange to filter the attachments if the size is over 10 MB and store it in a public folder, and then forward the email to Salesforce.
    Based on my knowledge, I'm afraid that it can't be achieved. Exchange can filter messages with attachments, but it couldn't store these attachments on public folder automatically. Also, I don't see any transport rule can do it.
    Hope my clarification is helpful.
    Best regards,
    Amy Wang
    TechNet Community Support

  • New to java looking for help.

    I m using mysql n linux RH 8.my data is like this as shown below
    Ticketing(my table name)
    =======================
    remarks(Field name)
    Now what I m looking for is I retrieve the value from remarks and that
    value I want to scroll below the web page.I manage to retrieve the value but don't know how to scroll below the web page plz help .
    Thanx in advance

    You could use a classic javascript for this. There are lots of javascript forums on the net, they could help you out. The main problem is that you have to put your DB password in the script. This is not a very safe solution.
    If your web server supports JSP, use it. It's nice, easy and server side :)
    http://java.sun.com/products/jsp/
    Maybe writing an applet is the easiest solution. This way you have the best control on what is painted on screen and, more importantly, you don't have to show your passwords.
    http://java.sun.com/docs/books/tutorial/applet/index.html

  • Looking for a Java Parser

    Hi,
    I'm working on a Web Service Project, and i'm trying to deploy Web Services dynamically. Now the problem is, that i have to adapt the Java src-files sometimes before the deployment (Like adding Annotations, Methods or just peaces of code into a Method. So what i'm looking for is some Sort of a Java Parser, that gives me information on where to insert the code i generated.
    Simple example:
    public class WSExample{
         public void doSomething(){
              //do something
    //this class should be changed to something like this:
    public class WSExample{
         @WebMethod       //Annotation added
         public void doSomething(){
              //do something
            //this Method is generated automatically
            @WebMethod
            public void doSomethingDifferent{
                   //like establishing a connection to a different WS
    }All i've found up to now are parser generators like antlr or javacc. But i couldn't find anything about how to use the generated parsers or even manipulate the parsed code, yet. I hope i don't have to write a parser or grammar myself. Maybe someone can link me to some useful tutorial, forum or whatever else might be helpful.

    If you are using Sun's Java 1.4, you already have one. If you are using an ealier version, here are a couple of links:
    Xerces is probably the most feature rich:
    http://xml.apache.org/xerces2-j/index.html
    GNU JAXP is also good and very small:
    http://www.gnu.org/software/classpathx/jaxp/

Maybe you are looking for

  • How can I front-load page titles?

    We have a public-facing SP 2010 website implementation and a recent Accessibility test suggested that we should front-load page titles, so screen reader users know the page they are on without skipping navigation. Does anyone know how can this be don

  • IB lost?

    While playing arrount with Xcode 5.1.1, suddenly, when clickING on MainMen.xib or attempting to build I get the message: Restarting Xcode or even the computer does not help. The error persists. What happened? Next step is to re-install Xcode, but thi

  • Frequency Based Records

    Hi All A little overview we have a intake system where users submit requests and we process them . Some of our requests are recurring which means after we get the original request we create manual requests for that recurring request and process them

  • What mp3 player would you recomme

    It seems like my Zen is about to die, so I'm wondering what some of you might suggest as a replacement. I really don't want an iPod 'cause I'm in NY and everyone and their dog has one. The specs I'm looking for, in order of importance, are: . Stabili

  • View Archived Idocs

    HI Gurus, Can you help me with reading archived IDocs by IDoc number. I tried SARA but that didnt help me. Please help.