function theme_video_encoding_failed in Video 6.5
Same name and namespace in other branches
- 6.3 types/uploadfield/uploadfield_formatter.inc \theme_video_encoding_failed()
- 6.4 video_formatter.inc \theme_video_encoding_failed()
Display an "encoding failed" message"
1 theme call to theme_video_encoding_failed()
- theme_video_formatter_video_plain in ./
video_formatter.inc - Default video cck formatter
File
- ./
video_formatter.inc, line 175 - Video formatter hooks and callbacks.
Code
function theme_video_encoding_failed() {
return '<div class="video-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>';
}