我正在为一个实验编写脚本,该实验将同时呈现电影和听觉刺激。 因此,在脚本中的某个点上,有以下命令可以播放视频:
system('"C:\Program Files (x86)\VideoLAN\VLC\VLC.exe" --play-and-exit instructionsANDstimuli\Donald.mp4 --qt-minimal-view --no-qt-name-in-title --fullscreen --width 400 --height 300 --start-time 90 --stop-time 100 --no-osd --no-autoscale --no-keyboard-events --no-mouse-events --intf dummy --dummy-quiet');
我想找到一种方法让电影播放并在电影结束之前返回脚本的其余部分。 有没有一种简单的方法可以不等待system()命令完成?
谢谢您的时间。