Coder Social home page Coder Social logo

rtsound's Introduction

RtSoundIO

The OOP-style wrapper for RtAudio

Concept

The main idea is to implement observer pattern for audio stream related events, so this library contains a client base class RtSoundClient with relevant virtual methods. These events are the following:

  • to receive audio devices list - RtSoundClient::updateSoundDevices
  • to change audio stream configuraion - RtSoundClient::configureStream
  • to receive audio stream configuration - RtSoundClient::applyStreamConfig
  • to receive audio stream data - RtSoundClient::streamDataReady

Usage

You can find a complete example here RtSoundIODemo. In this example we want to make a signal (sine wave) generator and stream signal to sound card's output. It could be someting like this:

class SineGenerator : public RtSoundClient {
  const int _channel{0};
  const float _frequency{1e3};
  const float _amplitude{0.5f};

  void configureStream(RtSoundSetup &setup) override {
    setup.setOutputEnabled(true);
    setup.setOutputChannels(1);
  }

  void streamDataReady(const RtSoundData &data) override {
    const auto dt = streamSetup().timeResolution();
    auto t{data.streamTime()};
    const auto buffer{data.outputBuffer(_channel)};
    for (int i = 0; i != data.framesN(); ++i) {
      buffer[i] = _amplitude * cos(2.0f * M_PI * _frequency * t);
      t += dt;
    }
  }
};

And we need to run it:

const auto gen{std::make_shared<SineGenerator>()};
auto io{RtSoundIO()};
io.addClient(gen);
io.startSoundStream();
std::this_thread::sleep_for(1s);
io.stopSoundStream();

Problems & Solutions

pulseaudio -k && sudo alsa force-reload

rtsound's People

Contributors

gorbatschow avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.