Open OAhlke1 opened 2 months ago
Hey @OAhlke1 "my Typo3-Version is 13.2.1" -> The extension is for TYPO3 v11 max. Do you upgrade from a old version or why you want to handle EXT:html5videoplayer stuff in TYPO3 v13? Regards, Tim
Hi @lochmueller Well its because I am aware to the typical way of embedding a video to the video-tag via the src-attribute to be honest. I would be thankful for every help: which way would you to embed a video? And I started from scratch with version 13.2.1 :-)
Oh, and here is the HTML-snippet I ment:
<f:debug>{video}</f:debug>
<video controls>
<source src="{video}" type="video/mp4">
Your browser does not support the video tag.
</video>
But the debugger says, that video does not contain anything.
Thanks again for your reply :-)
Hello Mr. Lochmueller,
I want to embed a video via a Typo3 script (which you will find below) so that the URL of the video is stored in a variable which is set as value for the src-attribute of the video-tag. The problem I am facing is now, that the variable is always empty, no matter what I do. I am using a Text&Media-field and my Typo3-Version is 13.2.1
Here is the script that ChatGPT generated for me:
I really hope for your answer!
OAhlke1