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
6
votes
2 answers

Detect WebCam device using with java

I am using JMF to operate my web cam.My usb webcam works perfectly with JMF, I used it in JMStudio however,when I make this call from my java code deviceListVector = CaptureDeviceManager.getDeviceList( null ); my "audio capture device" is detected…
Prakash Panjwani
  • 2,540
  • 5
  • 23
  • 34
6
votes
2 answers

Eclipse missing imports (javax.media.* and com.sun.media.*)

I have this old java applet that i need to debug, yet i have some problems with import. The import javax.media.* cannot be resolved. The import com.sun.media.* cannot be resolved After some research i tried adding this external libs to the project…
no9
  • 6,424
  • 25
  • 76
  • 115
5
votes
2 answers

Player realization in JMF using RTP

I am having an issue that I've been struggling with for the greater part of a week and have tried at least 10 different implementations and all seem to fail. There must be something that I am not understanding. I am using jmf to transfer audio via…
Dabloons
  • 1,462
  • 2
  • 17
  • 30
5
votes
1 answer

How to play 3gp file in Java?

It is a Java question. I try to use Fobs4jmf to play 3gp. I can see the video but without any sound. Is there any solution? And I try a newer library called xuggler, but I only see how to manipulate ,modify the video instead of playing a video file.…
Bear
  • 5,138
  • 5
  • 50
  • 80
5
votes
4 answers

which is better? JMF or VLCJ. especially for streaming youtube videos

I am an average java developer and i am trying to come up with a browser that is developed entirely in java. I want that my browser must be able to play youtube videos, and for that i was planning to use JMF. Here are my questions: 1) can JMF be…
aadi
  • 51
  • 1
  • 2
5
votes
5 answers

Java Metronome with High Speeds

as an excercise I'm trying to create a metronome with Java using Thread.sleep as a timer and JMF for sounds. It's working out quite well but for some reason JMF seems to be only playing sounds at a maximum of 207 beats per minute. From my…
Macks
  • 1,696
  • 5
  • 23
  • 38
5
votes
3 answers

Any simple (and up to date) Java frameworks for embedding movies within a Swing Application?

I am building a small Swing application that I would like to embed a movie within. Importantly, this application is a WebStart application - and the library should be able to be packaged within the jnlp that I launch -i.e, not dependent on native…
totalcruise
  • 1,343
  • 2
  • 13
  • 25
4
votes
5 answers

Java Media API: java media api download

Where can i find javax.media.* jar file.. In sun site it downloads an installer. Is there any available of the media jar for java?
sri
  • 59
  • 1
  • 2
  • 3
4
votes
1 answer

JMF Video Capture on Macbook Air

I'm trying to work with the webcam on my Macbook Air via JMF, but jmfinit can't seem to find it. I get the following output: Looking for Audio capturer Finished detecting javasound capturer Looking for video capture devices Capture device detection…
Aaron Dufour
  • 17,288
  • 1
  • 47
  • 69
4
votes
2 answers

Run Java ScreenGrabber example

I'm trying to test the Screen Grabber sample from JMF. Could anyone tell me how to write the main method to run this example?. I have reviewed a lot in Google and have not found a way to make it work. because I do not know which of the two classes…
Lobo
  • 4,001
  • 8
  • 37
  • 67
4
votes
3 answers

How to learn .wav duration in Java media frame work?

I am tyring to merge an .mov file with a .wav file using java media framework, thus I need to know their duration. How can I do this? Any ideas would be appreciated..
yasemin
  • 91
  • 1
  • 7
4
votes
2 answers

Which API: JavaFX or JMF is better for audio processing in Java?

I am doing a project in which I have to transform the audio data (which would be most probably in mp3, wav or wma format) into a waveform and also get the FFT and pitch for it along with the time in milliseconds at which the pitch change. I am just…
Soul Enrapturer
  • 367
  • 2
  • 3
  • 14
4
votes
1 answer

Java Media Framework MP3 plugin

I am looking for a library that can encode/decode mp3 files. I want to write a program that can change the bit rate of mp3 files. Does anyone know if the JMF MP3 plugin from Oracle do this job. Here is its link: JMF MP3 plugin
yasserbn
  • 391
  • 3
  • 18
4
votes
1 answer

CaptureDeviceManager.getDeviceList() returns null

I coded in java on ubuntu 11.10 Laptop webcam is running correctly and locate it /dev/v4l/. Skype application can use webcam and run. I installed JMF but i couldn't add environment variables.` Vector deviceList =…
user1291468
  • 139
  • 1
  • 3
  • 7
3
votes
3 answers

Streaming video from a webcam with JMF causes Windows 7 to switch to the basic theme

My Java program that opens up a webcam stream and streams the captured video to a Swing component works, but when I launch it, it causes Windows to switch to the Basic theme. This is an excerpt from my code: String str1 = "vfw:Logitech USB Video…
vrutberg
  • 1,981
  • 1
  • 20
  • 28
1
2
3
25 26