VideoWriter cannot generate a playable video file.

조회 수: 22 (최근 30일)
Xiangyan An
Xiangyan An 2024년 9월 27일
댓글: Xiangyan An 2024년 9월 30일
Hello,
I just got some trouble while using the function VideoWriter to generate a video. I'm trying to use the sample code in the function document, as below.
clear
clc
A = rand(300);
v = VideoWriter("newfile.avi");
open(v)
writeVideo(v,A)
close(v)
These lines can run without any error message, and a video file is created. However, the created video file cannot be played by windows media player.
In fact, I had used this function on another computer and it works well. Is the function VideoWriter or any related function environment-dependent? The computer where I got problem is run on windows 11, and I'm using Matlab 2023b.
Thanks for any help.
  댓글 수: 2
Xiangyan An
Xiangyan An 2024년 9월 27일
Moreover, I just checked play the file through another player (VLC). It can be played correctly through VLC. However, I want to insert the video file into a .pptx file. The video is still not able to be played in the .pptx file. It seems that there are indeed some issues with this video file。
Xiangyan An
Xiangyan An 2024년 9월 27일
BTW, the error when trying to play it through windows media player is 0xC00D6D60.

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

채택된 답변

Karanjot
Karanjot 2024년 9월 30일
Hi,
Although, this seems to be an issue with Windows media player instead of the video file. I can suggest a potential workaround to resolve the issue:
Try modiying the 'profile' attribute of the VideoWriter object. Switching to the MPEG-4 profile often resolves compatibility issues.
To know more about this refer to the Input Arguments section in the below linked documentation:
I hope this helps!

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Audio and Video Data에 대해 자세히 알아보기

태그

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by