A Brevard County Drupal meetup will take place on Thursday, August 18 at 7pm in downtown Melbourne. This is a(nother) change from our usual 2nd Thursday of the month meetup.
The meetup will take place at the offices of Radiant Blue - 516 East New Haven Avenue. As part of the agreement to use their facilities, everyone walking through the door must sign the visitor's sheet. For this meetup, there will not be WiFi access, but we will have access to a presentation screen and there will be one computer with internet connectivity.
We'll be taking a look at an HTML5 Audio module that Ben Hosmer is working on - and possibly working together to figure out the best way to get it working!
Feel free to suggest additional topics in the comments.
Thanks,
-mike

Comments
Here is the goal:To have a
Here is the goal:
To have a working HTML5 Audio solution for an audio display formatter option.
One module I have been toying with is the HTML5 Media module.
The issue with this module is that it outputs the audio tags as separate tags:
<audio><src = "audiofile.mp3">
</audio>
<audio>
<src = "audiofile.mp4">
</audio>
This results in two players being displayed. Depending on the browser, the .mp3 or the .mp4 will play fine, but the other file shows as an inoperable audio player
I propose a new method, either through a patch to the HTML5 Media module, or the creation of a new HTML5 Audio module to output the tags like this:
<audio><src = "audiofile.mp3">
<src = "audiofile.mp4">
</audio>
There are two options I see here.
There is a Github repo of the HTML5 Media module