I can play the video using the intent using the following (thanks to the existing answers / questions here):
Intent tostart = new Intent(Intent.ACTION_VIEW);
tostart.setDataAndType(Uri.parse(movieurl), "video/*");
startActivity(tostart);
This plays the video from above using some kind of default player. The question is, is it possible to adjust the intent so that the video starts playing several seconds (or frames) in the video?
source
share