subkt / myaa.subkt.tasks / Merge / from
fun from(vararg files:
Any
, action:
Merge.MergeSpecification
.() ->
Unit
= {}):
Unit
(source)
Adds files to merge.
from("file1.ass", "file2.ass") {
shiftBy(Duration.ofSeconds(10))
}
files
- The files to merge.
action
- A closure operating on a MergeSpecification instance
for customizing how the given files should be merged.