在 Android 中使用 录制视频时如何获取视频文件大小MediaRecorder
?
问问题
1440 次
2 回答
1
String recVideoPath = Environment.getExternalStorageDirectory() + videoRecordedFileName;
File file = new File(recVideoPath);
long fileVideo = file.length();
或多或少类似于上面的那个。
于 2012-05-02T05:50:32.857 回答
-1
把它放在一个线程中,或者你正在更新 UI 的地方
currentPosition = (int) mediaPlayer.getCurrentPosition();
yourProgressBar.setProgress(currentPosition);
我希望这有帮助 :)
于 2014-10-27T08:09:33.210 回答