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

Security of Video on JSP

I am a java developer. I am able to play video on jsp page via JMF(Java Media Framework) and other flash players. Also able to download that video file. Now I want to add some extra security features. A watermark should be visible when video is…
0
votes
1 answer

Webcam cannot find a Player for :vfw://0

I'm tryin to take a picture in my webcam, I'm just starting to use JMF I just need to take a picture with a webcam and save it to a specified directory I'm using this code import java.awt.Component; import javax.media.Manager; import…
0
votes
0 answers

java MediaPlayer doesn't release resource

I use javax.media.Player to player video in java Swing and it works just right. But when I need to delete a video just played, it prompts that the video is occupied by some program, surely the MediaPlayer. Anybody can teach me how to release…
Underthesun
  • 125
  • 2
  • 11
0
votes
1 answer

Video Mixing Options

I am working on a bigger project of video-wall and want to display multiple sources of videos on a single display. something like this -- What are all my options? Java with JMF Python with GStreamer bindings Before committing to a technology, I…
Vineet Menon
  • 728
  • 2
  • 9
  • 25
0
votes
0 answers

Adding Video to Desktop App

I'm working on a project for a programming class, and I want to add a video file. I've tried using JMF, except when I try to play a video (using one of the formats listed on the Java website), it gives me the error: Unable to handle format: XVID,…
Aaron
  • 992
  • 3
  • 15
  • 33
0
votes
1 answer

Couldnt read the video that is captured by JMF framework

I used JMF framework to capture the video from a web cam and storing it to the local directory as ".mov" file. I couldnt play the stored video in other machines, where as I can play the video in my machine. I can play it in VLC player in other…
2vision2
  • 4,933
  • 16
  • 83
  • 164
0
votes
2 answers

Play MP4 video using JMF

How to play MP4 video using JMF? I am creating Java application. I want to play MP4 file using JMF. I tried to play MP4 file but it throws exception Could not create player for filename.mp4 Mpg format working fine for me. But I have only MP4…
Manoj
  • 3,947
  • 9
  • 46
  • 84
0
votes
0 answers

Jar file failed to run when exported from MyEclipse

I have written a program which I used Java Media Framework (JMF) Library to capture video from camera and display the video, when I run the program in Eclipse it work will, but when I export the program as runnable jar file, then the program cannot…
Bahramdun Adil
  • 5,907
  • 7
  • 35
  • 68
0
votes
4 answers

Setting up JMF in Windows 7 64 bit

I have searched high and low trying to figure out how to get this stupid thing working. I downloaded, and ran, the Windows installer for JMF and set both my PATH and CLASSPATH environmental variables to the following: Note this is under User…
jhammond
  • 1,916
  • 2
  • 15
  • 29
0
votes
1 answer

How to interrupt an audio rtp session in JMF?

Good evening, I am implementing a JMF project which runs 2 rtp session on the same computer. The rtp session can be initialize and start, but how can I interrupt one of them. Instead of don't run 2 rtp session on the same computer, is there a way…
薛源少
  • 306
  • 1
  • 6
  • 18
0
votes
1 answer

web cam is not identified by jmf

i used jmf jar file to run my web cam. here my code.It doesnt show my web cam when run this code? can anyone give me a solution ? Thanks CaptureDeviceInfo di = CaptureDeviceManager.getDevice("vfw:Microsoft WDM Image Capture (Win32):0";); ml =…
sujan duminda
  • 31
  • 1
  • 6
0
votes
2 answers

How to remove vocal from a sound track prefereably mp3

Did anyone ever tried or worked on an app that removes vocal data from the mp3 file leaving the midi/the background music track. Is there any open source lib for that to accomplish and how far this is attainable. Appreciate the ideas if any. Thanks…
amj
  • 367
  • 1
  • 8
  • 26
0
votes
1 answer

Merge webcam stream and a video file and send the result by RTP or RTSP

Hi, We are students working on a Java project where we have to: Capture the video stream from a webcam Merge this stream with a video file (we take the average of colors of each pixel, so the two streams are superimposed) Transmit the result of…
0
votes
1 answer

How to make java JMF work to make a video using multiple images?

I'm trying to use JMF to make a video using multiple jpg images. These images are also saved using ImageIO of Java itself. Unfortunately, I cannot find a code sample or a working code/class to accomplish make the video using JMF. There was a…
jeet
  • 745
  • 3
  • 10
  • 15
0
votes
2 answers

Embedding a video in my Java GUI

I have made a simple game, it is a state based game meaning I have many different states (screens) such as the start-up screen, menu screen and the actual game, my menu screen is boring at the moment and I want a portion of it to be a video without…
Rahul Khosla
  • 349
  • 9
  • 21