ffmpeg出现Segmentation fault (core dumped)错误的解决办法

Segmentation fault (core dumped)错误一般在下载m3u8中最常见,这里就说下在Linux系统中的解决办法。

解决办法

该错误通常就是缺少nscd服务导致的,所以我们需要在SSH客户端使用命令:

#CentOS 7+、AlmaLinux、Rocky Linux系统
yum install nscd -y
systemctl start nscd
systemctl enable nscd

#Debian、Ubuntu系统
apt install nscd -y
systemctl start nscd
systemctl enable nscd

安装完成后,基本上可以解决该问题。

当然如果依然解决不了该问题,那就可能是ffmpeg二进制不太适合你当前系统,建议换一个即可。