function theme_video_encoding_failed in Video 6.4
Same name and namespace in other branches
- 6.5 video_formatter.inc \theme_video_encoding_failed()
- 6.3 types/uploadfield/uploadfield_formatter.inc \theme_video_encoding_failed()
Display an "encoding failed" message"
1 theme call to theme_video_encoding_failed()
File
- ./
video_formatter.inc, line 172 - Video formatter hooks and callbacks.
Code
function theme_video_encoding_failed() {
return '<div class="video-ffmpeg-helper-encoding-failed">' . t('The video conversion process has failed. You might want to submit a simpler video format like <em>mpeg</em> or <em>divx avi</em>.<br />If the problem persists please contact website administrators.') . '</div>';
}