Ich hab das Problem jetzt mit der Erweiterung "ch_flowplayer" gelöst und einfach das Template entsprechend angepasst: Beispiel. Zum Testen die Ziel-URL (nicht die goo.gl-URL) einfach mal bei Google´s Rich Snippets Testing Tool prüfen.
ce_ch_flowplayer.xhtml:
Code:
<div itemscope itemtype="http://schema.org/Movie" class="<?php echo $this->class; ?> block"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>>
<?php if ($this->headline): ?>
<p class="h1-replace">{{iflng::de}}Videos{{iflng}}{{iflng::en}}videos{{iflng}}</p>
<<?php echo $this->hl; ?> itemprop="name" class="strong"><?php echo $this->headline; ?></<?php echo $this->hl; ?>>
<?php endif; ?>
<?php if (!$this->error) : ?>
<div class="player">
<a itemprop="url" href="<?php echo $this->flowplayer['movie']; ?>" style="display:block;width:<?php echo $this->flowplayer['player_width']; ?>px;height:<?php echo $this->flowplayer['player_height']; ?>px;" id="flowplayer<?php echo $this->flowplayer['id']; ?>"> </a>
<meta itemprop="author" content="XXX" />
<script type="text/javascript">
flowplayer("flowplayer<?php echo $this->flowplayer['id']; ?>", "system/modules/ch_flowplayer/html/flowplayer/flowplayer.commercial-3.2.14.swf",{
<?php if ($this->flowplayer['params']) :
echo html_entity_decode($this->flowplayer['params']);
else : ?>
<?php if (!$this->flowplayer['autoplay'] && $this->flowplayer['preview']) : ?>
playlist: [
{url: '<?php echo $this->flowplayer['preview']; ?>', autoPlay: true},
{url: '<?php echo $this->flowplayer['movie']; ?>', autoPlay: false}
]
<?php elseif(!$this->flowplayer['autoplay']) : ?>
clip: { autoPlay: false }
<?php endif; ?>
<?php endif; ?>
}).ipad();
</script>
</div>
<div itemprop="description" class="description"><?php echo $this->description; ?></div>
<?php else : ?>
<?php echo $this->error; ?>
<?php endif; ?>
</div>