12
返回列表 发新帖

9

主题

0

好友

135

积分

论坛游民 当前离线

Rank: 3Rank: 3

UID
52941
帖子
144
精华
0
经验
135 点
金钱
130 ¥
注册时间
2008-9-2
 楼主| 发表于 2024-4-18 11:57 | 显示全部楼层
本帖最后由 ianzou 于 2024-4-18 12:04 编辑

播放,播放器--虚拟声卡(数字环回)--CamillaDSP(卷积滤波、分频)--USB声卡(7.1声道)--功放(同相位架构)--直通喇叭。
CamillaDSP支持wav和txt格式的FIR滤波器文件,只需在配置文件里改变相应的地方就可。为使用方便,编辑一个一行命令的sh,touch start_camilladsp_wav_3000.sh,内容为camilladsp config_wav_3000.yml。改变属性为可执行,双击运行。也可以把这个sh设置成开机运行,直接打开播放器播放。
截屏2024-04-18 11.30.02.jpg

9

主题

0

好友

135

积分

论坛游民 当前离线

Rank: 3Rank: 3

UID
52941
帖子
144
精华
0
经验
135 点
金钱
130 ¥
注册时间
2008-9-2
 楼主| 发表于 2024-4-18 12:09 | 显示全部楼层
下面是一个使用txt格式的配置文件:
---
devices:
  samplerate: 192000
  chunksize: 2048
  capture:
    type: CoreAudio
    channels: 2
    device: "BlackHole 2ch"
    format: FLOAT32LE
  playback:
    type: CoreAudio
    channels: 4
    device: "Speaker"
    format: S24LE

filters:
  highpass:
    type: Conv
    parameters:
      type: Raw
      filename: High3200.txt
  lowpass:
    type: Conv
    parameters:
      type: Raw
      filename: Low3200.txt

mixers:
  to4:
    channels:
      in: 2
      out: 4
    mapping:
      - dest: 0
        sources:
          - channel: 0
            gain: 0
            inverted: false
      - dest: 1
        sources:
          - channel: 1
            gain: 0
            inverted: false
      - dest: 2
        sources:
          - channel: 0
            gain: 0
            inverted: false
      - dest: 3
        sources:
          - channel: 1
            gain: 0
            inverted: false

pipeline:
  - type: Mixer
    name: to4
  - type: Filter
    channel: 0
    names:
      - lowpass
  - type: Filter
    channel: 1
    names:
      - lowpass
  - type: Filter
    channel: 2
    names:
      - highpass
  - type: Filter
    channel: 3
    names:
      - highpass
您需要登录后才可以回帖 登录 | 注册

本版积分规则

Powered by Discuz! X3.4

© 2001-2012 Comsenz Inc.

返回顶部