PDA

View Full Version : When a video stop ?


djdesmangles
01-10-2007, 08:01 PM
Hello Wizards,

Is there any status variable to indicate that a video playback is finished ?

Thanks a lot...

farshizzo
01-11-2007, 12:04 PM
You can check the current position of the video to tell if it is finished. When a video finishes the position will go back to 0. Here is code to retrieve the position of a video:pos = video.getposition() #Retrieve position in seconds

djdesmangles
01-11-2007, 04:15 PM
Thanks a lot !! It's worrking... :)
D.