I am working on an Android application. In my application, I need to play videos in VideoView. Video from vimeo does not work. Whenever I tried to download a vimeo video, I get an "sorry, this video cannot be played" error message.
I saw some similar discussions on StackOverflow. So I tried the demo of Vittamio . There also vimeo videos are not played.
In the case of the youtube URL, we need to convert to RTSP. eg
http:
converted to
rtsp:
I gave a url sample as follows.
private String path = "http://player.vimeo.com/video/49462103 "; and private String path = "http://vimeo.com/49462103";
This is the correct way to input vimeo url in android
Help me fix my problems with friends.
source share