Added nostats

This commit is contained in:
bskjon 2025-03-19 23:48:03 +01:00
parent 671b367957
commit 513815a9c5
2 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,7 @@ package no.iktdev.mediaprocessing.processer.ffmpeg
class FfmpegArgumentsBuilder() { class FfmpegArgumentsBuilder() {
private val defaultArguments = listOf( private val defaultArguments = listOf(
"-nostdin", "-nostdin",
"-nostats",
"-hide_banner" "-hide_banner"
) )
private var inputFile: String? = null private var inputFile: String? = null

View File

@ -212,7 +212,6 @@ class EncodeService(
) )
try { try {
log.info { "Reporting encode progress ${Gson().toJson(processerEventInfo)}" } log.info { "Reporting encode progress ${Gson().toJson(processerEventInfo)}" }
} catch (e: Exception) { } catch (e: Exception) {
e.printStackTrace() e.printStackTrace()
} }