* System audio recording have very low amplitude
@ 2020-07-29 9:39 Ariel Elkin
2020-07-29 20:04 ` Jeremy Nicoll - ml sox users
0 siblings, 1 reply; 4+ messages in thread
From: Ariel Elkin @ 2020-07-29 9:39 UTC (permalink / raw)
To: sox-users
[-- Attachment #1.1: Type: text/plain, Size: 951 bytes --]
Hello,
I’m using sox to record the audio produced by the system (i.e. from the OS and other running apps), but the recordings sound very quiet.
I first create a virtual input/output device using Blackhole (https://github.com/ExistentialAudio/BlackHole/ <https://github.com/ExistentialAudio/BlackHole/>) or Loopback (https://rogueamoeba.com/loopback/ <https://rogueamoeba.com/loopback/>). I then start playback of a file using iTunes, and start recording thus:
rec --rate 44100 --channels 2 --no dither test-output.aiff
(Note that this spits out the following error messages:
rec WARN formats: can't set sample rate 44100; using 48000
rec WARN formats: can't set 2 channels; using 16
However, test-output.aiff ends up being a stereo file at 44.1 kHz)
test-output.aiff properly records system audio, but the mean amplitude is about half the mean amplitude of the original sounds I played back.
Any thoughts?
Thanks
Ariel
[-- Attachment #1.2: Type: text/html, Size: 1688 bytes --]
[-- Attachment #2: Type: text/plain, Size: 0 bytes --]
[-- Attachment #3: Type: text/plain, Size: 158 bytes --]
_______________________________________________
Sox-users mailing list
Sox-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sox-users
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: System audio recording have very low amplitude
2020-07-29 9:39 System audio recording have very low amplitude Ariel Elkin
@ 2020-07-29 20:04 ` Jeremy Nicoll - ml sox users
0 siblings, 0 replies; 4+ messages in thread
From: Jeremy Nicoll - ml sox users @ 2020-07-29 20:04 UTC (permalink / raw)
To: sox-users
On 2020-07-29 10:39, Ariel Elkin wrote:
> Hello,
>
> I’m using sox to record the audio produced by the system (i.e. from
> the OS and other running apps), but the recordings sound very quiet.
>
> I first create a virtual input/output device using Blackhole
> (https://github.com/ExistentialAudio/BlackHole/
> <https://github.com/ExistentialAudio/BlackHole/>) or Loopback
> (https://rogueamoeba.com/loopback/
> <https://rogueamoeba.com/loopback/>). I then start playback of a file
> using iTunes, and start recording thus:
>
> rec --rate 44100 --channels 2 --no dither test-output.aiff
>
> (Note that this spits out the following error messages:
> rec WARN formats: can't set sample rate 44100; using 48000
> rec WARN formats: can't set 2 channels; using 16
>
> However, test-output.aiff ends up being a stereo file at 44.1 kHz)
>
> test-output.aiff properly records system audio, but the mean amplitude
> is about half the mean amplitude of the original sounds I played back.
What OS are you using? (I see from those links that the apps are MacOS,
which I know nothing about. Someone else might do; also what version?)
Does MacOS have an internal audio mixer that determines the levels of
sound
from various apps and how they go to other devices? There's certainly
one
of those in Windows - so eg if I was going to record audio streamed via
the
BBC's iPlayer and Firefox, I'd start by temporarily turning off the
other
sources of sound that could get in the way (eg the various tones Windows
error-message boxes will play, eg when it insists on telling me that
when
I rename a file it may not work properly in future...). I've found out
that
the hard way, as it's ruined some recordings.
--
Jeremy Nicoll - my opinions are my own
_______________________________________________
Sox-users mailing list
Sox-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sox-users
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: System audio recording have very low amplitude
2020-07-30 13:30 Ariel Elkin
@ 2020-07-30 15:01 ` Måns Rullgård
0 siblings, 0 replies; 4+ messages in thread
From: Måns Rullgård @ 2020-07-30 15:01 UTC (permalink / raw)
To: Ariel Elkin; +Cc: sox-users
Ariel Elkin <ariel@arivibes.com> writes:
>> What OS are you using? (I see from those links that the apps are MacOS, which I know nothing about. Someone else might do; also what version?)
>
> I’m using macOS 10.15
>
>> Does MacOS have an internal audio mixer that determines the levels of sound from various apps and how they go to other devices?
> No exactly, but there’s an app (Audio MIDI Setup) which will allow you to set the input/output volume and sample rate of your audio hardware. I’ve checked there already and ensured that the input/output volume of Loopback and BlackHole were at 1.
>
> Can someone clarify if this command
>
> rec test-output.aiff
>
> could do any implicit gain attenuation? It’s not clear from the documentation.
If you add the -V flag, the sox/play/rec commands will list the full
effect chain, including automatically added conversions.
--
Måns Rullgård
_______________________________________________
Sox-users mailing list
Sox-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sox-users
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: System audio recording have very low amplitude
@ 2020-07-30 13:30 Ariel Elkin
2020-07-30 15:01 ` Måns Rullgård
0 siblings, 1 reply; 4+ messages in thread
From: Ariel Elkin @ 2020-07-30 13:30 UTC (permalink / raw)
To: sox-users
> What OS are you using? (I see from those links that the apps are MacOS, which I know nothing about. Someone else might do; also what version?)
I’m using macOS 10.15
> Does MacOS have an internal audio mixer that determines the levels of sound from various apps and how they go to other devices?
No exactly, but there’s an app (Audio MIDI Setup) which will allow you to set the input/output volume and sample rate of your audio hardware. I’ve checked there already and ensured that the input/output volume of Loopback and BlackHole were at 1.
Can someone clarify if this command
rec test-output.aiff
could do any implicit gain attenuation? It’s not clear from the documentation.
Thanks
Ariel
_______________________________________________
Sox-users mailing list
Sox-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sox-users
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-07-30 15:01 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-29 9:39 System audio recording have very low amplitude Ariel Elkin
2020-07-29 20:04 ` Jeremy Nicoll - ml sox users
2020-07-30 13:30 Ariel Elkin
2020-07-30 15:01 ` Måns Rullgård
sox-users@lists.sourceforge.net unofficial mirror
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://public-inbox.org/sox-users
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V1 sox-users sox-users/ https://public-inbox.org/sox-users \
sox-users@lists.sourceforge.net
public-inbox-index sox-users
Example config snippet for mirrors.
Newsgroups are available over NNTP:
nntp://news.public-inbox.org/inbox.comp.audio.sox
nntp://ou63pmih66umazou.onion/inbox.comp.audio.sox
nntp://news.gmane.io/gmane.comp.audio.sox
note: .onion URLs require Tor: https://www.torproject.org/
code repositories for the project(s) associated with this inbox:
https://80x24.org/mirrors/sox.git
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git