We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I was wondering how does lynx handle audio? It probably doesn't have web audio support, but are there any api's for more advanced audio control?
Couldn't see anything about it in the docs
The text was updated successfully, but these errors were encountered:
This may duplicated with #149
There is not a formal support for audio control yet, but you can integrate your extensions to Lynx with the following methods.
Audio's controlling are based on Native APIs on each platform. There are two methods to export the native functionalities to JS.
Native Module is used for bring the native features to front-end. You may create a native module with audio functions like
NativeModules.AudioManager.play("xxxx.mp3");
And binding this method to AVAudioPlayer on iOS, and something similar to it on Android.
And with a Custom Native Component you can also create something like <audio src="xxx.mp3"/> to play a sound.
<audio src="xxx.mp3"/>
Sorry, something went wrong.
I see, thanks for the quick answer!
MoonfaceX
No branches or pull requests
Hi,
I was wondering how does lynx handle audio?
It probably doesn't have web audio support, but are there any api's for more advanced audio control?
Couldn't see anything about it in the docs
The text was updated successfully, but these errors were encountered: