Обрезка видео с помощью mp4Parser

Я пытаюсь обрезать или обрезать видео в течение определенного времени, Пример:- Видео-1, которое имеет 30-секундную обрезку до Видео-2 за 10 с (от 0,10 с до 0,20 с). Я могу сделать это и могу воспроизвести это видео, но в конце видео выдает ошибку, говоря: Sorry! cant play this video.

public static void main(String args) throws IOException {

        Movie movie = new MovieCreator()
                .build(new RandomAccessFileIsoBufferWrapperImpl(
                        new File(
                                "/sdcard/Videos11/"+args+".mp4")));

        List<Track> tracks = movie.getTracks();
        movie.setTracks(new LinkedList<Track>());
        // remove all tracks we will create new tracks from the old

        double startTime = 3.000;
        double endTime = 9.000;

        boolean timeCorrected = false;

        // Here we try to find a track that has sync samples. Since we can only
        // start decoding
        // at such a sample we SHOULD make sure that the start of the new
        // fragment is exactly
        // such a frame
        for (Track track : tracks) {
            if (track.getSyncSamples() != null
                    && track.getSyncSamples().length > 0) {
                if (timeCorrected) {
                    // This exception here could be a false positive in case we
                    // have multiple tracks
                    // with sync samples at exactly the same positions. E.g. a
                    // single movie containing
                    // multiple qualities of the same video (Microsoft Smooth
                    // Streaming file)

                    throw new RuntimeException(
                            "The startTime has already been corrected by another track with SyncSample. Not Supported.");

            }
        }

        for (Track track : tracks) {
            long currentSample = 0;
            double currentTime = 0;
            long startSample = -1;
            long endSample = -1;

            for (int i = 0; i < track.getDecodingTimeEntries().size(); i++) {
                TimeToSampleBox.Entry entry = track.getDecodingTimeEntries().get(i);
                for (int j = 0; j < entry.getCount(); j++) {
                    // entry.getDelta() is the amount of time the current sample
                    // covers.

                    if (currentTime <= startTime) {
                        // current sample is still before the new starttime
                        startSample = currentSample;
                    }
                    if (currentTime <= endTime) {
                        // current sample is after the new start time and still
                        // before the new endtime
                        endSample = currentSample;
                    } else {
                        // current sample is after the end of the cropped video
                        break;
                    }
                    currentTime += (double) entry.getDelta()
                            / (double) track.getTrackMetaData().getTimescale();
                    currentSample++;
                }
            }
            movie.addTrack(new CroppedTrack(track, startSample, endSample));
        }

        IsoFile out = new DefaultMp4Builder().build(movie);

        String filePath = "sdcard/test"+i+".mp4";
        i++;
        File f = new File(filePath);
        FileOutputStream fos = new FileOutputStream(f);
        BufferedOutputStream bos = new BufferedOutputStream(fos, 65535);
        out.getBox(new IsoOutputStream(bos));
        bos.close();
        fos.close();

    }

PS:-Я не очень знаком с этим кодом, но кое-как, как я могу обрезать видео, но он показывает ошибку в прошлом.

2 ответа

Вам следует "нормализовать" ваши начальные и конечные значения, чтобы они соответствовали образцам синхронизации mp4, иначе вы получите некоторые сбои в выходном видео или даже поврежденном файле.

Пожалуйста, посмотрите на correctTimeToSyncSample метод:

  1. Исходник галереи Android (я думаю, использует mp4parser 0.9.x)
  2. Мой пример проекта (использует mp4parser 1.1.18).
private static double correctTimeToSyncSample(Track track, double cutHere, boolean next) {
    double[] timeOfSyncSamples = new double[track.getSyncSamples().length];
    long currentSample = 0;
    double currentTime = 0;
    for (int i = 0; i = 0) {
            timeOfSyncSamples[Arrays.binarySearch(track.getSyncSamples(), currentSample + 1)] = currentTime;
        }
        currentTime += (double) delta / (double) track.getTrackMetaData().getTimescale();
        currentSample++;
    }
    double previous = 0;
    for (double timeOfSyncSample : timeOfSyncSamples) {
        if (timeOfSyncSample > cutHere) {
            if (next) {
                return timeOfSyncSample;
            } else {
                return previous;
            }
        }
        previous = timeOfSyncSample;
    }
    return timeOfSyncSamples[timeOfSyncSamples.length - 1];
}

Использование:

for (Track track : tracks) {
    if (track.getSyncSamples() != null && track.getSyncSamples().length > 0) {
        if (timeCorrected) {
            throw new RuntimeException("The startTime has already been corrected by another track with SyncSample. Not Supported.");
        }
        startTime = correctTimeToSyncSample(track, startTime, false);
        endTime = correctTimeToSyncSample(track, endTime, true);
        timeCorrected = true;
    }
}

Возможно, позиция, которую вы хотите вырезать, находится в середине Ифраме. Я сталкиваюсь с подобной проблемой. Я не могу вырезать именно там, где я хочу, потому что в начале видео я получаю плохие кадры. Вы получили плохие кадры в начале обрезанного видео?

Другие вопросы по тегам