JMF « Development « Java Swing Q&A





1. How to play mov and wmv video format file in Java Swing?    stackoverflow.com

I am using JMF jar file, but i am only able to listen the sound but cant view the movie.

  Unable to handle format: RLE , 800x600, FrameRate=14.6, Length=31280
 ...

2. how to play a video in java standalon application using swings through JMF    stackoverflow.com

I already installed JMF jar files... and JMStudio..
my code is...

package medical.service;

// A JPanel the plays media from a URL
 import java.awt.BorderLayout;
 import java.awt.Component;
 import java.io.IOException;
 import java.net.URL;
 import javax.media.CannotRealizeException;
 ...

3. How to make overlay for video in swing    stackoverflow.com

I want to make a transparent overlay for a foreign project to show live video. Sample of overlay is given in the image link below. In image you can see a ...

4. The Java Media Framework isn't cross platform?    stackoverflow.com

I'm using JMF in my Java GUI and before downloading the packages from Oracle, it asks you which version you want:

Linux 
Solaris SPARC 
Windows
Does this mean my Java (cross-platform by nature) ...

5. jmf file play error    stackoverflow.com

I have taken the code from the url and tried to play a file of mpg format as shown below: Code URL: http://snippets.dzone.com/posts/show/2912 File URL: http://www.fileformat.info/format/mpeg/sample/index.htm I am getting ...

6. fobs4jmf.dll Error in Java Swing playing .avi videos    stackoverflow.com

I recently started helping a colleague with debugging a video crash issue with her Java Swing application. The application makes a native call to fobs4jmf.dll for playing .avi files. Sometimes, not ...

7. Need help writing non-gui JMF program    coderanch.com

I need to write a program that will convert a WAV file from a ULAW format to a GSM WAV file format. I first tried this with the Java Sound API and the WAV file format of GSM was not supported so I stumbled across JMF. I can use the JMStudio and Export GUI programs that come with JMF to convert ...

8. Simple JMF example does not work    coderanch.com

HI, I download the example code of PlayerApplet.java from sun programmer guide. I can compile this file. However, when i try to use my browser to open the html page the display the applet, i see the error in java console saying java.lang.NoClassDefFoundError: javax/media/ControllerListener at java.lang.ClassLoader.defineClass0(Native Method) at java.lang.ClassLoader.defineClass(Unknown Source) at java.security.SecureClassLoader.defineClass(Unknown Source) at sun.applet.AppletClassLoader.findClass(Unknown Source) at sun.plugin.security.PluginClassLoader.findClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown ...





10. I want to use JMF api ,where it exsists    coderanch.com

12. New to Swing and JMF ..please help    coderanch.com

13. usb web camera and JMF Problem    coderanch.com

hi i have tried many example to work with usb web camera but exception said that no device connected while camera fine and work under windwos this is th code thank you for help import javax.media.Player; import javax.media.CaptureDeviceInfo; import javax.media.MediaLocator; import javax.media.CaptureDeviceManager; import javax.media.Manager; import javax.media.format.*; import java.util.Vector; import java.awt.*; public class TestJMF4 { CaptureDeviceInfo device; MediaLocator ml; Player player; Component ...

14. Does JMF implement acoustic fingerprinting?    coderanch.com

Hi Everybody, Sorry if this is not the right forum to post it. Acoustic finger printing algorithm helps comparing and identifying an audio file, even though the audio file is not a bit-by-bit match of the original audio file. I would like to know if Java Media Framework (JMF) has APIs to compare audio files using acoustic fingerprints. Thanks in advance, ...

15. how to setup JMF (Java media Wramework)?    java-forums.org

This will help u in greater extent... Setting Up JMF:::: Check the hardware and software requirements. Run the installation program to extract JMF to a directory, such as C:\Program Files\JMF2.1.1. We'll refer to the directory as %JMFDIR%. Verify that your CLASSPATH and PATH have been configured properly. During installation, InstallShield should automatically set up your CLASSPATH and PATH. set CLASSPATH=%JMFDIR%\lib\jmf.jar;%JMFDIR%\lib\sound. jar;.;%CLASSPATH% ...

16. seekbar using JMF    java-forums.org

Hi, Using JMF i have created a music player. When i move the seekbar knob the song starts playing from that particular point but it is not moving when the song is playing,only when i drag the seekbar it plays from that point. so please guide me how to make the seek bar to move along with the song. Reply me ...





17. Play avi file in JMF    java-forums.org

18. Video using JMF    java-forums.org

Hi, Not sure if I found the correct forum to post this question, but after reading alot about JMF and playing with it a little, I have a question regarding the "Player" and a full screen window. It seems that the visual component of JMF displays (and works) correctly when displayed in a JFrame on the desktop (not fullscreen window). But ...

19. JMF: Trying to detect webcam..help!    java-forums.org

Hello, first of all sorry if this is in the wrong forum, this is the closest thing I could find! I'm trying to detect my webcam using JMF (using ubuntu). The webcam is a Microsoft lifecam. I've downloaded the cross-platform JMF thing from the oracle site however when I try and detect capture devices using jmfregistry I only get some weird ...

20. newbie to JMF, need tutorial!    forums.oracle.com

Hello all, I am new using java media framework. I was wondering are there any good tutorial that get me a start? I was trying to search for it, and have no success. In particular, I want to know how to get a player up, and I would like to mask the video with a shape. I try to look for ...

21. Problem in inbuilt Web-camera using JMF    forums.oracle.com

Hi, I am using JavaTM Media Framework 2.1.1e downloaded from below link in my application. http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-java-client-419417.html#7372-jmf-2.1.1e-oth-JPR . Main functionality of my app is to use Web-camera. My application is working fine on Windows XP and Windows 7 using external Web-Cam device. However, the same application is giving problem in accessing in-built Webcam on Windows 7. I tried to access in-built Web-Camera ...