Gstreamer의 입장
윈도우에 창 열기
gst-launch-1.0 dxgiscreencapsrc x=0 y=0 width=1920 height=1080 cursor=TRUE ! video/x-raw,framerate=30/1 ! videoconvert ! autovideosink
gst-launch-1.0 dxgiscreencapsrc x=0 y=0 width=1920 height=1080 cursor=TRUE ! video/x-raw,framerate=30/1 ! videoconvert ! autovideosink
gstreamer 녹화
화면 반영된 플러그인, cursor TRUE 표면 표면 표면도 포함됨
0,0 위치부터 1920x1080(FHD) 크기만큼
비디오 사진 촬영 30 프레임
프레임 비디오 변환
화면에 출력
mp4로 저장하기
gst-launch-1.0 dxgiscreencapsrc x=0 y=0 width=1920 height=1080 cursor=TRUE ! video/x-raw,framerate=30/1 ! videoconvert ! queue ! x264enc threads=2 tune=zerolatency pass=5 quantizer=26 speed-preset=6 ! mp4mux fragment-duration=500 ! filesink location="a.mp4"
각 항목은 다음과 같다.
gst-launch-1.0 dxgiscreencapsrc x=0 y=0 width=1920 height=1080 cursor=TRUE ! video/x-raw,framerate=30/1 ! videoconvert ! queue ! x264enc threads=2 tune=zerolatency pass=5 quantizer=26 speed-preset=6 ! mp4mux fragment-duration=500 ! filesink location="a.mp4"
gstreamer 녹화
화면 반영된 플러그인, cursor TRUE 표면 표면 표면도 포함됨
0,0 위치부터 1920x1080(FHD) 크기만큼
비디오 사진 촬영 30프레임
프레임 비디오 변환
큐
x.264로 마감
mp4 파일로 래핑
a.mp4로 저장한다.
화면을 띄우면서 영상 저장
gst-launch-1.0 dxgiscreencapsrc x=0 y=0 width=1920 height=1080 cursor=TRUE ! video/x-raw,framerate=30/1 ! tee name="local" ! videoconvert ! queue ! x264enc threads=2 tune=zerolatency pass=5 quantizer=26 speed-preset=6 ! mp4mux fragment-duration=500 ! filesink location="a.mp4" local. ! videoconvert ! autovideosink
gst-launch-1.0 dxgiscreencapsrc x=0 y=0 width=1920 height=1080 cursor=TRUE ! video/x-raw,framerate=30/1 ! tee name="local" ! videoconvert ! queue ! x264enc threads=2 tune=zerolatency pass=5 quantizer=26 speed-preset=6 ! mp4mux fragment-duration=500 ! filesink location="a.mp4" local. ! videoconvert ! autovideosink
gstreamer 녹화
화면 반영된 플러그인, cursor TRUE 표면 표면 표면도 포함됨
0,0 위치부터 1920x1080(FHD) 크기만큼
비디오 사진 촬영 30 프레임
이 지점에서 지역으로 진입함
프레임 비디오 변환
다시 큐
x.264로 마감
mp4 파일로 래핑
텍스트 파일 이름과 여기부터 local. 종료점 시작
프레임 비디오 변환
화면에 출력
.
Reference
이 문제에 관하여(Gstreamer의 입장), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/swervin/gstreamer-5e89텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)