record audio in WebAssembly
Solved
Qt for WebAssembly
-
wrote on 29 Jun 2020, 10:15 last edited by
I want to record my audio in qt webassembly. in desktop application I use QAudioInput that it needs multimedia. but qt webassembly dose not support multimedia.
-
wrote on 7 Jul 2020, 06:31 last edited by
Hi,
Yes, QtMultimedia does not support WebAssembly platform at this time. If you wanted to record audio, you would need to either use OpenAL 1.1 (emscripten has built in support for that), or use javascript API like AudioContext or something. -
Hi,
Yes, QtMultimedia does not support WebAssembly platform at this time. If you wanted to record audio, you would need to either use OpenAL 1.1 (emscripten has built in support for that), or use javascript API like AudioContext or something.wrote on 7 Jul 2020, 12:11 last edited by Niushaa 7 Aug 2020, 08:28@lorn-potter Thank you.I use OpenAL and it works for me.