How to embed mp4 videoclips from files in the gallery?
Posted: 02 Feb 2025, 06:39
In older Phoca Gallery the format below was working
<object
style="width: 800px; height: 600px;"
type="video/mp4">
<param value="/images/phocagallery/myvideoclip.mp4" name="movie"/>
<param value="high" name="quality"/>
<param value="transparent" name="wmode"/>
<param value="#010101" name="bgcolor"/>
<param value="false" name="autoplay"/>
<param value="true" name="allowfullscreen"/>
<param value="always" name="allowscriptaccess"/>
</object>
Probably was relying on AllVideos Reloaded plugin
Now in Joomla 3+ there is no such plugin but there is AllVideo
For instance I can insert video in an article with the markup below and works fine:
<video controls="controls" width="300" height="150">
<source src="images/phocagallery/myvideoclip.mp4" type="video/mp4" /></video>
This markup format does not seem not work with Phoca Gallery
The question is what are the necessary plugins and the format for the videoclips to work?
Phoca Gallery 4.4.3
Thank you in advance
<object
style="width: 800px; height: 600px;"
type="video/mp4">
<param value="/images/phocagallery/myvideoclip.mp4" name="movie"/>
<param value="high" name="quality"/>
<param value="transparent" name="wmode"/>
<param value="#010101" name="bgcolor"/>
<param value="false" name="autoplay"/>
<param value="true" name="allowfullscreen"/>
<param value="always" name="allowscriptaccess"/>
</object>
Probably was relying on AllVideos Reloaded plugin
Now in Joomla 3+ there is no such plugin but there is AllVideo
For instance I can insert video in an article with the markup below and works fine:
<video controls="controls" width="300" height="150">
<source src="images/phocagallery/myvideoclip.mp4" type="video/mp4" /></video>
This markup format does not seem not work with Phoca Gallery
The question is what are the necessary plugins and the format for the videoclips to work?
Phoca Gallery 4.4.3
Thank you in advance