Bug #44797
closedRendering html5 video uses flvplayer for fallback instead of flowplayer
0%
Description
It looks like the configuration is not properly merged when using the flowplayer as a fallback for rendering html5 video.
Traced this down to the following lines in 'class.tslib_content_media.php' (line 215 in TYPO3 4.7):
switch ($renderType) {
case 'flowplayer':
$conf[$conf['type'] . '.'] = array_merge((array) $conf['mimeConf.']['flowplayer.'][$conf['type'] . '.'], $typeConf);
$conf = array_merge((array) $conf['mimeConf.']['flowplayer.'], $conf);
unset($conf['mimeConf.']);
The configuration should be merged the other way around. This also applies to the rendering of "qt":
case 'qt' :
$conf[$conf['type'] . '.'] = array_merge($conf['mimeConf.']['swfobject.'][$conf['type'] . '.'], $typeConf);
Here the rendering of 'swfobject' is used instead of 'mimeConf.qtobject'.
Updated by Oliver Hader almost 12 years ago
Thanks for digging into this issue. Since you already have a possible solution, could you please push that to our Git review system?
If you're new to Git, find according step-by-step tutorial here
Don't hesitate to get back to me by mailto oliver@typo3.org in case of further questions.
Updated by Oliver Hader almost 12 years ago
- Status changed from New to Accepted
- Target version set to 4.7.8
Updated by Mathias Schreiber almost 10 years ago
- Target version changed from 4.7.8 to 7.2 (Frontend)
- Is Regression set to No
Updated by Benni Mack over 9 years ago
- Target version changed from 7.2 (Frontend) to 7.4 (Backend)
Updated by Wouter Wolters over 9 years ago
- Assignee set to Marc Bastian Heinrichs
Updated by Susanne Moog over 9 years ago
- Target version changed from 7.4 (Backend) to 7.5
Updated by Benni Mack about 9 years ago
- Category changed from Frontend to 1606
- Assignee deleted (
Marc Bastian Heinrichs) - Target version deleted (
7.5)
Updated by Georg Ringer about 9 years ago
mediace has been extracted from the core and is not needed anymore using CMS7. however it can be now found at github ant the issue has been moved to https://github.com/FriendsOfTYPO3/mediace/issues/10
Updated by Georg Ringer about 9 years ago
- Status changed from Accepted to Closed