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
0
votes
0 answers

Distinguish between multiple USB Microphones with JMF

Is there a way to distinguish between multiple USB microphones with JMF. Currently each USB Mic interfaces with the generic USB windows driver and registers with JMF as a "DirectSound" capture. Problem is when I talk out of either Mic they both get…
0
votes
1 answer

How to stream an Mp3 file using Socket programming in Java JMF

I am doing a project in Java I am trying to stream an Mp3 file to client from server Using Socket programming and Play it on client machine using JMF But I am help less in that Is this thing possible??
0
votes
5 answers

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?
Schildmeijer
  • 20,702
  • 12
  • 62
  • 79
0
votes
1 answer

Audio does not play in JMF framework in java

when i am running this code nothing get's played. But there is no error. I am using the cross platform JMF 2.1.1 and have imported JMF.jar file in my netbeans project. import javax.swing.*; import java.awt.*; import javax.media.*; import…
Tamojit Chatterjee
  • 161
  • 1
  • 1
  • 10
0
votes
1 answer

How to configure jmf in net beans

I am doing video capturing through webcam using jmf. i am very new to this and dont know how to use jmf. I downloaded and installed jmf,it detects my video devise but now i want to run java code to detect the same. Please help.
Ishan
  • 4,008
  • 32
  • 90
  • 153
0
votes
0 answers

How to use JMF on an Applet embedded in a HTML page

I have a Java applet (developed in NetBeans 7.4 and using JMF) for taking pictures from a web camera, it initializes the webcam automatically at startup (by using JMF)... (APPLET) For making it run it's necessary to add the jmf.properties file…
Jesus
  • 8,456
  • 4
  • 28
  • 40
0
votes
1 answer

Java media frame work and netBeans

i installed jmf-2_1_1e-windows-i586 butit didn't include jar files and when i write java.media.*; in my code an error occurs that this library is not found !!? How to install java media frame work in net beans ?!!
0
votes
1 answer

mp3 encoding on the server side

My project requires me to transcode AIFF and WAV files to low bitrate MP3 files. Looking around it seems like my best option is to go with the Java Media Framework. So I am planning on building a play! application that would be called when the…
standup75
  • 4,734
  • 6
  • 28
  • 49
0
votes
0 answers

MOV to AVI Conversion - file size 0 bytes

I want to convert a MOV file to AVI file as a part of my project. The MOV is getting converted properly from a set of JPEG files. But am not able to convert the MOV to AVI. It says the output .avi file is of 0 bytes. Can somebody help please? Here…
0
votes
0 answers

when i choose a video file through JMF, i hear only audio, but video does not work

`this is the first class the jmf video player is put into a panel import java.awt.BorderLayout; import java.awt.Component; import java.io.IOException; import java.net.URL; import javax.media.CannotRealizeException; import javax.media.Manager; import…
MastaOpec
  • 39
  • 9
0
votes
3 answers

Exceptions with applications using Sound after installing JMF

I have windows vista OS.. I Installed JMF to work with it.. but it seems I'm having some conflicts between Sound and JMF.. because after I installed JMF my projects that use Sound.. midi.. sequences.. are giving exceptions that they don't have some…
CiCi
  • 47
  • 1
  • 5
0
votes
1 answer

Capturing photo through webcam and save it in local computer using JMF

I want to write jmf code for capturing the image through web cam at predefined interval and save it in my computer. if you have any idea , please suggest to me with example ,,,,,,,, thanks
user222967
  • 11
  • 2
  • 5
0
votes
1 answer

capture image from web cam

I am using jmf to capture image from web cam. I have attached webcam and it is working with fine. I am using following code to capture image from webcam: -- import com.sun.image.codec.jpeg.JPEGCodec; import…
Prakash Panjwani
  • 2,540
  • 5
  • 23
  • 34
0
votes
0 answers

Java video output can only be opened using Quicktime but no other media player can open it

I have a program and that captures the screen and then takes those images and turns them into a movie. (Using the JpegImagesToMovies.java that was customized to work with .png) I have tried multiple extensions: .mov, .mp4, .avi (I am open to trying…
user2612619
  • 1,119
  • 3
  • 11
  • 28
0
votes
1 answer

How to pause a video in vlcj( Recording the video in vlcj)?

How to pause a video in vlcj? I am using web camera. So i use the dshow in vlcj on windows. Code is: String[] options = { ":dshow-adev=none", ":dshow-vdev=", …
samaswin
  • 384
  • 1
  • 2
  • 21