Code: Select all
time += 1
If time = 30 Then
vlcplugin.playlist.next()
vlcplugin.input.Time = 20000
time = 0
End If
The event does trigger and the next item is played when the proper condition is met, however the input.Time command is never executed. Each video always starts at the beginning. If I use input.Time = somenumber after the vlcplugin.playlist.play() command, it will work. Any suggestions? And yes, all of my videos are longer than 20 seconds so I'm not trying to go outside of the bounds of my file.