Hello, the problem is the following: I can not display the video (the program hangs):
try { final String DSTREAM = "http://***.3gp"; mediaplayer = new MediaPlayer(); mediaplayer.setDataSource(DSTREAM); mediaplayer.setAudioStreamType(AudioManager.STREAM_MUSIC); mediaplayer.setDisplay(surfaceview.getHolder()); mediaplayer.setOnPreparedListener(this); mediaplayer.prepareAsync(); } catch (IOException e) { e.printStackTrace(); }