how do sprate audio and vidio from a vidio file plese help me with this
2 views (last 30 days)
Show older comments
if true
% code
hmfr = video.MultimediaFileReader('D:\Wildlife.wmv','AudioOutputPort',true,'VideoOutputPort',true);
> hmfw = video.MultimediaFileWriter('D:\123.wmv','AudioInputPort',true,'VideoInputPort',true);
> while ~isDone(hmfr)
> [v,a] = step(hmfr);
> step(hmfw,v,a);
> end
> msgbox('Completed');
> release(hmfw);
> release(hmfr);
>
> ??? Undefined function or method 'release' for input arguments of
> type 'video.MultimediaFileWriter'.
>
> Error in ==> videowriter at 8
> release(hmfw);
0 Comments
Answers (0)
See Also
Categories
Find more on Audio and Video Data in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!