Hi i try to add direct Vimu support into the jellyfin app, but file:// seems to not work?
I'm also not sure what extra intent options Vimu supports, like "title", playback position?
Any help to call Vimu as external player for videos via local files?
I'm going by this example:
Intent external = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse("file://" + path);
external.setPackage("net.gtvbox.videoplayer");
external.setDataAndTypeAndNormalize(uri, "video/*");
// what does Vimu support?
external.putExtra("title", item.getName());
external.putExtra("position", mPosition);
startActivityForResult(external, 1);
--
You received this message because you are subscribed to the Google Groups "Vimu Media Player for TV Support Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
gtvbox+un...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/gtvbox/f0f0ea71-7be6-4fdd-a4cf-95ec88679fb8n%40googlegroups.com.