playback and recording at the same time

3 次查看(过去 30 天)
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 个)

产品


版本

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by