This question is similar to Audio not playing in Story Map Tour , but I'm trying to add audio through the Tabbed Story Map Series builder. However, when I type in the following HTML code:
<
audio
controls>
<
source
src
=
"http://downloads.esri.com/agol/labs/maptour/horse.mp3"
type
=
"audio/mpeg"
> <
embed
height
=
"50"
width
=
"100"
</
audio
>
into the source code, I get the audio player without any content. When I check the HTML code again, the code has been converted into the following:
<p>
<audio controls=""> </audio>
</p>
Is there any chance this issue might also be addressed in the mid-September update? In the meantime, I'm using the Story Map Journal, but I would ideally like to use either Story Map Series or Story Map Tour for my project that relies on audio files.
Any information about this would be greatly appreciated. Thanks!
Solved! Go to Solution.
Hi Edwin
Use this code and it should work:
<audio controls src="https://downloads.esri.com/agol/labs/maptour/horse.mp3" type="audio/mpeg"></audio>
(This code doesn't work in Map Tour, and neither does the code you posted above (because of an issue - see https://community.esri.com/thread/217570-audio-not-playing-in-map-tour-story-map )
Rupert
Hi Edwin
Use this code and it should work:
<audio controls src="https://downloads.esri.com/agol/labs/maptour/horse.mp3" type="audio/mpeg"></audio>
(This code doesn't work in Map Tour, and neither does the code you posted above (because of an issue - see https://community.esri.com/thread/217570-audio-not-playing-in-map-tour-story-map )
Rupert
Hi Rupert,
Thanks so much! As you mentioned, it works in the Map Series template, but not in Map Tour.
Edwin