1

我即将编写一个程序,可以将 .rgb 视频文件作为输入,并指定他的 fps 并播放出来。但是不使用JMF包我怎么能达到这个目的,因为我觉得这个程序的意思是知道逐帧是如何工作的,所以我决定使用BufferedImage作为我的工具来实现这个程序,但我还是不知道它是如何在视频上工作的(逐帧)。

这是TA给我们的入门代码:我尝试了很多东西,但是两帧之间的延迟非常明显,我不知道为什么。是否有任何有效的方法可以在不使用任何 JMF 包的情况下逐帧播放视频。

import java.awt.*;
import java.awt.image.*;
import java.io.*;
import javax.swing.*;


public class imageReader {


    public static void main(String[] args) {
        String fileName = args[0];
        int width = Integer.parseInt(args[1]);
        int height = Integer.parseInt(args[2]);

        BufferedImage img = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);

        try {
            File file = new File(fileName+".rgb");
            InputStream is = new FileInputStream(file);
            //BufferedInputStream bis = new BufferedInputStream(is);

            long len = file.length();  //bytes in one frame (consist of R,G,B frame)
            byte[] bytes = new byte[10000000];

            int offset = 0;
            int numRead = 0;
            while (offset < bytes.length && (numRead=is.read(bytes, offset, bytes.length-offset)) >= 0) {
                offset += numRead;
            }
            System.out.println("\noffset = "+ offset);   //7603200
            System.out.println("numRead = "+ numRead);   //7603200
            System.out.println("file length: " + len);   //7603200
            System.out.println("frame #: "+ (offset/(width*height*3))); //100

            JFrame frame = new JFrame();  
            frame.setVisible(true);

            int ind = 0;
            int f = 1;

            while(ind < offset){
                for(int y = 0; y < height; y++){

                    for(int x = 0; x < width; x++){

                        byte a = 0;
                        byte r = bytes[ind];
                        byte g = bytes[ind+height*width];
                        byte b = bytes[ind+height*width*2]; 

                        int pix = 0xff000000 | ((r & 0xff) << 16) | ((g & 0xff) << 8) | (b & 0xff);
                        //int pix = ((a << 24) + (r << 16) + (g << 8) + b);
                        img.setRGB(x,y,pix);
                        ind++;
                    }
                }
                JLabel label = new JLabel(new ImageIcon(img));  
                frame.getContentPane().add(label, BorderLayout.CENTER);  
                frame.pack();  
                System.out.println("frame #: "+ ind);
            }

            System.out.print("end");

        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

        // Use a label to display the image
        /*JFrame frame = new JFrame();
         *JLabel label = new JLabel(new ImageIcon(img));
         *frame.getContentPane().add(label, BorderLayout.CENTER);
         *frame.pack();
         *frame.setVisible(true);
         **/

    }

}

这段代码出了什么问题??

4

0 回答 0