I am getting video from my server (myserver.com/salsa/myVideo.mp4) and playing it on default android application using
Intent tostart = new Intent(Intent.ACTION_VIEW);
tostart.setDataAndType(Uri.parse(myServer.com/salsa/myVideo.mp4), "video/*");
startActivity(tostart);
In my own phone, I am using MXPlayer application to play videos. Today I downloaded the VLC player android application to see how it looks. When I select VLC to play video, on top of it, the video url is shown to the user. However I don't want users to see the url.
Is there any way to hide url?
Edit: In MXPlayer instead of showing domain name or folder name, it shows myVideo.mp4 So a user can easily combine this 2 information, and can get the URL