Android MediaPlayer错误(1,-2147483648)

时间:2012-07-18 11:17:10

标签: android media-player android-videoview

我有两个不同的视频,我正在尝试使用

加载到VideoView
videoView.setVideoURI(Uri.parse(url));

这两个视频,分别是视频1 视频2 ,具有以下规格(使用ffmpeg -i提取);事实上,它们是同一视频的两种不同编码:

  1. 视频1:

    Seems stream 0 codec frame rate differs from container frame rate: 180000.00 (180000/1) -> 90000.00 (180000/2)
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '4fbfd5ece4b0932236fc234d.mp4':
      Metadata:
        major_brand     : mp42
        minor_version   : 0
        compatible_brands: mp42isomavc1
        creation_time   : 2011-12-03 04:43:46
        genre           : Trailer
        artist          : Paramount Pictures
        title           : Captain America: The First Avenger - Theatrical Trailer #2
        encoder         : HandBrake 4344svn 2011111001
        date            : 2011
      Duration: 00:02:30.67, start: 0.000000, bitrate: 6738 kb/s
        Stream #0.0(und): Video: h264 (High), yuv420p, 1920x800 [PAR 1:1 DAR 12:5], 6575 kb/s, 23.97 fps, 90k tbr, 90k tbn, 180k tbc
        Metadata:
          creation_time   : 2011-12-03 04:43:46
        Stream #0.1(eng): Audio: aac, 48000 Hz, stereo, s16, 159 kb/s
        Metadata:
          creation_time   : 2011-12-03 04:43:46
    
  2. 视频2:

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '500416ea44aeb4b95d5ae8a0_hd.mp4':
      Metadata:
        major_brand     : isom
        minor_version   : 512
        compatible_brands: isomiso2avc1mp41
        creation_time   : 2011-12-03 04:43:46
        title           : Captain America: The First Avenger - Theatrical Trailer #2
        artist          : Paramount Pictures
        date            : 2011
        encoder         : Lavf53.32.100
        genre           : Trailer
      Duration: 00:02:30.69, start: 0.000000, bitrate: 2045 kb/s
        Stream #0.0(und): Video: h264 (High), yuv420p, 1280x720 [PAR 27:20 DAR 12:5], 1889 kb/s, 23.99 fps, 90k tbr, 180k tbn, 180k tbc
        Metadata:
          creation_time   : 2011-12-03 04:43:46
        Stream #0.1(eng): Audio: aac, 44100 Hz, stereo, s16, 151 kb/s
        Metadata:
          creation_time   : 2011-12-03 04:43:46
    
  3. 我知道Honeycomb提供AAC支持,因此我使用多种设备测试了视频;结果如下:

    1. SGS II with custom 4.0.3 OS(Sensation ROM 3.4 with CF-Root kernel) - Video 1:OK - Video2:OK
    2. SGS I with Samsung 2.3.3 OS - Video 1:error (1, -2147483648) - Video 2:OK
    3. SGS I with custom 4.0.3 OS(ICS SGS TEAM ROM with Devil kernel) - Video 1:error (1, -2147483648) - Video 2:OK
    4. Nexus One with original 2.3.6 OS - Video 1:See (1) below - Video 2:See (2) below
    5. Emulator with 2.2 OS - Video 1:error (1, -2147483648) - Video 2:error (1, -2147483648)
    6. Emulator with 4.0.3 OS - Video 1:error (1, -2147483648) - Video 2:error (1, -2147483648)
    7. 这两款视频在PC中的谷歌浏览器中都能正常播放。在正常情况下添加视频和音频都可以正常播放可能很有用。在错误(1,-2147483648)的情况下,从所有设备(Nexus One除外)喷出相同的日志:

      07-18 10:25:10.996: I/MediaPlayer(17860): uri is:http://s3-eu-west-1.amazonaws.com/cf-templates-k6ohn88yswx5-eu-west-1/videos/4fbc88e7e4b0b0896e877764/4fbfd5ece4b0932236fc234d.mp4
      07-18 10:25:10.996: I/MediaPlayer(17860): path is null
      07-18 10:25:10.996: D/MediaPlayer(17860): Couldn't open file on client side, trying server side
      07-18 10:25:39.859: D/MediaPlayer(17860): getMetadata
      07-18 10:25:45.070: E/MediaPlayer(17860): error (1, -2147483648)
      07-18 10:25:45.074: E/MediaPlayer(17860): Error (1,-2147483648)
      07-18 10:25:45.078: D/VideoView(17860): Error: 1,-2147483648
      

      在(1)案例中,以下日志是从Nexus One发出的,视频从未加载:

      07-18 13:49:20.115: D/MediaPlayer(10109): Couldn't open file on client side, trying server side
      07-18 13:49:20.115: I/StagefrightPlayer(68): setDataSource('http://s3-eu-west-1.amazonaws.com/cf-templates-k6ohn88yswx5-eu-west-1/videos/4fbc88e7e4b0b0896e877764/4fbfd5ece4b0932236fc234d.mp4')
      07-18 13:49:20.135: I/NuHTTPDataSource(68): connect to s3-eu-west-1.amazonaws.com:80/cf-templates-k6ohn88yswx5-eu-west-1/videos/4fbc88e7e4b0b0896e877764/4fbfd5ece4b0932236fc234d.mp4 @0
      07-18 13:49:20.155: I/ActivityManager(98): Displayed com.woisio/.video.VideoActivity: +450ms
      07-18 13:49:20.795: I/NuCachedSource2(68): Keep alive
      07-18 13:49:22.185: I/OMXCodec(68): [OMX.qcom.video.decoder.avc] allocating 4 buffers of size 460800 on input port
      07-18 13:49:22.195: I/OMXCodec(68): [OMX.qcom.video.decoder.avc] allocating 8 buffers of size 2304000 on output port
      07-18 13:49:25.325: D/dalvikvm(9499): GC_EXPLICIT freed 13K, 50% free 2726K/5379K, external 1625K/2137K, paused 116ms
      07-18 13:49:27.525: I/NuCachedSource2(68): Keep alive
      07-18 13:49:28.235: I/NuCachedSource2(68): Cache full, done prefetching for now
      07-18 13:49:30.275: D/dalvikvm(9902): GC_EXPLICIT freed 8K, 50% free 2714K/5379K, external 1625K/2137K, paused 69ms
      07-18 13:49:34.255: D/Finsky(9066): [1] 5.onFinished: Installation state replication succeeded.
      07-18 13:49:35.855: I/NuCachedSource2(68): Keep alive
      07-18 13:49:39.055: D/dalvikvm(9911): GC_EXPLICIT freed 22K, 50% free 2710K/5379K, external 1625K/2137K, paused 38ms
      07-18 13:49:42.575: I/NuCachedSource2(68): Keep alive
      07-18 13:49:43.285: I/NuCachedSource2(68): Keep alive
      07-18 13:49:44.095: D/dalvikvm(9918): GC_EXPLICIT freed 7K, 50% free 2708K/5379K, external 1625K/2137K, paused 66ms
      07-18 13:49:49.085: D/dalvikvm(9925): GC_EXPLICIT freed 15K, 49% free 3268K/6407K, external 1625K/2137K, paused 50ms
      07-18 13:49:50.925: I/NuCachedSource2(68): Keep alive
      07-18 13:49:54.115: D/dalvikvm(6756): GC_EXPLICIT freed 9K, 44% free 3774K/6727K, external 1625K/2137K, paused 77ms
      07-18 13:49:57.685: I/NuCachedSource2(68): Keep alive
      07-18 13:49:58.375: I/NuCachedSource2(68): Keep alive
      07-18 13:49:59.105: D/dalvikvm(9066): GC_EXPLICIT freed 385K, 53% free 3186K/6727K, external 1625K/2137K, paused 66ms
      07-18 13:50:05.955: I/NuCachedSource2(68): Keep alive
      07-18 13:50:06.045: D/dalvikvm(8047): GC_EXPLICIT freed 9K, 47% free 3830K/7111K, external 1625K/2137K, paused 86ms
      07-18 13:50:09.465: I/3gw.Service(488): Mobile Network not connected - not roaming
      07-18 13:50:12.765: I/NuCachedSource2(68): Keep alive
      07-18 13:50:13.465: I/NuCachedSource2(68): Keep alive
      07-18 13:50:18.775: I/WindowManager(98): Setting rotation to 3, animFlags=0
      07-18 13:50:18.795: I/ActivityManager(98): Config changed: { scale=1.0 imsi=286/2 loc=en_US touch=3 keys=1/1/2 nav=3/1 orien=2 layout=34 uiMode=17 seq=34}
      07-18 13:50:18.895: D/dalvikvm(169): GC_EXTERNAL_ALLOC freed 108K, 48% free 3253K/6215K, external 5172K/5180K, paused 37ms
      07-18 13:50:21.005: I/NuCachedSource2(68): Keep alive
      07-18 13:50:21.265: D/dalvikvm(98): GC_EXPLICIT freed 394K, 42% free 6631K/11335K, external 4458K/5567K, paused 109ms
      

      在(2)的情况下,以下日志是从Nexus One发出的,正如您所看到的,以错误结束(1,-2147483648):

      07-18 13:47:03.595: D/MediaPlayer(10059): Couldn't open file on client side, trying server side
      07-18 13:47:03.595: I/StagefrightPlayer(68): setDataSource('http://s3-eu-west-1.amazonaws.com/cf-templates-k6ohn88yswx5-eu-west-1/videos/4ff4514444aec3d2f9f07ead/500416ea44aeb4b95d5ae8a0_hd.mp4')
      07-18 13:47:03.605: I/NuHTTPDataSource(68): connect to s3-eu-west-1.amazonaws.com:80/cf-templates-k6ohn88yswx5-eu-west-1/videos/4ff4514444aec3d2f9f07ead/500416ea44aeb4b95d5ae8a0_hd.mp4 @0
      07-18 13:47:03.625: I/ActivityManager(98): Displayed com.woisio/.video.VideoActivity: +505ms
      07-18 13:47:05.355: I/OMXCodec(68): [OMX.qcom.video.decoder.avc] allocating 4 buffers of size 460800 on input port
      07-18 13:47:05.355: I/OMXCodec(68): [OMX.qcom.video.decoder.avc] allocating 8 buffers of size 1382400 on output port
      07-18 13:47:05.365: I/NuCachedSource2(68): Keep alive
      07-18 13:47:08.375: D/MediaPlayer(10059): getMetadata
      07-18 13:47:08.745: D/dalvikvm(9925): GC_EXPLICIT freed 651K, 49% free 3275K/6407K, external 1625K/2137K, paused 68ms
      07-18 13:47:09.205: I/3gw.Service(488): Mobile Network not connected - not roaming
      07-18 13:47:11.565: I/NuCachedSource2(68): Cache full, done prefetching for now
      07-18 13:47:12.095: I/NuCachedSource2(68): Keep alive
      07-18 13:47:14.245: W/QCvdec(68): H264_Utils::check_header 
      07-18 13:47:14.245: W/QCvdec(68): check_header: start code 33
      07-18 13:47:14.245: W/QCvdec(68): H264_Utils::check_header 
      07-18 13:47:14.245: W/QCvdec(68): check_header: start code 10
      07-18 13:47:14.245: W/QCvdec(68): Parsing Error unsupported profile or level
      07-18 13:47:14.245: W/QCvdec(68): ETB in Invalid State
      07-18 13:47:14.245: E/OMXCodec(68): [OMX.qcom.video.decoder.avc] ERROR(0x8000100a, 0)
      07-18 13:47:14.245: E/MediaPlayer(10059): error (1, -2147483648)
      07-18 13:47:14.285: E/MediaPlayer(10059): Error (1,-2147483648)
      07-18 13:47:14.285: D/VideoView(10059): Error: 1,-2147483648
      

      根据我的阅读,错误(1,-2147483648)可能对应于不受支持的编解码器,损坏的元数据或不正确的文件头。如果是这样,你能指出我正确的方向使用哪个编解码器?谢谢。

