You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to change width and height of audio-player. So I looked for the typoscript-setup, but didn't found anything. So I went to code and found, that in case of audiofiles there is no width- & height-configuration:
I tried to change width and height of audio-player. So I looked for the typoscript-setup, but didn't found anything. So I went to code and found, that in case of audiofiles there is no width- & height-configuration:
$parArray['src'] = 'src="' . $GLOBALS['TSFE']->absRefPrefix . $incFile . '"';
if (\TYPO3\CMS\Core\Utility\GeneralUtility::inList('au,wav,mp3', $fileinfo['fileext'])) {
}
instead of:
if (\TYPO3\CMS\Core\Utility\GeneralUtility::inList('avi,mov,mpg,asf,wmv', $fileinfo['fileext'])) {
$parArray['width'] = 'width="' . $width . '"';
$parArray['height'] = 'height="' . $height . '"';
}
I think it's important to have possibilities to change width and height!
best regards
Johannes
The text was updated successfully, but these errors were encountered: