フィルターのクリア

Delete frames from video

21 ビュー (過去 30 日間)
Tomás
Tomás 2023 年 7 月 6 日
編集済み: KSSV 2023 年 7 月 6 日
Hello - Looking to delete the first 3 frames of a video using matlab. I've been looking over VideoReader and VideoWriter documentation, but I'm not getting very far.
---
vr = VideoReader('Motion.avi');
vw = VideoWriter('Motion_edit.avi');
frames = read(vr,[4 Inf]);
open(vw);
writeVideo(vw,frames)
--
This code has not been successful...

採用された回答

KSSV
KSSV 2023 年 7 月 6 日
編集済み: KSSV 2023 年 7 月 6 日
vidObj = VideoReader('Motion.avi');
% Read video frames until the end of the file is reached by using the readFrame method.
vidframes = read(vidObj,[1 Inf]); % you can read from [4 inf] and then write
% Write video
v = VideoWriter('Test.avi');
% skip the first three frames
vidframes = vidframes(:,:,:,3:end) ;
% write the video
open(v)
writeVideo(v,vidframes)
close(v)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAudio and Video Data についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by