www in docker support
This commit is contained in:
parent
539a848e95
commit
c227fce036
2145 changed files with 399596 additions and 58 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue