ubuntu系統(tǒng)使用OBS無麥克風聲音(個人記錄,方便以后查閱)
第一步,打開終端
Ctrl + Alt +T
第二步,輸入 pulsemixer --list
如果沒有安裝pulsemixer,則會出現(xiàn)如下的提示:
Command 'pulsemixer' not found, but can be installed with:
sudo snap install pulsemixer? # version 1.5.1, or
sudo apt? install pulsemixer? # version 1.5.1-1
See 'snap info pulsemixer' for additional versions.
那么,輸入 sudo apt? install pulsemixer 安裝pulsemixer即可
安裝之后,再次輸入 pulsemixer --list
會顯示以下的內容:
Sink:?? ??? ? ID: sink-0, Name: 內置音頻 模擬立體聲, Mute: 0, Channels: 2, Volumes: ['75%', '75%'], Default
Sink input:?? ? ID: sink-input-20, Name: Firefox, Mute: 0, Channels: 2, Volumes: ['85%', '85%']
Source:?? ??? ? ID: source-0, Name: Monitor of 內置音頻 模擬立體聲, Mute: 0, Channels: 2, Volumes: ['100%', '100%']
Source:?? ??? ? ID: source-1, Name: 內置音頻 模擬立體聲, Mute: 1, Channels: 2, Volumes: ['46%', '46%'], Default
Source output:?? ? ID: source-output-6, Name: OBS, Mute: 0, Channels: 2, Volumes: ['100%', '100%']
Source output:?? ? ID: source-output-7, Name: OBS, Mute: 0, Channels: 2, Volumes: ['100%', '100%']
注意上面標記顏色的部分,Mute的數(shù)值為1,表示關閉;Mute的數(shù)值為0,表示打開。
第三步,在終端輸入:
pulsemixer --id source-1 --unmute
然后我們再次查看輸入 pulsemixer --list 查看一下:
Sink:?? ??? ? ID: sink-0, Name: 內置音頻 模擬立體聲, Mute: 0, Channels: 2, Volumes: ['75%', '75%'], Default
Sink input:?? ? ID: sink-input-21, Name: Firefox, Mute: 0, Channels: 2, Volumes: ['85%', '85%']
Source:?? ??? ? ID: source-0, Name: Monitor of 內置音頻 模擬立體聲, Mute: 0, Channels: 2, Volumes: ['100%', '100%']
Source:?? ??? ? ID: source-1, Name: 內置音頻 模擬立體聲, Mute: 0, Channels: 2, Volumes: ['46%', '46%'], Default
Source output:?? ? ID: source-output-6, Name: OBS, Mute: 0, Channels: 2, Volumes: ['100%', '100%']
Source output:?? ? ID: source-output-7, Name: OBS, Mute: 0, Channels: 2, Volumes: ['100%', '100%']
標記部分已經發(fā)生變化,此時,回到OBS中,發(fā)現(xiàn)可以錄制麥克風聲音了。