You are not logged in.

#1 2019-09-26 08:16:49

brofjst
Member
Registered: 2018-07-09
Posts: 43

[SOLVED] SimpleScreenRecorder very low sound

Hi guys.
I'm trying to record my screen with SSR but the output file presents a VERY low sound, to hear that i have to set the volume of VLC at 200% and it's still low.
I've tried to do it on ubuntu and SSR works correctly so i think i'm missing something on Arch.
I post here some screen of my configuration:
-SSR: 1 2 3
-PulseAudio: 1 2 3
On pulse audio if i increase the volume of AudioIPC Server in the playback tab the output file presents a terrible background noise.

Last edited by brofjst (2019-09-27 13:16:18)

Offline

#2 2019-09-26 08:27:24

progandy
Member
Registered: 2012-05-17
Posts: 5,321

Re: [SOLVED] SimpleScreenRecorder very low sound

Is the volume of the SSR audio stream in the pavucontrol recording tab set correctly?


| alias CUTF='LANG=en_XX.UTF-8@POSIX ' | alias ENGLISH='LANG=C.UTF-8 ' |

Offline

#3 2019-09-26 09:45:07

brofjst
Member
Registered: 2018-07-09
Posts: 43

Re: [SOLVED] SimpleScreenRecorder very low sound

yes it's set correctly
image

Offline

#4 2019-09-26 13:25:31

Swiggles
Member
Registered: 2014-08-02
Posts: 266

Re: [SOLVED] SimpleScreenRecorder very low sound

Through all the screenshots you managed not to show the most interesting tab: Input Devices

Offline

#5 2019-09-26 15:07:06

brofjst
Member
Registered: 2018-07-09
Posts: 43

Re: [SOLVED] SimpleScreenRecorder very low sound

i did not post the input devices because i found the same problem on 2 different pc: the laptop and the desktop pc which hasn't a microphone and i tought the issue was not related to it.
Btw here it is the screenshot from the laptop: Image

Offline

#6 2019-09-26 15:17:34

Swiggles
Member
Registered: 2014-08-02
Posts: 266

Re: [SOLVED] SimpleScreenRecorder very low sound

What if you put the mic input to 100%? smile

Offline

#7 2019-09-26 15:38:37

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,354

Re: [SOLVED] SimpleScreenRecorder very low sound

Pulse has better diagnostic tools than posting screenshots of some UI...

pacmd list-sinks
pacmd list-sink-inputs
pacmd list-sources
pacmd list-source-outputs
#Or since pulse 13
pa-info

Last edited by V1del (2019-09-26 15:40:13)

Offline

#8 2019-09-26 15:47:41

brofjst
Member
Registered: 2018-07-09
Posts: 43

Re: [SOLVED] SimpleScreenRecorder very low sound

Swiggles wrote:

What if you put the mic input to 100%? smile

nothing changed

pa-info

Last edited by brofjst (2019-09-26 15:52:04)

Offline

#9 2019-09-26 16:16:35

Swiggles
Member
Registered: 2014-08-02
Posts: 266

Re: [SOLVED] SimpleScreenRecorder very low sound

Source #1
	State: SUSPENDED
	Name: alsa_input.pci-0000_00_1b.0.analog-stereo
	Description: Built-in Audio Analog Stereo
...
	Volume: front-left: 65536 / 100% / 0.00 dB,   front-right: 65536 / 100% / 0.00 dB
	        balance 0.00
	Base Volume: 8250 /  13% / -54.00 dB

This looks like it is turned down in alsa. Please check your inputs in alsamixer.

Last edited by Swiggles (2019-09-26 16:16:55)

Offline

#10 2019-09-26 16:19:17

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,354

Re: [SOLVED] SimpleScreenRecorder very low sound

Your monitor source, which is where the output is actually recording from, is at 15% (also next time you might want to post that while trying to record) Warning with all your other overdrives this might blow your ears out:

pactl set-source-volume alsa_output.pci-0000_00_1b.0.analog-stereo.monitor 50%,50% #Set to whatever

Hint: in the output devices tab of pavucontrol, scroll down or increase the size of your window.

@Swiggles from what I gather the mic isn't the problem but desktop audio being recorded, it also is generally normal to have a low base volume on Mics, that shouldn't be the inherent issue.

Last edited by V1del (2019-09-26 16:20:45)

Offline

#11 2019-09-26 16:35:22

Swiggles
Member
Registered: 2014-08-02
Posts: 266

Re: [SOLVED] SimpleScreenRecorder very low sound

@V1del doesn't the base volume define the 100% mark for PA?
Anyway it sounds like some knob is turned down too much, so I would put all to 100% and adjust once it is clear that this is the issue. Ofc you have to be careful with your output.

Though I would trust on V1dels experience here, because that's usually correct! smile

Offline

#12 2019-09-26 16:50:44

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,354

Re: [SOLVED] SimpleScreenRecorder very low sound

@Swiggles it does, but from what I've seen it is set generally on the low side for most mics, regardless of the ALSA/PA volume knob (that one might be influenced by mic boost settings, but you often don't want to mess with those), which makes sense as they usually start to clip at a lower overall volume (one could tell pulse to not care with the ignore_dB=true option to udev-detect, but having a lower base volume on the mic is usually the wanted and correct behaviour).

That aside aside, the screenshot showing the SSR recording active actually shows that we are concerned with the output card monitor here (which is also why moving around the mic knob didn't change anything, as it doesn't factor in in that case)

Offline

#13 2019-09-27 13:15:39

brofjst
Member
Registered: 2018-07-09
Posts: 43

Re: [SOLVED] SimpleScreenRecorder very low sound

V1del wrote:
pactl set-source-volume alsa_output.pci-0000_00_1b.0.analog-stereo.monitor 50%,50% #Set to whatever

Good job mate, this solved the issue, thank you!

Offline

#14 2021-01-01 12:14:09

stillwaiting
Member
Registered: 2021-01-01
Posts: 1

Re: [SOLVED] SimpleScreenRecorder very low sound

Found this thread via google. The suggested idea worked for me, but the command was different:

1. call `pacmd list-sources` and find "Monitor of Build-in Audio... " there

2. run `pacmd set-source-volume 4 65535` , where 4 is the index of the item in the list from previous command.

Offline

#15 2021-01-01 15:23:56

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,354

Re: [SOLVED] SimpleScreenRecorder very low sound

There's really nothing different about your solution other than to expected variances in how hardware is named.

In any case, while I'm glad this helped you as well, please don't necrobump old threads just to confirm that the  solution does in fact work as well.

Closing this old topic.

Offline

Board footer

Powered by FluxBB