使用 ffmpeg 代替 avconv

使用 ffmpeg 代替 avconv

我有 2 个 bash 脚本,我正在尝试使用它们,它们需要 avconv

当我运行脚本时出现错误

bash: avconv: command not found

但由于我不知道在 pacman 或 cower 中哪里可以找到 avconv,所以我在徘徊是否可以更改脚本以使用 ffmpeg

这是我的脚本

流.sh

#!/bin/bash
avconv -re -v error -fflags +genpts -i "$1" -c copy -f mpegts pipe:1

直播者.sh

#!/bin/bash
livestreamer -O "$1" best | avconv -re -v error -fflags +genpts -i pipe:0 -bsf h264_mp4toannexb -vcodec libx264 -acodec ac3 -f mpegts pipe:1

相关内容