Package tv.hd3g.fflauncher
Interface TemporalProcessTraits
- All Superinterfaces:
InternalParametersSupplier
- All Known Implementing Classes:
FFmpeg
-
Method Summary
Modifier and TypeMethodDescriptiondefault voidaddDuration(String duration) When used as an output option (before an output url), stop writing the output after its duration reaches duration.default voidaddEndPosition(String position) Like the -ss option but relative to the "end of file".default voidaddStartPosition(String position) When used as an output option (before an output url), decodes but discards input until the timestamps reach position.default voidaddToDuration(String position) Stop writing the output or reading the input at position.Methods inherited from interface tv.hd3g.fflauncher.InternalParametersSupplier
getInputSources, getInternalParameters
-
Method Details
-
addDuration
When used as an output option (before an output url), stop writing the output after its duration reaches duration. duration must be a time duration specification, see (ffmpeg-utils)the Time duration section in the ffmpeg-utils(1) manual. -
addToDuration
Stop writing the output or reading the input at position. position must be a time duration specification, see (ffmpeg-utils)the Time duration section in the ffmpeg-utils(1) manual. -
addStartPosition
When used as an output option (before an output url), decodes but discards input until the timestamps reach position. position must be a time duration specification, see (ffmpeg-utils)the Time duration section in the ffmpeg-utils(1) manual. -
addEndPosition
Like the -ss option but relative to the "end of file". That is negative values are earlier in the file, 0 is at EOF. position must be a time duration specification, see (ffmpeg-utils)the Time duration section in the ffmpeg-utils(1) manual.
-