반응형
GSTREAMER h263 엔코딩 파이프라인 실행중 에러
지스트리머 파이프라인 h263 플러그인 에러
다음은 h263 으로 엔코딩하는 Gstreamer 파이프라인이다. avenc_h263p 플러그인을 찾을 수 없다는 에러가 발생하고 있다.
$ gst-launch-1.0 \
videotestsrc is-live=true do-timestamp=true num-buffers=50 ! \
'video/x-raw, format=(string)YUY2, width=(int)1280, height=(int)720 ! \
videoconvert ! queue ! avenc_h263p ! fakesink sync=true
WARNING: erroneous pipeline: no element "avenc_h263p"
터미널에서 apt 명령어로 gstremer1.0-libav 를 설치하면 avenc_h263p 플러그인이 설치 된다.
$ sudo apt-get install gstreamer1.0-libav
참고자료
libav h263p encoder 플러그인 페이지
https://gstreamer.freedesktop.org/documentation/libav/avenc_h263p.html
반응형
'프로그래밍 > GLibㆍGTKㆍGstreamer' 카테고리의 다른 글
Gstreamer Python : mp4 filesrc 예제 구현하기 (0) | 2023.02.02 |
---|---|
Gstreamer Python : factory 파이프라인 구현하기 (1) | 2023.02.02 |
Gstreamer Python : pipeline 예제 (0) | 2023.02.02 |
윈도우 GNU, MSYS2 개발환경 구축 (0) | 2022.12.03 |
gtk 프로그래밍 ini 설정파일 파싱 예제 (0) | 2022.11.12 |
Gstreamer 로 Jetson 에서 라즈베리파이v2 카메라 테스트 (0) | 2022.07.01 |
GSTShark 로 Gst-reamer pipeline 프로파일링 (0) | 2022.05.30 |
Hikvision RTSP gst-reamer 파이프라인 (0) | 2022.03.18 |