avconv 대신 ffmpeg 사용

avconv 대신 ffmpeg 사용

사용하려는 bash 스크립트가 2개 있는데 avconv가 필요합니다.

스크립트를 실행하면 오류가 발생합니다.

bash: avconv: command not found

그런데 pacman이나 cower에서 avconv를 어디서 찾을 수 있는지 모르기 때문에 ffmpeg를 사용하도록 스크립트를 변경할 수 있는지 궁금합니다.

이건 내 스크립트야

stream.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

관련 정보