Hi I'm trying to develop a Shiny app where a moveable slider triggers the audio samples, whereby each point in a slider (say ranging from 0 to 100) is mapped to a specific audio. So moving the slider will alter the sound according to the slider position. Ideally, I would want the transition between slider positions to smooth sounding and highly interactive.
I'm guessing I would need to use the code below to map each slider value to a specific audio file.
tags$audio(src = "sound.mp3", type = "audio/mp3", autoplay = NA, controls = NA)
Anyone know of the best approach for getting such task done or give me some pointers?