diff --git a/.gitbook/assets/Audacity Mac Install (1).png b/.gitbook/assets/Audacity Mac Install (1).png deleted file mode 100644 index 8adc0cf..0000000 Binary files a/.gitbook/assets/Audacity Mac Install (1).png and /dev/null differ diff --git a/.gitbook/assets/Audacity Mac Install.png b/.gitbook/assets/Audacity Mac Install.png deleted file mode 100644 index 8adc0cf..0000000 Binary files a/.gitbook/assets/Audacity Mac Install.png and /dev/null differ diff --git a/.gitbook/assets/Screen Shot 2022-05-02 at 5.18.41 PM (1).png b/.gitbook/assets/Screen Shot 2022-05-02 at 5.18.41 PM (1).png deleted file mode 100644 index 8adc0cf..0000000 Binary files a/.gitbook/assets/Screen Shot 2022-05-02 at 5.18.41 PM (1).png and /dev/null differ diff --git a/.gitbook/assets/Screen Shot 2022-05-02 at 5.18.41 PM.png b/.gitbook/assets/Screen Shot 2022-05-02 at 5.18.41 PM.png deleted file mode 100644 index 8adc0cf..0000000 Binary files a/.gitbook/assets/Screen Shot 2022-05-02 at 5.18.41 PM.png and /dev/null differ diff --git a/community/contributing/tutorials/todo/asio-in-audacity.md b/community/contributing/tutorials/todo/asio-in-audacity.md index 0cf2856..ce11865 100644 --- a/community/contributing/tutorials/todo/asio-in-audacity.md +++ b/community/contributing/tutorials/todo/asio-in-audacity.md @@ -7,6 +7,10 @@ description: >- # ASIO in Audacity +{% hint style="info" %} +ASIO recently got open sourced. It will be natively supported in a future version. In the meantime, a version of Audacity 3.7.5 with ASIO enabled can be downloaded here: [https://github.com/LeoWattenberg/audacity/releases/tag/asio](https://github.com/LeoWattenberg/audacity/releases/tag/asio) +{% endhint %} + Audacity can record and playback audio on your Windows PC using one of the following three alternative interfaces: * MME @@ -15,13 +19,13 @@ Audacity can record and playback audio on your Windows PC using one of the follo ASIO (Audio Stream Input / Output) is an additional proprietary interface to record and playback audio in Microsoft Windows. ASIO bypasses the Windows audio mixing components to provide lower latency direct communication between computer audio software and hardware. Most audio recording interfaces manufacturers provide a driver to support ASIO. -* ASIO supports 24-bit sampling which is only otherwise available using [Windows WASAPI](https://docs.microsoft.com/en-us/windows/win32/coreaudio/wasapi?redirectedfrom=MSDN) or WDM-KS (Windows Driver Model Kernel Streaming). 24-bit sampling allows greater dynamic range, lower theoretical [noise floor](https://manual.audacityteam.org/man/glossary.html#noise\_floor) and greater resolution at lower audible volumes. +* ASIO supports 24-bit sampling which is only otherwise available using [Windows WASAPI](https://docs.microsoft.com/en-us/windows/win32/coreaudio/wasapi?redirectedfrom=MSDN) or WDM-KS (Windows Driver Model Kernel Streaming). 24-bit sampling allows greater dynamic range, lower theoretical [noise floor](https://manual.audacityteam.org/man/glossary.html#noise_floor) and greater resolution at lower audible volumes. * An unmixed ASIO output is "bit identical" to the original source. * Multiple physical input and output channels of the hardware are accessed over one single device. Windows [DirectSound](http://en.wikipedia.org/wiki/DirectSound) interface protocol support multi-channel recording on some sound devices, but not the very low latencies that are possible on ASIO. -[https://manual.audacityteam.org/man/asio\_audio\_interface.html](https://manual.audacityteam.org/man/asio\_audio\_interface.html) +[https://manual.audacityteam.org/man/asio\_audio\_interface.html](https://manual.audacityteam.org/man/asio_audio_interface.html) * [ ] [https://gist.github.com/SteveALee/da24c2be633340b8791066dd98eb5d0b](https://gist.github.com/SteveALee/da24c2be633340b8791066dd98eb5d0b)