Uses of Interface
com.github.kokorin.jaffree.process.StdReader
Packages that use StdReader
Package
Description
Classes used to integrate with ffmpeg.
Classes used to integrate with ffprobe.
Claases used to integrate with
Process.-
Uses of StdReader in com.github.kokorin.jaffree.ffmpeg
Classes in com.github.kokorin.jaffree.ffmpeg that implement StdReaderModifier and TypeClassDescriptionclassFFmpegResultReaderreads ffmpeg stderr output, parsesFFmpegProgressandFFmpegResultand passes unparsed output toOutputListener(if provided).Methods in com.github.kokorin.jaffree.ffmpeg that return StdReaderModifier and TypeMethodDescriptionprotected 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. -
Uses of StdReader in com.github.kokorin.jaffree.ffprobe
Classes in com.github.kokorin.jaffree.ffprobe that implement StdReaderModifier and TypeClassDescriptionclassFFprobeLogReaderreads ffprobe output (from stderr), parses logs and sends logs to SLF4J with corresponding log level.classMethods in com.github.kokorin.jaffree.ffprobe that return StdReaderModifier and TypeMethodDescriptionprotected StdReader<FFprobeResult> FFprobe.createStdErrReader()CreatesStdReaderwhich is used to read ffprobe stderr.protected StdReader<FFprobeResult> FFprobe.createStdOutReader(FormatParser formatParser) CreatesStdReaderwhich is used to read ffprobe stdout. -
Uses of StdReader in com.github.kokorin.jaffree.process
Classes in com.github.kokorin.jaffree.process that implement StdReaderModifier and TypeClassDescriptionclassBaseStdReaderreads std output, parses result and logs, and sends logs to SLF4J with corresponding log level.classStdReaderimplementation which reads and ignores bytes read.classStdReaderimplementation which reads and logs everything been read.Methods in com.github.kokorin.jaffree.process with parameters of type StdReaderModifier and TypeMethodDescriptionProcessHandler.setStdErrReader(StdReader<T> stdErrReader) Sets stderr reader.ProcessHandler.setStdOutReader(StdReader<T> stdOutReader) Sets stdout reader.