video-play-html5-audio.tpl.php in Video 7.2
File
theme/video-play-html5-audio.tpl.php
View source
<?php
$autoplayattr = $autoplay ? ' autoplay="autoplay"' : '';
$preload = $autobuffering ? 'auto' : 'metadata';
?>
<audio preload="<?php
echo $preload;
?>" controls="controls""<?php
echo $autoplayattr;
?>>
<?php
foreach ($files as $index => $file) {
if (strncmp($file->filemime, 'audio/', 6) !== 0) {
continue;
}
?>
<source src="<?php
echo check_plain(file_create_url($file->uri));
?>" type="<?php
echo $file->filemime;
?>" />
<?php
}
echo theme('video_flv', array(
'item' => $item,
'width' => $width,
'height' => $height,
));
?>
</audio>