cordova-plugin-media
cordova-plugin-media copied to clipboard
media fadeIn and fadeOut effect
trafficstars
Hello
Can this PlugIn reproduce a fadeIn and fadeOut effect for the audio being played?
Whether it is an MP3 or ShoutCast URL ?
If so, which Platforms are supported and do you happen to have a code sample?
Regards
Late response, but fading in/out is really just an adjustment of the volume. For fading in you would just set the volume to 0.0 in the beginning and raise it by 0.1 (or whatever) every few hundred milliseconds until you reach 1.0. For fading out you would need to monitor the current position and trigger a function to decrease the volume in the final few seconds (basically the same as above but in reverse).