Uses of Class
com.github.kokorin.jaffree.ffmpeg.FFmpegResult
Packages that use FFmpegResult
Package
Description
Classes used to integrate with ffmpeg.
This package contains different utilities used by Jaffree project.
-
Uses of FFmpegResult in com.github.kokorin.jaffree.ffmpeg
Methods in com.github.kokorin.jaffree.ffmpeg that return FFmpegResultModifier and TypeMethodDescriptionprotected FFmpegResultFFmpegResultReader.defaultResult()FFmpeg.execute()Starts synchronous ffmpeg execution.FFmpegResultFuture.get()Waits if necessary for ffmpeg process to complete, and then retrieves its result.Waits if necessary for at most the given time for ffmpeg process to complete, and then retrieves its result, if available.protected FFmpegResultFFmpegResultReader.handleLogMessage(LogMessage logMessage) Parses single ffmpeg/ffprobe log message.Methods in com.github.kokorin.jaffree.ffmpeg that return types with arguments of type FFmpegResultModifier and TypeMethodDescriptionprotected ProcessHandler<FFmpegResult> FFmpeg.createProcessHandler()CreatesProcessHandlerwhich executes ffmpeg command and starts specifiedProcessHelpers.protected StdReader<FFmpegResult> FFmpeg.createStdErrReader(OutputListener listener) CreatesStdReaderwhich is used to read ffmpeg stderr.protected StdReader<FFmpegResult> FFmpeg.createStdOutReader()CreatesStdReaderwhich is used to read ffmpeg stderr.FFmpegResultFuture.toCompletableFuture()Returns a completion that can be used to chain operations after FFmpeg completes, using theCompletionStageJava 8 API.Constructor parameters in com.github.kokorin.jaffree.ffmpeg with type arguments of type FFmpegResultModifierConstructorDescriptionFFmpegResultFuture(CompletableFuture<FFmpegResult> resultFuture, Stopper stopper) CreatesFFmpegResultFuture. -
Uses of FFmpegResult in com.github.kokorin.jaffree.util
Methods in com.github.kokorin.jaffree.util that return FFmpegResultModifier and TypeMethodDescriptionstatic FFmpegResultParseUtil.parseResult(String line) Returns parsedFFmpegResultor null if passed in line contains no ffmpeg result.