5

如何将 MPEG4 数据写入(包装)到 android 中的 MP4 文件中?

我正在android平台上进行某种视频处理,但我不知道如何将处理后的数据(以某种标准编码,如MPEG4)写回mp4等视频文件中。我认为最好使用 API 来执行此操作,但我找不到所需的 API。

有没有人有任何想法?

4

4 回答 4

2

mp4parser 只能使用完全创建的帧流,你不能用它逐帧写入。如我错了请纠正我

H264TrackImpl h264Track = new H264TrackImpl(new BufferedInputStream(some input stream here));
Movie m = new Movie();
IsoFile out = new DefaultMp4Builder().build(m);
File file = new File("/sdcard/encoded.mp4");
FileOutputStream fos = new FileOutputStream(file);
out.getBox(fos.getChannel());
fos.close();

现在我们需要知道如何在那里逐帧写入。

于 2013-05-14T10:50:58.363 回答
1

OpenCV对于这份工作来说可能有点太多了,但我想不出更容易的事情了。OpenCV 是一个为 C、C++ 和 Python 提供 API 的计算机视觉库。

由于您使用的是 Android,因此您必须为 OpenCV 下载名为JavaCV的 Java 包装器,它是第 3 方 API。我写了一篇小文章,其中包含在 Windows 上安装 OpenCV/JavaCV并将其与 Netbeans 一起使用的说明,但最后您必须搜索说明如何为 Android 平台安装 OpenCV/JavaCV 的教程。

这是一个 C++ 示例,展示了如何打开输入视频并将帧复制到输出文件。但由于您使用的是 Android,因此使用 JavaCV 的示例更好,因此以下代码从输入视频复制帧并将其写入名为的输出文件out.mp4

package opencv_videowriter;

import static com.googlecode.javacv.cpp.opencv_core.*;
import static com.googlecode.javacv.cpp.opencv_imgproc.*;
import static com.googlecode.javacv.cpp.opencv_highgui.*;

public class OpenCV_videowriter 
{
    public static void main(String[] args) 
    {
        CvCapture capture = cvCreateFileCapture("cleanfish47.mp4");
        if (capture == null)
        {
            System.out.println("!!! Failed cvCreateFileCapture");
            return;
        }

        int fourcc_code = (int)cvGetCaptureProperty(capture, CV_CAP_PROP_FOURCC);
        double fps = cvGetCaptureProperty(capture, CV_CAP_PROP_FPS);
        int w = (int)cvGetCaptureProperty(capture, CV_CAP_PROP_FRAME_WIDTH);
        int h = (int)cvGetCaptureProperty(capture, CV_CAP_PROP_FRAME_HEIGHT);

        CvVideoWriter writer = cvCreateVideoWriter("out.mp4",       // filename
                                                    fourcc_code,    // video codec
                                                    fps,            // fps
                                                    cvSize(w, h),   // video dimensions
                                                    1);             // is colored
        if (writer == null) 
        {
            System.out.println("!!! Failed cvCreateVideoWriter");

            return;
        }


        IplImage captured_frame = null;        
        while (true)
        {
            // Retrieve frame from the input file
            captured_frame = cvQueryFrame(capture);
            if (captured_frame == null)
            {
                System.out.println("!!! Failed cvQueryFrame");
                break;
            }


            // TODO: write code to process the captured frame (if needed)


            // Store frame in output file
            if (cvWriteFrame(writer, captured_frame) == 0) 
            {
                System.out.println("!!! Failed cvWriteFrame");
                break;
            }

        }

        cvReleaseCapture(capture);
        cvReleaseVideoWriter(writer);        
    }
}

注意:OpenCV 中的帧以BGR顺序存储像素。

于 2012-11-19T12:13:21.433 回答
0

你的问题没有 100% 的意义。MPEG-4 是一系列规范(所有 ISO/IEC 14496-*),MP4 是 ISO/IEC 14496-14 中指定的文件格式。

如果您想从原始 AAC 和/或 H264 流创建 MP4 文件,我建议使用mp4parser库。有一个示例展示了如何将 AAC 和 H264 复用到 MP4 文件中。

于 2012-12-30T02:15:31.943 回答
0
// Full working solution:
// 1. Add to app/build.gradle -> implementation 'com.googlecode.mp4parser:isoparser:1.1.22'
// 2. Add to your code:
try {
    File mpegFile = new File(); // ... your mpeg file ;
    File mp4file = new File(); // ... you mp4 file;
    DataSource channel = new FileDataSourceImpl(mpegFile);
    IsoFile isoFile = new IsoFile(channel);
    List<TrackBox> trackBoxes = isoFile.getMovieBox().getBoxes(TrackBox.class);
    Movie movie = new Movie();
    for (TrackBox trackBox : trackBoxes) {
        movie.addTrack(new Mp4TrackImpl(channel.toString()
                + "[" + trackBox.getTrackHeaderBox().getTrackId() + "]", trackBox));
    }
    movie.setMatrix(isoFile.getMovieBox().getMovieHeaderBox().getMatrix());
    Container out = new DefaultMp4Builder().build(movie);

    FileChannel fc = new FileOutputStream(mp4file).getChannel();

    out.writeContainer(fc);
    fc.close();
    isoFile.close();
    channel.close();

    Log.d("TEST", "file mpeg " + mpegFile.getPath() + " was changed to " + mp4file.getPath());

    // mpegFile.delete(); // if you wish!

} catch (Exception e) {
    e.printStackTrace();
}

// It's all! Happy coding =)
于 2019-12-10T13:18:01.877 回答