核心代码只有约1K行Golang代码的音频处理库:Beep

翟志军 · · 2954 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

image.png

Beep是一个处理和访问音频的库。

特性

  • Decode and play WAV, MP3, OGG, and FLAC.
  • Encode and save WAV.
  • Very simple API. Limiting the support to stereo (two channel) audio made it possible to simplify the architecture and the API.
  • Rich library of compositors and effects. Loop, pause/resume, change volume, mix, sequence, change playback speed, and more.
  • Easily create new effects. With the Streamer interface, creating new effects is very easy.
  • Generate completely own artificial sounds. Again, the Streamer interface enables easy sound generation.
  • Very small codebase. The core is just ~1K LOC.

代码样例

package main

import (
    "log"
    "os"

    "github.com/faiface/beep"
)

func main() {
    f, err := os.Open("Rockafeller Skank.mp3")
    if err != nil {
        log.Fatal(err)
    }
}

源码地址:https://github.com/faiface/beep


有疑问加站长微信联系(非本文作者)

本文来自:简书

感谢作者:翟志军

查看原文:核心代码只有约1K行Golang代码的音频处理库:Beep

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

2954 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传