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)
...
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?
...
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...
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?
...
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
...
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...
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 ...
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...
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...
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...
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...
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.
...
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...
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...
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;
...
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,...
Does the latest JavaFx version support streaming webcam video? Is it possible to get it through JMF in fx?
...
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#?
...
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.
...