Skip to content

Latest commit

 

History

History
119 lines (83 loc) · 9 KB

File metadata and controls

119 lines (83 loc) · 9 KB
graph LR
    PyoServer["PyoServer"]
    Signal_Generators["Signal Generators"]
    Audio_Processing_Analysis["Audio Processing & Analysis"]
    Control_Event_Management["Control & Event Management"]
    External_Interfaces["External Interfaces"]
    PyoGUI["PyoGUI"]
    PyoServer -- "Manages/Hosts" --> Signal_Generators
    PyoServer -- "Manages/Hosts" --> Audio_Processing_Analysis
    PyoServer -- "Communicates with" --> External_Interfaces
    PyoServer -- "Receives Control From" --> PyoGUI
    Signal_Generators -- "Feeds Audio To" --> Audio_Processing_Analysis
    Signal_Generators -- "Parameters Controlled By" --> Control_Event_Management
    Signal_Generators -- "Parameters Controlled By" --> PyoGUI
    Audio_Processing_Analysis -- "Receives Audio From" --> Signal_Generators
    Audio_Processing_Analysis -- "Parameters Controlled By" --> Control_Event_Management
    Audio_Processing_Analysis -- "Provides Data To" --> PyoGUI
    Audio_Processing_Analysis -- "Parameters Controlled By" --> PyoGUI
    Control_Event_Management -- "Sends Control To" --> Signal_Generators
    Control_Event_Management -- "Sends Control To" --> Audio_Processing_Analysis
    Control_Event_Management -- "Receives Events From" --> External_Interfaces
    External_Interfaces -- "Sends Events To" --> Control_Event_Management
    External_Interfaces -- "Communicates with" --> PyoServer
    PyoGUI -- "Sends Control To" --> PyoServer
    PyoGUI -- "Controls Parameters Of" --> Signal_Generators
    PyoGUI -- "Controls Parameters Of" --> Audio_Processing_Analysis
    PyoGUI -- "Displays Data From" --> Audio_Processing_Analysis
    click PyoServer href "https://github.com/CodeBoarding/GeneratedOnBoardings/blob/main/pyo/PyoServer.md" "Details"
    click Signal_Generators href "https://github.com/CodeBoarding/GeneratedOnBoardings/blob/main/pyo/Signal_Generators.md" "Details"
    click Audio_Processing_Analysis href "https://github.com/CodeBoarding/GeneratedOnBoardings/blob/main/pyo/Audio_Processing_Analysis.md" "Details"
    click Control_Event_Management href "https://github.com/CodeBoarding/GeneratedOnBoardings/blob/main/pyo/Control_Event_Management.md" "Details"
    click External_Interfaces href "https://github.com/CodeBoarding/GeneratedOnBoardings/blob/main/pyo/External_Interfaces.md" "Details"
    click PyoGUI href "https://github.com/CodeBoarding/GeneratedOnBoardings/blob/main/pyo/PyoGUI.md" "Details"
Loading

CodeBoardingDemoContact

Details

The pyo library is architected as a highly interconnected, real-time digital signal processing system, with the PyoServer at its core orchestrating all audio operations. The primary data flow begins with Signal Generators producing raw audio, which then passes through the Audio Processing & Analysis component for various transformations and effects. This audio stream is ultimately managed by the PyoServer for output. Control over this audio flow is achieved through the Control & Event Management component, which processes events from External Interfaces (like MIDI and OSC) to dynamically adjust parameters within both Signal Generators and Audio Processing & Analysis modules. User interaction is facilitated by the PyoGUI, which provides visual controls that directly influence the PyoServer and the audio processing chain, while also displaying real-time audio analysis data. This design emphasizes a clear, directed signal and control flow, making it ideal for visual representation as a dataflow graph. The PyoCore provides foundational utilities supporting all these components, and the PyoEditor acts as an external IDE for development and interaction with the system.

PyoServer [Expand]

The central audio processing engine, managing audio I/O, global settings, and orchestrating the real-time signal processing graph.

Related Classes/Methods:

Signal Generators [Expand]

Modules providing various oscillators and noise sources to create raw audio signals.

Related Classes/Methods:

Audio Processing & Analysis [Expand]

A comprehensive component for applying effects, filters, dynamics, spatialization, managing audio data tables, and performing various forms of audio analysis.

Related Classes/Methods:

Control & Event Management [Expand]

Provides tools for creating, managing, and sequencing musical events, patterns, and control signals over time.

Related Classes/Methods:

External Interfaces [Expand]

Handles communication with external hardware and software, primarily MIDI and Open Sound Control (OSC).

Related Classes/Methods:

PyoGUI [Expand]

Provides graphical user interface elements for interacting with and visualizing audio processes.

Related Classes/Methods: