Ffmpeg closes with return code 137

I use ffmpeg to convert the video, and about 66% of the time does not do this work until the end. It simply kills, closes before the task is completed, and returns "137" instead of "0".

I can not find any information about this return code. Does anyone know some tips or where can I find further directions? Thanks

+4
source share
1 answer

137 (128 + 9) means that he was killed by signal 9 ( SIGKILL). Usually this means that something sent ffmpegthis signal, and not that the program crashed on its own.

, , ffmpeg ?

, ffmpeg ulimit ( , SIGKILL, SIGABRT)), ulimit -a .

+4

All Articles