Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- c언어 정적변수
- 성적평균
- 삼성 B형
- Python
- SKT FLYAI
- 소프티어
- c언어 라이프타임
- c언어 스코프
- GStreamer 튜토리얼
- nodejs 기초
- GStreamer tutorial
- 삼성전자 #영상디스플레이사업부 # VD사업부 #면접후기
- C++
- 통근버스 출발 순서 검증하기
- 플레이페어 암호
- 사물인식 최소 면적 산출 프로그램
- Spakrfun Edge
- c언어 지역변수
- 수퍼컴퓨터 클러스터
- MacOS 설치
- softeer
- Sparkfun Edge Example
- C++해설
- GStreamer
- 코테기출
- c언어 전역변수
- Sparkfun Edge 프로젝트
- 코딩테스트 기출
- 지도 자동 구축
- c언어 static
Archives
- Today
- Total
mulll
[GStreamer] Ubuntu 설치 본문
메인 페이지: https://mulll.tistory.com/23
Run the following command:
아래의 명령을 Terminal 창에 입력한다.
apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libgstreamer-plugins-bad1.0-dev gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav gstreamer1.0-doc gstreamer1.0-tools gstreamer1.0-x gstreamer1.0-alsa gstreamer1.0-gl gstreamer1.0-gtk3 gstreamer1.0-qt5 gstreamer1.0-pulseaudio
튜토리얼 수행
튜토리얼의 코드는 Github에 examples/tutorials 에서 모두 볼 수 있다.
git clone https://gitlab.freedesktop.org/gstreamer/gst-docs
튜토리얼을 수행하기 위해 /gst-docs/examples/tutorials/ 폴더 내에 basic-tutorial-1.c 소스 코드를 컴파일 후 실행시켜보자.
cd gst-docs/examples/tutorials/
gcc basic-tutorial-1.c -o basic-tutorial-1 `pkg-config --cflags --libs gstreamer-1.0`
`pkg-config --cflags --libs gstreamer-1.0` 에는 GStreamer 소스 코드에 컴파일과 링크에 필요한 라이브러리와 헤더파일의 PATH를 가진다.
실행
./basic-tutorial-1
결과
이와 같은 영상이 재생되면 성공이다.
출처: https://gstreamer.freedesktop.org/documentation/installing/on-linux.html?gi-language=c
'GStreamer' 카테고리의 다른 글
[GStreamer] 기본 튜토리얼 2 - GStreamer 개념 (0) | 2023.01.07 |
---|---|
[GStreamer] 기본 튜토리얼 1 - Hello World Screen을 띄어보자 (0) | 2023.01.07 |
[GStreamer] MacOS 설치 (0) | 2023.01.05 |
[GStreamer] GStreamer 이해하기 (0) | 2023.01.05 |
Comments