Hi Didier,
please try this steps:
1. copy videos.flowplayer.php from [joomla site root]/components/com_community/templates/jomsocial/layouts/ to [joomla site root]/templates/socialize/html/com_community/layouts/
2. edit it, and at line 64 change the code from
<script type="text/javascript">
flowplayer("player", {src: "<?php echo $playerFile; ?>", wmode:'opaque' },
{
streamingServer: 'lighttpd',
playlist: [
{
url: '<?php echo $video->getThumbnail(); ?>',
scaling: 'scale'
},
{
url: '<?php echo $video->getFlv(); ?>',
title: '<?php echo CString::str_ireplace("'", "", $video->title); ?>',
autoPlay: false,
autoBuffering: true,
provider: 'lighttpd',
scaling: "scale"
}
],
plugins: {
lighttpd: {
url: '<?php echo $playerPlugin; ?>',
queryString: escape('?target=${start}')
},
controls: {
url: '<?php echo $playerControl; ?>'
}
}
}
);
</script>
to
<script type="text/javascript">
flowplayer("player", {src: "<?php echo $playerFile; ?>", wmode:'opaque' },
{
key: '#$7162d2d730cf607ac6d',
streamingServer: 'lighttpd',
playlist: [
{
url: '<?php echo $video->getThumbnail(); ?>',
scaling: 'scale'
},
{
url: '<?php echo $video->getFlv(); ?>',
title: '<?php echo CString::str_ireplace("'", "", $video->title); ?>',
autoPlay: false,
autoBuffering: true,
provider: 'lighttpd',
scaling: "scale"
}
],
plugins: {
lighttpd: {
url: '<?php echo $playerPlugin; ?>',
queryString: escape('?target=${start}')
},
controls: {
url: '<?php echo $playerControl; ?>'
}
}
}
);
</script>
3. replace #$7162d2d730cf607ac6d with your license key
Regards