python - 每秒获取音频文件的最大振幅

标签 python audio waveform soundcloud amplitude

我知道这里有一些类似的问题,但大多数都是关于生成波形图像的,这不是我想要的。

我的目标是为音频文件生成波形可视化,类似于 SoundCloud,但不是图像。我想要数组中音频剪辑的每一秒(或半秒)的最大振幅数据。然后我可以使用这些数据创建基于 CSS 的可视化。

理想情况下,我希望获得一个数组,其中包含每秒的所有振幅值占整个音频文件最大幅度的百分比。这是一个例子:

[
    0.0,  # Relative max amplitude of first second of audio clip (0%)
    0.04,  # Relative max amplitude of second second of audio clip (4%)
    0.15,  # Relative max amplitude of third second of audio clip (15%)
    # Some more
    1.0,  # The highest amplitude of the whole audio clip will be 1.0 (100%)
]

我假设我必须至少使用 numpy 和 Python 的 wave 模块,但我不确定如何获取我想要的数据。我喜欢使用 Python,但我并不完全反对使用某种命令行工具。

最佳答案

如果您允许 gstreamer,这里有一个小脚本可以解决问题。它接受 gstreamer 可以处理的任何音频文件。

  • 构建gstreamer pipeline,使用audioconvert将channels降为1,使用level模块获取peaks
  • 运行管道直到命中 EOS
  • 根据找到的最小值/最大值归一化峰值。

片段:

import os, sys, pygst
pygst.require('0.10')
import gst, gobject
gobject.threads_init()

def get_peaks(filename):
    global do_run

    pipeline_txt = (
        'filesrc location="%s" ! decodebin ! audioconvert ! '
        'audio/x-raw-int,channels=1,rate=44100,endianness=1234,'
        'width=32,depth=32,signed=(bool)True !'
        'level name=level interval=1000000000 !'
        'fakesink' % filename)
    pipeline = gst.parse_launch(pipeline_txt)

    level = pipeline.get_by_name('level')
    bus = pipeline.get_bus()
    bus.add_signal_watch()

    peaks = []
    do_run = True

    def show_peak(bus, message):
        global do_run
        if message.type == gst.MESSAGE_EOS:
            pipeline.set_state(gst.STATE_NULL)
            do_run = False
            return
        # filter only on level messages
        if message.src is not level or \
           not message.structure.has_key('peak'):
            return
        peaks.append(message.structure['peak'][0])

    # connect the callback
    bus.connect('message', show_peak)

    # run the pipeline until we got eos
    pipeline.set_state(gst.STATE_PLAYING)
    ctx = gobject.gobject.main_context_default()
    while ctx and do_run:
        ctx.iteration()

    return peaks

def normalize(peaks):
    _min = min(peaks)
    _max = max(peaks)
    d = _max - _min
    return [(x - _min) / d for x in peaks]

if __name__ == '__main__':
    filename = os.path.realpath(sys.argv[1])
    peaks = get_peaks(filename)

    print 'Sample is %d seconds' % len(peaks)
    print 'Minimum is', min(peaks)
    print 'Maximum is', max(peaks)

    peaks = normalize(peaks)
    print peaks

和一个输出示例:

$ python gstreamerpeak.py 01\ Tron\ Legacy\ Track\ 1.mp3 
Sample is 182 seconds
Minimum is -349.999999922
Maximum is -2.10678956719
[0.0, 0.0, 0.9274581631597019, 0.9528318436488018, 0.9492396611762614,
0.9523404330322813, 0.9471685835966183, 0.9537281219301242, 0.9473486577135167,
0.9479292126411365, 0.9538221105563514, 0.9483845795252251, 0.9536790832823281,
0.9477264933378022, 0.9480077366961968, ...

关于python - 每秒获取音频文件的最大振幅,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9344888/

相关文章:

javascript - HTML5 音频 IE9 错误 : Unexpected call to method or property access

audio - 从音频文件创建平坦的声波(波形)图像

python - 将 API 请求附加到另一个字典

javascript - HTML5 和 jQuery 停止了吗?

python - 最Pythonic的方式来中止缓存装饰器?

ios - 单击 AVAudioplayer Swift Xcode 中的按钮时自动更改文件(url、路径)

R相当于MATLAB的过滤函数

php - 音频波形许可被拒绝bbcrd

python - Django floppyforms OSMPointWidget 不显示 map

python - 使用类在Python中添加两组坐标?