{% extends 'base.html' %} {% block headtitle %}Media - {{ media.key }}{% endblock %} {% block content %}

Media {{ media.key }}

{{ media.url }}

Saving to: {{ media.source.directory_path }}

Source Source
{{ media.source }}
Title Title
{{ media.title }}
Duration Duration
{{ media.duration_formatted }}
Filename Filename
{{ media.filename }}
Desired format Desired format
{{ media.source.format_summary }}
Fallback Fallback
{{ media.source.get_fallback_display }}
Downloaded Downloaded
{% if media.downloaded %}{% else %}{% endif %}
Available formats Available formats
{% for format in media.formats %} ID: {{ format.format_id }}{% if format.vcodec|lower != 'none' %}, {{ format.format_note }} ({{ format.width }}x{{ format.height }}), fps:{{ format.fps|lower }}, video:{{ format.vcodec }} @{{ format.tbr }}k{% endif %}{% if format.acodec|lower != 'none' %}, audio:{{ format.acodec }} @{{ format.abr }}k / {{ format.asr }}Hz{% endif %} {% empty %} Media has no indexed available formats {% endfor %}
Matched formats Matched formats
Combined: {% if combined_format %}{{ combined_format }} {% if combined_exact %}(exact match){% else %}(fallback){% endif %}{% else %}No match{% endif %}
Audio: {% if audio_format %}{{ audio_format }} {% if audio_exact %}(exact match){% else %}(fallback){% endif %}{% else %}No match{% endif %}
Video: {% if video_format %}{{ video_format }} {% if video_exact %}(exact match){% else %}(fallback){% endif %}{% else %}No match{% endif %}
{% endblock %}