avi « Media File « Java I/O Q&A





1. Structure of Avi file??    forums.oracle.com

Hello, I am trying to make a program which will be able to make avi files, I know how to write to file, how to get pixels from images, but i dont know the format of avi file. My question is how can I make avi files?? Or in what order does the bytes go to avi file? ex 3 bytes ...

2. Avi File Manipulation?    forums.oracle.com

Hello, I was wondering if it is possible to take an AVI file and simply add text to it. Like an On Screen Display. I have a device that takes and gathers the amount of feet that a cable is run with a camera attached. That video is than taken and compressed to AVI, however it is hardware compressed. So now ...

3. AVI file information    forums.oracle.com

Should be able to tell the codec with the Java Media Framework [http://java.sun.com/products/java-media/jmf/2.1.1/download.html] But since it's hard to find actual javadocs for it. I would install it, and then go ask your specific question in the Java Media Framework forums [http://forums.sun.com/forum.jspa?forumID=28&start=0] Also now that you know which API you should be using, search for the answer before you proceed to ask ...

4. [help needed] reading and preserving the encoding of an .avi file    forums.oracle.com

hello all, would someone kindly enlighten me on how to read in data from an .avi file, preserving the encoding at the same time? i've tried ISO8859_1, the various unicodes, Cp1252, but i'm unable to get it right. what i'm doing is to read the avi file, and then output to another .avi file. i've tried storing the readLines into an ...

5. avi filetype return    forums.oracle.com

hi i am making a multithreaded webserver and was wondering what it should return if filetype avi is found, similar to the following: else if (fileName.endsWith(".bmp")){ return "image/x-xbitmap"; } else if (fileName.endsWith(".avi")){ return "video/x-msvideo"; I am not sure about return "video/x-msvideo"; which I am using right now, as no plugin is found for it when i try to access the webpage ...

6. avi file cannot be cut from between    forums.oracle.com

I dont know whether its the right place to put my question or not. I am trying to cut an avi file from between but only the first part is played properly the second part is corrupted or cannot be played. I have used Bufferedstream for reading and writing bytes. Is this the problem or there is a specific stream of ...