如何在 shell 脚本中运行此命令

发布于 2024-10-12 21:47:53 字数 722 浏览 5 评论 0原文

这是我的 shell 脚本,但它给出了错误:

#!/bin/sh

while getopts "i:o:" flag
do
   case $flag in
   i) file_input=$OPTARG
   ;;
   o) file_output=$OPTARG
   ;;
   esac
done

mplayer -nosound -benchmark -vo yuv4mpeg:file=>(x264 --demuxer y4m \
              --crf 20 --threads auto --output $file_output - ) $file_input

错误消息是:

无法获取内存或文件句柄来写入“>(x264 --demuxer y4m --crf 20 --threads auto --output video.264 - )”!致命:无法初始化视频驱动程序。

当我在 putty 上运行这个命令时:

mplayer -nosound -benchmark -vo yuv4mpeg:file=>(x264 --demuxer y4m \
              --crf 20 --threads auto --output video.264 - ) video.wmv

它工作得很好..

我做错了什么?

This is my shell script but it gives errors:

#!/bin/sh

while getopts "i:o:" flag
do
   case $flag in
   i) file_input=$OPTARG
   ;;
   o) file_output=$OPTARG
   ;;
   esac
done

mplayer -nosound -benchmark -vo yuv4mpeg:file=>(x264 --demuxer y4m \
              --crf 20 --threads auto --output $file_output - ) $file_input

The error message is:

Can't get memory or file handle to write ">(x264 --demuxer y4m --crf 20 --threads auto --output video.264 - )"!FATAL: Cannot initialize video driver.

When I run this cmd on putty:

mplayer -nosound -benchmark -vo yuv4mpeg:file=>(x264 --demuxer y4m \
              --crf 20 --threads auto --output video.264 - ) video.wmv

it works perfectly..

What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

前事休说 2024-10-19 21:47:53

您使用的命令使用复杂的 bash 的 管道流到子 shell 语法,即 >() 来实现你想要的。也许您的 /bin/sh (您在 shebang 中作为此脚本的 shell 调用)与您交互使用的 shell(即 bash)不同?

The command you're using uses an intricate bash's pipe stream to subshell syntax, i.e. >() to achieve what you want. Probably your /bin/sh (that you invoke as a shell for this script in shebang) is not the same as the shell you're using interactively (i.e. bash)?

谎言月老 2024-10-19 21:47:53

>(...) 进程替换运算符是 Bash 特定的。如果 Bash 被称为 /bin/sh,它也不可用,因为在这种情况下,Bash 将自身限制为更兼容的功能子集。

只需在脚本开头使用 #!/bin/bash 而不是 #!/bin/sh 即可。

The >(...) process substitution operator is Bash-specific. It is also not available if Bash is called as /bin/sh, because in that case Bash restricts itself to a more compliant subset of its features.

Just use #!/bin/bash instead of #!/bin/sh at the start of your script.

南渊 2024-10-19 21:47:53

我建议您添加一些 ' 来保护您的特殊字符:

mplayer -nosound -benchmark -vo 'yuv4mpeg:file=>(x264 --demuxer y4m --crf 20 --threads auto --output $file_output - )' $file_input

I suggest you to add some ' to protect you special chars:

mplayer -nosound -benchmark -vo 'yuv4mpeg:file=>(x264 --demuxer y4m --crf 20 --threads auto --output $file_output - )' $file_input
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文