Android view for playing videos with a starting position

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?

+1
source share
1 answer

The question is, is it possible to adjust the intent so that the video starts playing several seconds (or frames) in the video?

There ACTION_VIEWis nothing in the specification that supports this, sorry.

+1
source

All Articles