Hi, does vimu support extra data that can be send/received to the player intent/view action?
maybe something like:
Intent external = new Intent(Intent.ACTION_VIEW);
external.putExtra("position"
external.putExtra("from_start"
external.putExtra("return_result"
external.putExtra("title"
maybe audio/subtitle hints via iso language hints?
external.putExtra("audio", "jpn,eng"
external.putExtra("subtitle", "eng"
Also what extra data is supported for the return intent?
Intent intent = new Intent("....intent.result.VIEW");
intent.putExtra(API_END_BY
intent.putExtra(API_DURATION
intent.putExtra(API_POSITION
I try to improve the playback/resume handling, so Vimu gets the info if to resume/position directly. Also a way to hand over the "Title" would be nice, so Vimu wont just show "stream.mkv" if there are no main meta title information.