www in docker support

This commit is contained in:
MaddoScientisto 2026-04-22 18:41:37 +02:00
commit c227fce036
2145 changed files with 399596 additions and 58 deletions

View file

@ -0,0 +1,23 @@
package org.jcodec.movtool;
import java.util.List;
import org.jcodec.containers.mp4.boxes.MovieBox;
import org.jcodec.containers.mp4.boxes.MovieFragmentBox;
public class CompoundMP4Edit implements MP4Edit {
private List<MP4Edit> edits;
public CompoundMP4Edit(List<MP4Edit> edits) {
this.edits = edits;
}
public void applyToFragment(MovieBox mov, MovieFragmentBox[] fragmentBox) {
for (MP4Edit command : this.edits)
command.applyToFragment(mov, fragmentBox);
}
public void apply(MovieBox mov) {
for (MP4Edit command : this.edits)
command.apply(mov);
}
}