13 个答案:

答案 0 :(得分:95)

只是为了根据标题阅读这个问题的任何人澄清一些事情。

查看错误值(1,-2147483648)时,“1”值对应MediaPlayer.MEDIA_ERROR_UNKNOWN中的常量。

-2147483648对应十六进制0x80000000,在frameworks / native / include / utils / Errors.h中定义为UNKNOWN_ERROR

这表明错误的来源很难确定,因为它是一个非常通用的返回值,由上面提到的编解码器和兼容性问题抛出,但还有线程取消和其他几种类型。

对于您的问题,我建议您咨询兼容Android版本的Android Supported Media Formats并查看编码类型是否是导致问题的原因,但如上所述,未知错误响应可能是由许多问题引起的

答案 1 :(得分:7)

对于流媒体,Android网站有一个注释:

  

对于3GPP和MPEG-4容器,moov原子必须在任何mdat之前   原子,但必须接替ftyp原子。

在移动moov原子之前,我遇到了同样的错误。为了解决这个问题,您可以在此命令中使用mp4Box

MP4Box -hint output.mp4 

我的大多数视频都可以在此之后播放。如果它不起作用,请尝试使用ffmpeg:

ffmpeg -i input.flv -f mp4 -vcodec libx264 -vprofile baseline -acodec libfaac -ar 16k -ab 32k output.mp4
MP4Box -hint output.mp4 

