I'm running BSPlayer on a HP Slate 21 Tablet and it works fine.
Now I developed an app which searches my movie database. On the selection of a movie I'd like to launch BSPlayer with the chosen movie. The movie is on a SMB-Share (My Book Live).
What I tried so far is:
Code:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse(url), "video/*");
startActivity(intent);
For the url I tried something like "smb://host/share/movie.mp4" but this is not working.
Has anyone tried this. Or can People from BSPlayer give me a hint? Any suggestions highly welcome! Thanks.