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。
VideoWriter cannot generate a playable video file.
조회 수: 22 (최근 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.
채택된 답변
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 Center 및 File Exchange에서 Audio and Video Data에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!