我只剩下几周时间,我正试图将以下守则付诸实施:
sub runVideo {
system( mplayer -fs video1.mpeg2 video2.mpeg2 );
return;
}
runVideo();
system( some other processes in background& );
runVideo();
基本上,我两次播放录像1和录像2,第一次是录像,第二次在背景中播放一些应用,因此,我用完全屏幕的方式播放录像。
<<>Problem>:
On the first run, the transition from video1 to video2 takes about 1-2 seconds. While on the second run, the transition from video1 to video2 takes less than a second.
< Question:
www.un.org/Depts/DGACM/index_spanish.htm 为什么过渡期有所不同? 这部录像是否仍然记忆中,因此装上该录像的时间要缩短?
www.un.org/Depts/DGACM/index_spanish.htm 什么其他替代办法或工作方式可以同时过渡?