我已经设法在Java中使用JMF创建了一个临时视频播放器。源代码如下所示。我想给它附加视频效果,比如将每一帧转换为灰度,并为每一帧添加文本标题,使用JMF。
关于JMF视频效果的信息似乎少得惊人。我该如何创建过滤器(或编解码器,无论它们叫什么)来完成上述任务?
import java.awt.*;
import javax.swing.*;
import javax.media.*;
import javax.media.format.*;
import javax.media.protocol.*;
import javax.media.control.*;
import java.net.URL;
import java.net.MalformedURLException;
import java.io.*;
public class MediaPlayer extends JFrame
{
public MediaPlayer()
{
}
public static void main (String[] args)
{
JFrame frame = new JFrame();
frame.setLayout(new BorderLayout());
try {
URL mediaURL = new File("video.avi").toURI().toURL();
Player mediaPlayer = Manager.createRealizedPlayer(mediaURL);
Component video = mediaPlayer.getVisualComponent();
Component controls = mediaPlayer.getControlPanelComponent();
frame.add(video,BorderLayout.CENTER);
frame.add(controls,BorderLayout.SOUTH);
frame.setVisible(true);
}
catch (MalformedURLException e) {
System.out.println(e.toString());
}
catch (IOException e) {
System.out.println(e.toString());
}
catch (NoPlayerException e) {
System.out.println(e.toString());
}
catch (CannotRealizeException e) {
System.out.println(e.toString());
}
}
}
你好,这是我在任何论坛上的第一个帖子,很抱歉犯了错误。
附加任何视频效果,你需要使用"processor"
下面是一个添加处理器和添加效果的代码示例:String strDevName = "your Media MRL";
CaptureDeviceInfo devInfo = CaptureDeviceManager.getDevice(strDevName);
MediaLocator ml = devInfo.getLocator();
DataSource ds;
Processor p;
try{
ds = Manager.createDataSource( ml);
p = Manager.createProcessor(ds);
p.configure();
while(p.getState() != p.Configured);
p.setContentDescriptor(null);
TrackControl[] controls = p.getTrackControls();
controls[0].setFormat(new VideoFormat( VideoFormat.YUV ));//Specify the Video format of the video specified in the MRL
Codec codec[]= { new comp311.jmf.effect.GreyEffect() };//class GrayEffect is a implementation of javax.media.Effect (the link for the class given below)
controls[0].setCodecChain(codec);
p.realize();
while(p.getState() != p.Realized);
p.prefetch();
while(p.getState() != p.Prefetched);
video = p.getVisualComponent();
if ( video != null ) {System.out.println("Prefetched2");
pnlVideo.add( video, BorderLayout.CENTER );//pnlVideo is a JPanel
p.start();
}
}catch(Exception e){}
效果类的链接:
re:
while(p.getState() != p.Configured);
while(p.getState() != p.Realized);
while(p.getState() != p.Prefetched);
在我的程序的这个地方,我停止了强制执行,直到处理器达到一个状态,但是如果这个状态不能达到,那么程序就会进入一个无限循环。JMF给出了一个StaeHelper类来解决这个问题。