Questions tagged [jmf]

JMF stands for the Java Media Framework.

JMF stands for the Java Media Framework. It was proposed by Sun as a means to handle media content through Java applications in a platform independent manner. It has moved on from just the PC and is now seen in DTV standards like OCAP and even Bluray. A good starting point will be the sun documentation at http://www.oracle.com/technetwork/java/javase/index-142695.html

390 questions
25
votes
6 answers

Video playback in Java ( JMF, Fobs4JMF, Xuggler, FMJ )

I need simple video playback in Java. Here are my requirements: PRODUCTION QUALITY Open and decode video files whose video and audio codecs can be chosen by me. I.E I can pick well behaving codecs. Be able to play, pause, seekToFrame OR seekToTime…
ksullivan
  • 496
  • 1
  • 7
  • 12
19
votes
1 answer

Why JMF is not working on Audio streaming with Mjsip?

I am using Mjsip to create a softphone. In the code there is three type option for audio straming. Using JMF (Java Media Framework) Using Java Audio Using RAT (Robust Audio Tool) I am not using the RAT. Its value is been made false by myself. This…
S. M. Shahinul Islam
  • 2,780
  • 4
  • 36
  • 68
17
votes
1 answer

Where can I download the mp3plugin.jar to play MP3s in Java code?

I need to Play a MP3 File in Java code under Linux environment (Ubuntu 11.04). I tried to download the MP3plugin.jar file from http://www.oracle.com/technetwork/java/javase/download-137625.html ,but I can't see it in the list. Note : "I downloaded…
Reem
  • 173
  • 1
  • 1
  • 4
16
votes
1 answer

Live video streaming in java

I need to add live webcam video streaming facility to my web app where multiple clients can see live video.It's almost like a virtual classroom where the teacher will teach live and the students will watch.How can I broadcast live video in java .I…
user3680660
  • 325
  • 1
  • 3
  • 6
15
votes
5 answers

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)
Marcio Aguiar
  • 14,231
  • 6
  • 39
  • 42
14
votes
4 answers

Adding dependencies in Maven Netbeans

I've created a Maven project and added the dependencies (jar files) that I need; however, netbeans says that it still cannot find it. Specifically in my case, I added the jmf-2.1.1e.jar file into my dependencies folder. When I go back to my program…
Allen
  • 141
  • 1
  • 1
  • 3
14
votes
1 answer

How to capture video using JMF, but without installing JMF

A videoconferencing project I was working on used JMF to capture video and audio, and transmit it to another endpoint. An issue was that my team didn't want the user of the product to have to install JMF. I thought it might be worthwhile to share…
user489041
  • 27,916
  • 55
  • 135
  • 204
10
votes
3 answers

MP3 won't stream with JMF

Basic idea is to access .mp3 file and send it through RTP stream to other client, who will want to play that song. Here is RTPServer.java, which I found online and modified it to my liking. package server; import java.net.InetAddress; import…
Nob Venoda
  • 543
  • 1
  • 6
  • 14
9
votes
4 answers

Video Processing Library for Java

I want to extract frames from a video and apply some filters on it such as gabor/hough etc. Which Java library would be perfect for handling all kinds of video encodings? I have been looking at GStreamer, JMF, Xuggler etc. but am unable to decide…
abhishek
  • 817
  • 6
  • 19
  • 33
7
votes
2 answers

Webcam control in java

I am thinking of creating a project for controlling my integrated webcam in java. I have tried searching and found that we need to use JMF for this kinda stuff. But i couldn't find any good tuts or books which explains JMF from scratch.
Jonah
  • 2,097
  • 4
  • 20
  • 22
7
votes
2 answers

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…
shipmaster
  • 3,994
  • 4
  • 30
  • 33
7
votes
3 answers

Combine Audio with Video(without ffmpeg) - Java

I am building an applet to capture screen and microphone input (audio). I am able to record these files separately but could not find a way to combine these files to make a new video with audio. Video file is in .mov format and audio is in .wav…
efenacigiray
  • 340
  • 6
  • 16
6
votes
2 answers

Why it is UDP, not RTP in Wireshark when I stream using jmf?

I want to capture and stream audio using JMF 2.1.1e in RTP format. I wrote a simple transmitter, I can transmit and receive the audio. But when I saw in Wireshark, I saw the packets as UDP. Can anyone point me out the problem, please. And here is my…
shibli049
  • 528
  • 12
  • 31
6
votes
1 answer

Recording multiplexed Audio/Video to a file using JMF

I have a project that uses JMF, and records for a short time (a few seconds to a couple of minutes) both the web camera, and audio inputs, and then writes the results to a file. The problem with my project is that this file is never produced…
SplinterReality
  • 3,400
  • 1
  • 23
  • 45
6
votes
1 answer

java code for capture the image by webcam UnsatisfiedLinkError

I am using windows7 64 bit operating system. The source code is for capturing the image by webcam: import javax.swing.*; import javax.swing.event.*; import java.io.*; import javax.media.*; import javax.media.format.*; import…
Navneet
  • 69
  • 1
  • 3
1
2 3
25 26