i'm trying to setup a video on demande streaming server for an android app, here is the code i'm using to read the video:
final Button button = (Button) findViewById(R.id.button1);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// Perform action on click
final EditText tx = (EditText) findViewById(R.id.editText1);
final VideoView vd = (VideoView) findViewById(R.id.videoView1);
Uri lien = Uri.parse("rtsp://10.0.2.2/talfaza/sample.mp4");
vd.setVideoURI(lien);
vd.requestFocus();
vd.start();
}
});
the problem may be in the connection between my vitual device and the localhost computer, because when i'm showing the duration of the downloaded video i get : -1 .