jmf

Video Thumbnails in Java

I want to generate a thumbnail preview of videos in Java. I'm mostly JMF and video manipulation alienated. Is there an easy way to do it? What about codecs? Will I have to deal with it? Any video type is suported? (including Quicktime) ...

Java Media Framework on client side?

If I’m writing an applet that shows a video sequence (eg. streaming from a camera, or the applet itself is running the on the camera), do my clients need to download the Java Media Framework libraries inorder to see the sequence? ...

Encoding for JMF

I'm creating some videos from a collection of images, I subsequently wish to play this video back with java. I found JMF but I haven't been able to find an encoding which is actually playable by it. Does anybody have an ffmpeg or mencoder formulation which produces JMF playable output? I would also take alternatives to JMF if there is...

where can i find Java JMF tutorial

I'd like to know about basic classes for playing video from webcam I'd also like to play with video buffers pixels where can i find a Java JMF tutorial that will help me achieve that? ...

JMF and RTP Protocol

Hello everyone. I am doing a project which consists of a video-conference system in Java and using the RTP protocol. The problem is that I can not pass the stream to the clients, that I capture in my webcam. Someone can give me a hand. I already turned off my firewall, but does not waork. Thank you ...

JMF+JavaFx layout problem

I can creat a GUI in javafx and call the JMF component within JavaFx, just like this public class JMFComponent extends SwingComponent{ var panel: JPanel; public var center: java.awt.Component on replace{ println("[center] set component: {center}"); panel.add(center, BorderLayout.CENTER); } public ove...

Reading raw data from a video capture in JMF

I'm trying to read raw video frames from a video capture device using JMF - the Java Media Framework. I've successfully written the "capture" part - using a Player object created by Manager, I can display realtime video from a webcam. I don't know how to go about creating a custom component to access the actual frames, however. This is ...

Java webcam chat application

Hi there, I have been developing a chat application. And so, I want to create a webcam support to my application, like as mercury, so i had tryed search a lot of more with google, but i didnt find a good article, or tutorial, or something. I have readed the jmf guide, but what write in it, just a media player, and sound player, it is not...

Java for a video based application: Good choice?

I am in the concept phase of an application that is going to have a lot of Audio/Video input and output. I want to do it in Java; but somehow am not fully convinced yet. What do you think? How bad could it be? And any advices? Why I am thinking Java: It's the language I'm most comfortable with. Easier cross platform migration would be...

Error using JMF

I set up JMF using this tutorial http://www.deitel.com/articles/java_tutorials/20060422/PlayingVideowithJMF/ . I set up the mp3 codec in the jmfregistry like you are suppose to and I am able to play any mp3 I want when I use jmstudio. This means I set up everything correctly but when I execute my code I still get this error message: Una...

Resize video with JMF

Im trying to play a video in my java application using JMF. The video is playing fine but im trying to make the video larger. the code below is being placed inside another jpanel with a gridbag layout. I currently have it being added with no FILL constraint so it should be displaying at its normal size. When i do add a fill constra...

Reading and writing on webcam stream

Is it possible to use java to write into a webcam stream? I've tried JMF and got it to capture the image but couldn't find a possibility to write into the stream. ...

Painting over JMF component

I'm capturing the Stream from a webcam and would like to draw something on top of the video image. I try that in the example below, the problem is that the other component is always in the background no matter how I arrange the components. Is there a way do solve this? public class SwingCapture extends JPanel { private static final...

JMF, FOBS, and MPEG-4 Subtitles

I would like to be able to read subtitles from a MPEG-4 video stream using JMF. Pages such as MPEG user data indicate that subtitles can be embedded directly in an MPEG-4 video stream as "picture user data" associated with a frame. Assuming I am able to produce such a video stream, is it possible to consume them with JMF? JMF can consu...

java webcam chat jmf player readExternal writeExternal

Hi there, I am developing a webcam chat with jmf. I got a little problem, and i didnt find the answer with google, i hope it you all will be able help to me. So I am streaming camera's data to socket with ObjectOutputStream Code: public class CameraTcpSocket extends Thread { private final Container con; private Socket socket; ...

Javafx with JMF

Hello, good Afternoon, I do not speak English, but I have a problem: I can't play videos with JMF using JavaFX for my GUI. I need the RTP JMF API and I'm getting this error: Unable to handle format: MPEG, 352x240, FrameRate=29.9, Length=126720 Unable to handle format: mpegaudio, 44100.0 Hz, 16-bit, Stereo, LittleEndian, Signed,...

Webcam access from JavaFx

Does the latest JavaFx version support streaming webcam video? Is it possible to get it through JMF in fx? ...

JMF replacement

JMF is old, and doesn't support a lot of codecs properly. I get by these days by using FFMPEG in the background, but I would like to switch to a native java solution if one exists, does anyone know of a current open source Java project that has media manipulation functionality? ...

Is there an equivalent to Java Media Framework in C#?

Is there an equivalent to Java Media Framework in C#? ...

Manipulating Videos using Java Media Framework

How would I go about manipulating a video stream with Java Media Framework, for example; the user loads a video, and then can adjust the brightness/contrast while the video is playing. ...