arthenica / ffmpeg-kit

FFmpeg Kit for applications. Supports Android, Flutter, iOS, Linux, macOS, React Native and tvOS. Supersedes MobileFFmpeg, flutter_ffmpeg and react-native-ffmpeg.
https://arthenica.github.io/ffmpeg-kit
GNU Lesser General Public License v3.0
4.34k stars 581 forks source link

Unexpected logging using FFprobeKit with 'ffmpeg-kit-react-native' #1040

Open alecmanfre opened 2 weeks ago

alecmanfre commented 2 weeks ago

Description When running FFprobeKit, I am attempting to suppress any logging, however in my console the entire output gets logged out.

Expected behavior I would expect not to see anything in my console except for things I explicitly log out with console.log. I even am trying to suppress the log level by using "quiet" / -8.

To Reproduce Here is my command: const command = -loglevel -8 -print_format json -show_format -show_streams -select_streams v "${filePath}"; const session = await FFprobeKit.execute(command); const output = await session.getOutput();

Screenshots partial log.

image

Logs Post logs here or paste them to Ghostbin and insert the link here.