Hello I am develop video player with android gallery. I receive URI from gallry. and I need to display video title, when play video. so if content has not title meta data. I
try { String uriString = "http://somesite.com/video.mp4"; URI uri = new URI(uriString); URL videoUrl = uri.toURL(); File tempFile = new File(videoUrl.getFile()); String fileName = tempFile.getName(); } catch (Exception e) { }