您可以找到其他工具here

答案 2 :(得分:6)

我在Android P(Pixel 2 XL)上遇到相同的错误,但是我要做的只是将android:usesCleartextTraffic="true"放在了AndroidManifest.xml应用程序标签上。

答案 3 :(得分:2)

注意支持媒体类型和设备的分辨率。 当您的设备不支持您的视频媒体类型,编解码器或分辨率时,通常会出现错误error (1, -2147483648)

在文档中查看Android支持的媒体类型:

https://developer.android.com/guide/appendix/media-formats.html

例如,我们可以注意到3.0以上的设备支持.mp4,但并非所有设备都支持HD 720p。

答案 4 :(得分:1)

我有类似的问题。在我的情况下,当我首先将视频下载到手机然后播放时,视频会正常播放。但是当我尝试使用Progressive HTTP时,我会得到OP中注明的相同错误。

我验证了ftyp,moov和mdat原子的顺序正确。事实证明,问题是ftyp字段的价值。它被设置为'qt'。我使用MP4Box提取曲目并创建一个新的mp4文件,其ftyp设置为'isom'。这个新文件适用于Progressive HTTP。

答案 5 :(得分:1)

播放视频时,我也遇到了 MEDIA_ERROR_UNKNOWN 错误问题(rtsp)。

