h265 raw file frames to jpeg conversion using gstreamer

505 views Asked by At

h265 raw files not decoding to image format from RTSP stream

I want to store each raw frame from rtsp stream and copy this file to another system and decode that frames from H265 to jpeg. because I have three client systems with low configuration so I want to decode some frames from another system.

I am trying to use the below pipeline but not decode the frame.

Pipeline from client system : gst-launch-1.0 rtspsrc location=rtsp://(camera) latency=0 ! rtph265depay ! h265parse ! multifilesink location="C:/img/RAW%d.raw"

Pipeline from main system : gst-launch-1.0 filesrc location="C:/img/RAW15.raw" ! d3d11h265dec ! video/x-raw,format=NV12,width=3840,height=2160 ! jpegenc ! filesink location="C:/img/DEC15.jpeg"

I am stucking from last 3 months but my problem does not resolve, please help me

0

There are 0 answers