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

How to load media resources from the classpath in JMF

I have a Java application that I want to turn into an executable jar. I am using JMF in this application, and I can't seem to get the sound files working right... I create the jar using jar cvfm jarname.jar manifest.txt *.class *.gif *.wav So, all…
Pojo
  • 1,229
  • 4
  • 16
  • 26
3
votes
2 answers

How to capture video with audio from webcam in Processing

I'm trying to capture video with audio from a webcam using Processing. I'm able to capture video using Processing's video library but there's no way of capturing audio along the video with that library. There is a separate library for working with…
protoboard
  • 31
  • 1
  • 3
3
votes
1 answer

fobs4jmf.dll Error in Java Swing playing .avi videos

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 always, the native code crashes the application. I…
3
votes
1 answer

Looking For JMF h.264/rtp encoder&decoder plug-in

I'm using jmf for transmitting video stream,JPEG_RTP codec works, but rtp packet sizes too big. so I am looking for h.264_RTP encoder/decoder plugin for jmf.
3
votes
0 answers

Create movie from stream of jpeg files in Java

I am working on a software that receives an MJPEG stream from an IP camera and displays it on the screen. Now I'd like to record the stream at the same time in some movie format. I'm still quite new to Java and got a little lost in the jungle of…
3
votes
2 answers

Reading raw data from a video capture in JMF

I'm trying to read raw video frames from a video capture device using JMF - the Java Media Framework. I've successfully written the "capture" part - using a Player object created by Manager, I can display realtime video from a webcam. I don't know…
aib
  • 45,516
  • 10
  • 73
  • 79
3
votes
2 answers

What is the best approach to develop a video chat web application in Java? Flex or JMF?

Currently we are in the design phase of an application that will allow two users to communicate with each other using chat and video (with audio), the application is a web application that currently is a java web app with Spring and hibernate, but…
Leo
  • 67
  • 2
  • 12
3
votes
4 answers

Show video to JPanel

I am creating a simple video player but I'm having problem to show the video file to stream in JPanel. I've created and designed a JFrame and put a square size JPanel inside the form. Here is my codes so far: package SoundsTrip; import…
Kristine Sarah Tan
  • 99
  • 1
  • 1
  • 11
3
votes
1 answer

Is it possible to use JMF in Android?

The reason why I want to use JMF in Android is to send out RTP from Android. Is there a good way to do that?
limitfan
  • 900
  • 1
  • 8
  • 20
3
votes
1 answer

How do I fix this buffer issue?

Basically I don't know what to do... I downloaded the JMF library and inserted the library into the project. It was working fine until I came across this problem. Let me know what you think. Thanks!!! Zev
Zeveso
  • 1,274
  • 3
  • 21
  • 41
3
votes
2 answers

Movie ended on JMF,now terminate program

I want my program to terminate itself once the movie played has ended, using system.exit(0). is there a way of doing that? I dont want to use Timer.
Itzik984
  • 15,968
  • 28
  • 69
  • 107
3
votes
2 answers

where can i find Java JMF tutorial

I'd like to know about basic classes for playing video from webcam I'd also like to play with video buffers pixels where can i find a Java JMF tutorial that will help me achieve that?
Eric
  • 19,525
  • 19
  • 84
  • 147
3
votes
1 answer

Video Streaming in Android

I have made an Application in Java that transmits video (JMF= "JAVA MEDIA FRAMEWORK"). Now I want an Android client for receiving video. What steps do i follow to make such client. I have seen that JMF doesnt work on Android. I want to know…
vschool
  • 31
  • 2
3
votes
1 answer

QuickTime RTSP/RTP over HTTP and Java

I have a webcam. I can work with it using RTSP/RTP over HTTP tunneling (because only port 80 is opened for me). QuickTime player plays video. I want to catch this video and save it to disc in AVI container using java. Can I use JMF? Does it support…
3
votes
1 answer

how to establish video conference feature in java web application

I was developing an web application in Java. In that application I have a requirement to develop video conference feature for allowing client to have video chat with company representative. I have done a little research and found Java Media…
1 2
3
25 26