How can I start a video in a new window from Matlab?
    조회 수: 4 (최근 30일)
  
       이전 댓글 표시
    
To start or run a pdf file in a new window It is possible to use the code: open('filename.pdf').
I have a video (.avi or other format) and I want top start it (from Matlab) to run in a new window.
I habe a Mac OS X with "QuickTime player".
How ca i use the commande system of Matlab to do that?
code: system( ? )
[Merged from duplicate]
The solution using the commands VideoWriter() and movie() is too slow and generates lots of memory.
I look for a solution similar to open('filenale.pdf') which exists in Matlab and which starts "Adobe Reader" on filename.pdf in a new window.
It seems that the solution is to use the command "system" of Matlab to execute the application (as QuickTime Player) devoted to the reading of a video in a new video,
but I don't find what command I have to write.
I have tried
system('QuickTime Player myvideo.avi');
without success.
(I have a MAC with OS X)
댓글 수: 0
답변 (1개)
  John Petersen
      
 2013년 2월 4일
        Use VideoReader() to import the movie, then movie() to play the movie in another window.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!