{# Audio verification warning shown in #save-status when probe fails. Provides a "Save anyway" form that re-posts all episode fields with skip_audio_verify=true so the user never has to re-fill the form. #}
{% if verification.kind == "wrong_format" %}

audio warning {{ verification.message }}

This URL did not return a recognised MP3 or M4A/AAC content type, which may cause problems in podcast apps. You can save anyway if you are certain the file is valid (e.g. the CDN is mis-reporting the MIME type).

{% elif verification.kind == "unreachable" %}

audio unreachable {{ verification.message }}

The file could not be reached right now. You can save without a probe and run Probe now once the asset is available.

{% endif %} {# Re-post every episode field plus skip_audio_verify=true. #}
{% for name, value in form_data.items() %} {% endfor %}
{% if verification.kind == "wrong_format" %} Audio may not play in all podcast apps. {% else %} Audio metadata will be filled in after probing. {% endif %}
Saving…