diff --git a/templates/video.html b/templates/video.html
index 97b8350..d5d6d04 100644
--- a/templates/video.html
+++ b/templates/video.html
@@ -29,7 +29,11 @@ By:
{% endif %}
{% for resolution in video.resolutions %}
- {{ resolution.label }}
+ {% if resolution.label == "0p" %}
+ Audio Only
+ {% else %}
+ {{ resolution.label }}
+ {% endif %}
{% endfor %}
Embedded