【问题标题】:Recorded Video playing without sound录制的视频无声播放
【发布时间】:2012-06-11 10:53:48
【问题描述】:

我已关注this 录制视频。我已经使用以下编码来播放录制的视频..

url = "file:///mnt/sdcard/CaptureVideo/1510402819.3gpp"

Intent i = new Intent(Intent.ACTION_VIEW);
i.setDataAndType(Uri.parse(url), "video/*");
startActivity(i);

我试过用 mp4 和 mp3 格式还是听不到声音。 . .

注意: 如果我直接播放录制的视频听不到声音.. 谁来帮帮我。。

【问题讨论】:

    标签: android media-player video-capture


    【解决方案1】:

    试试这个:

    Intent movieIntent = new Intent();
    movieIntent.setAction(android.content.Intent.ACTION_VIEW);
    movieIntent.setDataAndType(Uri.fromFile(file), "video/*");
    startActivity(movieIntent);
    

    【讨论】:

      【解决方案2】:

      如下设置AudioSource和Audio Encoder,

      recorder.setVideoSource(MediaRecorder.VideoSource.DEFAULT);
      recorder.setAudioSource(MediaRecorder.AudioSource.DEFAULT);
      recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
      recorder.setVideoEncoder(MediaRecorder.VideoEncoder.DEFAULT);
      recorder.setAudioEncoder(MediaRecorder.AudioEncoder.DEFAULT);
      

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2021-04-06
        • 1970-01-01
        • 2014-06-13
        • 1970-01-01
        相关资源
        最近更新 更多