デバイスからリモートコンピューターにビデオをストリーミングするアプリケーションがあります。フレームレートを設定しようとすると、次のようになります。
ERROR/StagefrightRecorder(131): Failed to set frame rate to 15 fps. The actual frame rate is 30
私が使用するコードは次のとおりです。
video = new MediaStreamer();
video.setVideoSource(MediaRecorder.VideoSource.CAMERA);
video.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
video.setVideoFrameRate(frameRate);
これを修正する方法について何かアイデアはありますか?