I want to stream a video from vlc to android app.I tired number of times.I referred http://www.howtogeek.com/118075/how-to-stream-videos-and-music-over-the-network-using-vlc/ tutorial.And this is my Java(Android) code block
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
VideoView mVideoView = (VideoView) findViewById(R.id.videoView1);
String vidAddress = "http://10.0.2.2:8082/makeing_massina.mp4";
Uri vidUri = Uri.parse(vidAddress);
mVideoView.setVideoURI(vidUri);
mVideoView.start();
}
Every time i got 'Can't play this video' message.Please help me..