JMF中的视频效果

时间:2011-10-21 09:04:19

标签: java video-processing jmf

我已经成功使用JMF在Java中创建了一个临时视频播放器。源代码如下。我想为它添加视频效果,例如使用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());
        }
    }
}

1 个答案:

答案 0 :(得分:1)

嗨,这是我在任何论坛的第一篇文章,对于错误感到抱歉。

附加使用“处理器”所需的任何视频效果

这是添加处理器并向其添加效果的代码示例:

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){}

the link for the effect class :


重新:

while(p.getState() != p.Configured);
while(p.getState() != p.Realized);
while(p.getState() != p.Prefetched);

在我的程序的这个地方我停止了执行,直到处理器达到状态,但如果状态不可以,那么prigram进入无限循环。 JMF提供了一个StaeHelper类来克服谷歌的问题。