hi i hve to add audio file to video file ...but im getting error plz help me..
조회 수: 3 (최근 30일)
이전 댓글 표시
my code is
videoFReader = vision.VideoFileReader('audio.avi');
[AUDIO,Fs] = wavread('audio.wav');
videoFWriter = vision.VideoFileWriter('myfile.avi');
videoFrame = step(videoFReader);
step(videoFWriter,videoFrame,AUDIO);
release(videoFReader);
release(videoFWriter);
both are different files im getting error as
Error using vision.VideoFileWriter/step
Too many input arguments; expected 1 (in addition to the object handle), got 2.
Error in ex (line 5)
step(videoFWriter,videoFrame,AUDIO);
댓글 수: 0
채택된 답변
Walter Roberson
2016년 10월 10일
편집: Walter Roberson
2016년 10월 10일
Your call to vision.videoFileWriter needs to add 'AudioInputPort', true
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Tracking and Motion Estimation에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!