{% extends "base.html" %} {% block title %}{{ filename }}{% endblock %} {% block content %}

{{ filename }}

<{{ media_type }} controls class="w-75"> Your browser does not support the media element.
{% if title %}

Title: {{ title }}

{% endif %} {% if artist %}

Artist: {{ artist }}

{% endif %} {% if album %}

Album: {{ album }}

{% endif %} {% if genre %}

Genre: {{ genre }}

{% endif %} {% if duration %}

Duration: {{ "%.2f"|format(duration) }} seconds

{% endif %} {% if bitrate %}

Bitrate: {{ bitrate }} kbps

{% endif %} {% if sample_rate %}

Sample Rate: {{ sample_rate }} Hz

{% endif %} {% if channels %}

Channels: {{ channels }}

{% endif %}
{% endblock %}