├── .gitattributes ├── .gitignore ├── changelog.md ├── license.txt ├── love-microphone ├── Device.lua ├── QueueableSource.lua ├── init.lua └── openal.lua ├── readme.md └── samples ├── echo-low-latency.lua └── echo.lua /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LPGhatguy/love-microphone/HEAD/.gitignore -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LPGhatguy/love-microphone/HEAD/changelog.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LPGhatguy/love-microphone/HEAD/license.txt -------------------------------------------------------------------------------- /love-microphone/Device.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LPGhatguy/love-microphone/HEAD/love-microphone/Device.lua -------------------------------------------------------------------------------- /love-microphone/QueueableSource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LPGhatguy/love-microphone/HEAD/love-microphone/QueueableSource.lua -------------------------------------------------------------------------------- /love-microphone/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LPGhatguy/love-microphone/HEAD/love-microphone/init.lua -------------------------------------------------------------------------------- /love-microphone/openal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LPGhatguy/love-microphone/HEAD/love-microphone/openal.lua -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LPGhatguy/love-microphone/HEAD/readme.md -------------------------------------------------------------------------------- /samples/echo-low-latency.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LPGhatguy/love-microphone/HEAD/samples/echo-low-latency.lua -------------------------------------------------------------------------------- /samples/echo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LPGhatguy/love-microphone/HEAD/samples/echo.lua --------------------------------------------------------------------------------