ffmpeg使用nohup &在后台运行时挂起问题解决_ffmpeg在后台运行-CSDN博客

ffmpeg 默认情况下启用与 stdin 的交互。在Mac OS X和Linux系统上,这会导致 ffmpeg 在后台运行的作业挂起。

方法一:
如果在指令中添加 -nostdin 选项会导致ffmpeg无法启用stdin交互,因此避免了挂起后台进程。
nohup ffmpeg -nostdin -i 源流地址 -c:v copy -c:v copy -f flv 推流地址 >> /dev/null 2>&1 &
1
方法二:
设置输入重定向 </dev/null
nohup ffmpeg -i 源流地址 -c:v copy -c:v copy -f flv 推流地址 >> /dev/null 2>&1 </dev/null &
1
如果对您有帮助不妨点赞关注一波~
————————————————

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

原文链接:https://blog.csdn.net/qq_37788558/article/details/108218037

ffmpeg使用nohup &在后台运行时挂起问题解决

Source: ffmpeg使用nohup &在后台运行时挂起问题解决_ffmpeg在后台运行-CSDN博客

shell脚本:Syntax error: Bad for loop variable错误解决方法-CSDN博客

错误如下:
Syntax error: Bad for loop variable

分析:
从 ubuntu 6.10 开始,ubuntu 就将先前默认的bash shell 更换成了dash shell;其表现为 /bin/sh 链接倒了/bin/dash而不是传统的/bin/bash。

allen@allen-lql ~/workspace/script $ ls -l /bin/sh
lrwxrwxrwx 1 root root 4 Aug 12 14:29 /bin/sh -> dash

所以在使用sh执行检测的时候实际使用的是dash,而dash不支持这种C语言格式的for循环写法。

解决办法:
1、将默认shell更改为bash。(bash支持C语言格式的for循环)
sudo dpkg-reconfigure dash

在选择项中选No

2、直接使用bash检测:

bash -n xxx.sh

3、为了确保shell脚本的可移植性,直接更改shell脚本,使用shell支持的for循环格式:
for a in `seq $num`

 

refer  :

https://blog.csdn.net/liuqinglong_along/article/details/52191382