function theme_video_conversion_failed in Video 7.2
Same name and namespace in other branches
- 7 video.theme.inc \theme_video_conversion_failed()
Display an "encoding failed" message"
1 theme call to theme_video_conversion_failed()
- theme_video_formatter_player in ./
video.theme.inc - Default video cck formatter.
File
- ./
video.theme.inc, line 193 - Theme related functions for the Video module.
Code
function theme_video_conversion_failed() {
return '<div class="video-conversion-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 contact your website administrator. Please check logs for further debugging.') . '</div>';
}