how to play rtsp url in android?

后端 未结 1 1027
春和景丽
春和景丽 2021-01-15 04:18

how to play rtsp url in android ?

1条回答
  •  迷失自我
    2021-01-15 04:45

    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

    0 讨论(0)
提交回复
热议问题