Thanks that put me in the right direction. For those who want details here is what I did below in TWIG and it works well:
{% for item in post.upload_audio %}
<audio controls="" autoplay="" name="media"><source src="{{ item.src }}" type="audio/mpeg"></audio>
{% endfor %}