在我的情况下,我发现我的无线网络问题。一些安全原因wifi限制为RTSP协议。所以我正面临这个MEDIA_ERROR_UNKNOWN错误问题。检查一下您的网络权限。

当我转向移动数据播放视频时,它对我来说很好。 对于遇到同样错误的人来说,这可能会有所帮助:)。

答案 6 :(得分:1)

我的解决方法与@ nam-trung的回答类似,但是因为我的视频已经 h264 mp4 所有我需要做的事情在每个文件上运行以下命令:

ffmpeg -i input.mp4 -vprofile baseline output.mp4

之后,当我在运行API v19到v25的所有设备上运行时,视频都在 VideoView 中运行。

答案 7 :(得分:1)

如果您使用 (?<=) 来播放音频,那么这就是我的错误情况:

在执行 MediaPlayer 时,我传递的参数是一个带有给定文件路径的字符串。这导致了我无法找到特定原因的各种异常。但是,当改为.setDataSource()时,根据Android Developers - .setDataSource() method,它的整理出来了。
我从 FileDescriptor 获取 FileDescriptor 对象。
代码如下:

FileInputStream

播放的实际开始在 val player: MediaPlayer = MediaPlayer() fun playRecording() { try { replayFileStream = FileInputStream(path) val fd = replayFileStream?.fd player.setDataSource(fd) player.prepareAsync() // start should be called from onPreparedListener } catch (e: Exception) { // catch exceptions } } 中处理,例如此处的建议:Android Media Player: Start called in state 4 error(-38,0)
监听器设置如下:

OnPreparedListener

答案 8 :(得分:0)

在我的情况下,错误是由于媒体播放器没有本地存储视频的文件权限。尝试将视频存储到/mnt/sdCARD目录。

答案 9 :(得分:0)

我遇到了同样的问题,但我所做的就是

首先我停止媒体播放器,然后发布它。

mMediaPlayer.stop();   mMediaPlayer.release();

答案 10 :(得分:0)

就我而言,我在网址信息所在的网址上进行了 Gzip 压缩。压缩的媒体文件可能无法在 android 上解码。

答案 11 :(得分:-1)

就我而言,此问题是由带空格的媒体网址引起的!这是修复:

mMediaPlayer.setDataSource(source.replaceAll(" ", "%20"));

答案 12 :(得分:-1)

如果您使用的是firebase,则应从1:下载包含https://firebasestorage ........

的Url中复制路径(或url)。

不是来自存储位置

2:<uses-permission android:name="android.permission.INTERNET" />将此权限添加到清单文件夹中的清单标签中

内部存储规则

内部存储规则:

rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
 allow read, write: if true;
  }  
 }  
 }