Roxy Video Support

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
9 年 前
Anyone know how/if the Roxy File manager can handle .mp4 video files?
9 年 前
Maybe you should try this,

locate RoxyFilemanController.cs file in Administration\Controllers and paste this code:

            else if (ext == ".mp4" || ext == ".mp3")
                ret = "media";

between lines 176 and 177
9 年 前
Thanks guys!

So, yes, that change allows me to view the files in explorer and add them.  In my example, just using "insert video" into a topic page.
So, I select my .mp4 file...however, on the front end, I get the following message in the video box.

No video with supported format and MIME type found.
9 年 前
If anyone is looking to play embedded mp4 files in IIS 7.5, you can do the following;

The mp4 mime type is not inherited in IIS, so go ahead and add it with (.mp4 -> video/mpeg)

In the web.config, the staticContenet sections gets modified as follows.

<staticContent>
      <!--Cache static content for 24 hours-->
      <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="24.00:00:00" />
      <!--Allow json file loading (used by Roxy Fileman)-->
      <remove fileExtension=".json" />
      <mimeMap fileExtension=".mp4" mimeType="video/mpeg" />
      <mimeMap fileExtension=".json" mimeType="application/json" />
    </staticContent>

Then you can use the <video> tag to use the HTML5 player.
9 年 前
Nop-Templates.com wrote:
Maybe you should try this,

locate RoxyFilemanController.cs file in Administration\Controllers and paste this code:

            else if (ext == ".mp4" || ext == ".mp3")
                ret = "media";

between lines 176 and 177


Thank you very much
2 年 前
Hi Good Day. I would like to ask if it is possible to auto play the .mp4 format after adding it to the topic pages? Hope to hear from you soon.
2 年 前
lancerzalzos wrote:
Hi Good Day. I would like to ask if it is possible to auto play the .mp4 format after adding it to the topic pages? Hope to hear from you soon.

you can put embedded video by iframe easily and add autoplay tag inside iframe
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.