Member-only story
OpenAL Streaming Example
8 min readAug 11, 2021
[On mac OS X, using Objective C]
This is a series of posts about Apple Audio APIs. Read them and practice in order.
Series Episodes:
- S01,01. Reading Basic Info from a Local Audio File
- S01,02. Generating Raw Audio Samples
- S01,03. Audio Stream Basic Descriptions
- S01, 04. Recording With Audio Queues
- S01, 05. Playing Back With Audio Queues
- S01, 06. Converting Any Audio Format to LPCM
- S01, 07. Converting An Audio File to LPCM
- S01, 08. Playing Back With Audio Units
- S01, 09. Audio Unit Input Via A Render Callback
- S01, 10. Connecting Audio Units Together
- S01, 11. Positional Sound with OpenAL
- [this post] S01, 12. OpenAL Streaming Example
- S01, 13. Connecting to a MIDI Controller
- S01, 14. Primitive MIDI Controller
Date of publication: 11th of Aug, 2021
Introduction
Note: You MUST read the previous post, Positional Sound with OpenAL, if you want to understand the content of this current blog post. We will not repeat the explanation of the things that…