gpt4 book ai didi

audio - 1 个文件中的 5 个独立音频 channel

转载 作者:行者123 更新时间:2023-12-02 22:54:51 26 4
gpt4 key购买 nike

不知道在哪里提出这个问题,所以我提前道歉。

我有一个房间里有 5 个扬声器的测试装置,周围有一对麦克风。我正在从扬声器的不同角度测试麦克风的灵敏度。我有一个放大器/混音器连接到它们并控制各个 channel 。

我想将 5 个音频 channel 放在一个文件中。通过适当的延迟,我希望一次只播放一个扬声器。所以 channel 1 连接到扬声器 1, channel 2 连接到扬声器 2,依此类推。

我一直在使用 Audacity 创建文件。然而, channel 4 和 5 在两个扬声器中播放,而不是一个。并且 channel 3 听起来很弱。我想这是因为 5.1 标准,其中 channel 4/5 必须处理“后左/右”,而 channel 3 用于潜艇。

是否有一种文件格式可以让我将纯单个 channel 输入扬声器?我不限于文件格式,但到目前为止我已经尝试过 wav、ogg 和 flac。

最佳答案

在 Audacity 中,您必须选中 Import/Export section of the preferences 中的“使用自定义组合”单选按钮。 .这将允许您导出多 channel 文件,并手动将轨道分配给 channel 。

除此之外,普通的旧 .wav 可以正常工作。

但是你也可以使用SoX以更自动化的方式创建文件。

您可以手动将五个不同的文件组合(或文档中提到的“合并”)到一个五 channel 文件中,如下所示:

sox -M chan1.wav chan2.wav chan3.wav chan4.wav chan5.wav multi.wav

为了自动化这个过程,我整理了一个简短的 Bash 例程,用于生成具有交错测试音的多 channel 文件:
NUM=5    # Number of channels
LEN=2 # Length of each test tone, in seconds
OVL=0.5 # Overlap between test tones, in seconds

# A one-channel base file containing simple white noise.
# faded at both end with a quarter wave envelope to ensure
# smooth equal power transitions
sox -n -b 24 -c 1 out.wav synth $LEN whitenoise fade q $OVL -0 $OVL

# Instead of white noise you can for example make a 1kHz tone
# like this:
# sox -n -b 24 -c 1 out.wav synth $LEN sine 1k fade q $OVL -0 $OVL

# Or a sweep from 10Hz to 10kHz like this:
# sox -n -b 24 -c 1 out.wav synth $LEN sine 10-10k fade q $OVL -0 $OVL

# Produces a sequence of the number of seconds each channel
# shall be padded with
SEQ=$(for ((i=1; i<=NUM; i++))
do
echo "$i 1 - [$LEN $OVL -]x * p" | dc # reverse-Polish arithmetic
done)

echo $SEQ

# Padding the base file to various degrees and saving them separately
for j in $SEQ
do
sox -c 1 out.wav outpad${j}.wav pad $j
done

# Finding the just-produced individual files
FIL=$(ls | grep ^outpad)

# Merging the individual files into a single multi-channel file
sox -M $FIL multi.wav

rm $FIL # removing the individual files

# Producing a multi-channel waveform plot
ffmpeg -i multi.wav -y -filter_complex "showwavespic=s=2400x900:split_channels=1" -frames:v 1 waveform.png

# displaying the waveform plot
open waveform.png

正如波形图清楚地显示的那样,结果由一个包含五个 channel 的文件组成,每个 channel 具有相同的内容,只是在时间上移动了一些:

multichannel audio file with staggered and cross-faded test tones

更多关于使用 dc 的反向波兰算法: http://wiki.bash-hackers.org/howto/calculate-dc

更多关于使用 ffmpeg 显示波形的信息: https://trac.ffmpeg.org/wiki/Waveform

关于audio - 1 个文件中的 5 个独立音频 channel ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38922604/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com