溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android 音視頻深入 八 小視頻錄制(附源碼下載)

發(fā)布時(shí)間:2020-07-18 10:05:35 來源:網(wǎng)絡(luò) 閱讀:1126 作者:qq5a70561b29238 欄目:移動(dòng)開發(fā)

本篇項(xiàng)目地址,求start
https://github.com/979451341/Audio-and-video-learning-materials/tree/master/%E5%B0%8F%E8%A7%86%E9%A2%91%E5%BD%95%E5%88%B6

這個(gè)項(xiàng)目我覺得厲害,因?yàn)橹颁浧劣昧撕芏啻a,而這個(gè)真正實(shí)現(xiàn)錄屏功能的代碼一百行都不到

還有就是關(guān)于整個(gè)界面UI也做得不錯(cuò),但是關(guān)于界面如何實(shí)現(xiàn)的我就不多說了,直接說如何實(shí)現(xiàn)錄屏的代碼

首先Camera如何給數(shù)據(jù)SurfaceView,從而在屏幕顯示Camera拍到的東西,這個(gè)之前說多了,不在提了

1.錄屏

這一次將視頻數(shù)據(jù)如何將數(shù)據(jù)給MediaRecorder,兩行就可以了
mMediaRecorder.setCamera(mCamera);
mMediaRecorder.setPreviewDisplay(mSurfaceHolder.getSurface());

設(shè)置音視頻兩個(gè)數(shù)據(jù)來源的格式
mMediaRecorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);
mMediaRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);

設(shè)置分辨率,顯示屏幕的大小
//設(shè)置視頻的分辨率
mMediaRecorder.setVideoSize(mProfile.videoFrameWidth, mProfile.videoFrameHeight);

設(shè)置編碼的速率
mMediaRecorder.setAudioEncodingBitRate(44100);
if (mProfile.videoBitRate > 2 1024 1024) {
mMediaRecorder.setVideoEncodingBitRate(2 1024 1024);
} else {
mMediaRecorder.setVideoEncodingBitRate(mProfile.videoBitRate);
}

設(shè)置視頻播放的幀率
mMediaRecorder.setVideoFrameRate(mProfile.videoFrameRate);

這是音視頻編碼的格式
mMediaRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AAC);
mMediaRecorder.setVideoEncoder(MediaRecorder.VideoEncoder.H264);

設(shè)置輸出文件的路徑
mMediaRecorder.setOutputFile(mRecordFile.getAbsolutePath());

這項(xiàng)目要說缺陷就是無法在錄屏的時(shí)候加特效,但是代碼短,適合一些專門的用途

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI