Hi!
In my application I want to play the video as it changes the playback speed.
Sub Globals
Dim Video As VideoView
Dim timer1 As Timer
Dim Button1 As Button
....
...
end sub
Sub Timer1_Tick
Video.Pause
Video.Position=Video.Position + 10
End Sub
Sub Button1_Click
Video.Position=Video.Position + 200
end sub
This code work fine on my android phone v4.1, but on my samsung tablet android v.4.0.4 does not work. The image is refreshed only every 2s
The same is if I push the button (every 10 pressures is refreshed)
Does anyone have a solution how to control video speed?
by
Uros