如何在Android中获取实时视频录制的文件大小?

时间:2012-05-02 05:24:24

标签: android video-capture

如何使用MediaRecorder

在Android中录制视频时获取视频文件大小

2 个答案:

答案 0 :(得分:1)

String recVideoPath = Environment.getExternalStorageDirectory() + videoRecordedFileName;

File file = new File(recVideoPath);
long fileVideo = file.length();

或多或少像上面那样。

答案 1 :(得分:-1)

将此放在线程中,或者更新UI的位置

currentPosition = (int) mediaPlayer.getCurrentPosition();
yourProgressBar.setProgress(currentPosition);

我希望这会有所帮助:)