2

how to play rtsp url in android ?

Mycoola
  • 1,135
  • 1
  • 8
  • 29
user491073
  • 23
  • 1
  • 1
  • 3

1 Answers1

6

you can use either MediaPlayer or VideoView for this,it will not work in emulator

you can do like

mediaplayer.setDataSource(String RTSP);   //  if you are using mediaplayer

or

videoView.setVideoURI(Uri.parse("rtsp://...../file"));   // if you are using videoview 

both methods u can tryout

HforHisham
  • 1,914
  • 1
  • 22
  • 34
evan
  • 1,120
  • 4
  • 13
  • 32