playback and recording at the same time

조회 수: 6 (최근 30일)
Life is Wonderful
Life is Wonderful 2023년 7월 12일
댓글: Life is Wonderful 2023년 7월 14일
Hi there,
I need assistance playingback and recording simultaneously without actually preserving the stream as a recording on the disk. I am looking for playback from a remote machine, which is a target device, and screen capture playback streaming data is analysed in the backend system, where I pick up the video stream, convert to a frame, and histogram the defect sequence if I discover a defect.
Could you please provide me with a sample code and an idea? How can I complete such a task?
Thank you very much.

채택된 답변

Vishnu
Vishnu 2023년 7월 12일
You can utilize the VideoReader, implay and VideoWriter functions of MATLAB.
Here is some sample code on how to use these functions:
videoReader = VideoReader('path/to/video/file.mp4');
videoPlayer = implay('path/to/video/file.mp4');
videoWriter = VideoWriter('path/to/save/output.mp4', 'MPEG-4');
Setting equal framerates for VideoWriter instance and implay instance.
videoWriter.FrameRate = videoReader.FrameRate;
open(videoWriter);
Then run a while loop over the video which is to be read using the implay instance and use the writeVideo function to write the file data into the VideoWriter instance.
while hasFrame(videoReader)
% Read the frame
frame = readFrame(videoReader);
% Perform some operations on the read frame
% Write the frame to the video writer
writeVideo(videoWriter, frame);
end
Close the instances you opened using the functions in the first step.
close(videoReader);
close(videoPlayer);
close(videoWriter);
You can check out the MATLAB documentation for these functions to have a better idea about the operations which you could perform on the video you read and the file you write in.
  댓글 수: 3
Vishnu
Vishnu 2023년 7월 13일
편집: Vishnu 2023년 7월 13일
I believe your approach is correct, I have a code snipped which can help.
function startRec
disp('recording')
Recorder = VideoWriter('result.mp4','MPEG-4');
open(Recorder);
videoObj = VideoReader('xylophone.mp4');
frame = read(videoObj,1);
RecTimer = timer("ExecutionMode", "fixedDelay", 'Period', 1/10, 'TimerFcn', @(~,~)writeVideo(Recorder,frame));
start(RecTimer);
pause(10);
disp('stopped')
stop(RecTimer);
pause(0.5);
delete(RecTimer);
close(Recorder);
delete(Recorder);
end
In this function i am reading an example video and then writing one of its frame. you can modify the timer callback function to read the latest frame of you live video and then write it to a file. here the timer function works like a while loop calling the callback after a certain time.
Hope this helps,Thank You.
Life is Wonderful
Life is Wonderful 2023년 7월 14일
Thank you!! Your suggestion looks good to me.I make the implementation out of your suggestion.
In case I need your support , I will come back here.
Thanks a lot

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by