I have an Android app that uses the MediaPlayer component to play movies. It works fine with all the Android devices, except on the Kindle Fire HD (and probably other Amazon devices as well as I haven't had the chance to test on others).
On the Kindle logcat prints the following output:
09-02 09:37:46.971 23979-23979/it.hearst.elledecortest I/VideoControllerView: VideoControllerView
09-02 09:37:46.971 23979-23979/it.hearst.elledecortest I/VideoControllerView: VideoControllerView
09-02 09:37:46.986 23979-23979/it.hearst.elledecortest D/MovieViewController: onViewAttachedToWindow
09-02 09:37:47.010 108-108/? E/ASFDummyExtractor: isASFParserAvailable
09-02 09:37:47.010 108-108/? W/ASFDummyExtractor: ASF parser is not available
09-02 09:37:47.010 108-108/? I/AwesomePlayer: Awsomeplayer is created
09-02 09:37:47.010 108-108/? I/AwesomePlayer: board file present
09-02 09:37:47.010 108-108/? I/AwesomePlayer: cabc present
09-02 09:37:47.010 108-108/? I/AwesomePlayer: setCabc file open !
09-02 09:37:47.010 108-108/? I/AwesomePlayer: setCabc ret = -22
09-02 09:37:47.010 108-108/? I/AwesomePlayer: cabc present
09-02 09:37:47.010 108-108/? I/AwesomePlayer: setCabc file open !
09-02 09:37:47.010 108-108/? I/AwesomePlayer: setCabc ret = -22
09-02 09:37:47.010 108-24246/? I/AwesomePlayer: cabc present
09-02 09:37:47.010 108-24246/? I/AwesomePlayer: setCabc file open !
09-02 09:37:47.010 108-24246/? I/AwesomePlayer: setCabc ret = -22
09-02 09:37:47.010 23979-23989/it.hearst.elledecortest E/MediaPlayer: error (1, -2147483648)
09-02 09:37:47.119 23979-23979/it.hearst.elledecortest E/MediaPlayer: Error (1,-2147483648)
09-02 09:37:47.142 23979-23979/it.hearst.elledecortest E/MediaPlayer: prepareAsync called in state 0
Anyone who has any insights on what could be going on? Thanks!
error (1, -2147483648)
is the general error for MediaPlayer. Oftenly, this error is associated to a non-readable file.You should try reading this file with a file explorer
Hope it helps