Android MediaPlayer error: MediaPlayer error(1, -2147483648) on Stream from internet

前端 未结 3 1108
孤独总比滥情好
孤独总比滥情好 2020-12-18 09:45

I\'m trying to stream audio from a URL. The code works fine with other URLs, but in one of those it fails in the OnPrepared method, returning this error code: (

3条回答
  •  甜味超标
    2020-12-18 09:53

    If you are testing on devices earlier than Android 3.1 you might not be able to play AACP (as seen on the info page for your stream (AAC+) streams.

    Info page for your stream:
    enter image description here

    In order to find out what streams you can play on your targeted device check official docs: http://developer.android.com/reference/android/media/AudioManager.html

    If you are looking how to handle aacp checkout following:
    https://stackoverflow.com/a/8833346/200272

提交回复
热议问题