How to add my own video to product page (Not youtube video)

Hi @james0786 ,

Welcome to the Shopify Community!

I understand that you want to add your own video to your product page. I may be able to help you with this.

Note: Make sure that you use MP4 video format, which is the most widely supported video format currently available.

Note: If your video file is larger than 20MB, you’ll have to upload it to YouTube and use the embed code. Otherwise, you’ll need to find a hosting provider for your video, instead of using my Step 1 suggestion of Shopify Files.

Step 1: Upload your video on the Files page:

  1. From your Shopify admin, go to Settings > Files.

  2. Click Upload files.

  3. Select the video to upload. Click Open.

  4. Copy the URL of the video and store it somewhere (we’ll need it again soon):

Step 2: Add HTML content to your product with the rich text editor:

  1. Click the Show HTML button to view the HTML code for the product description inside the rich text editor:

    click-show-html-c4a05c36637e301be83a98ed5928c72d3348e385f2e0082cac21268b3516d409.png

  2. Get your video URL from Step 1. Add this code to the HTML:

    <video controls="controls" style="max-width: 100%; height: auto;">
      <source src="your_url_goes_here" type="video/mp4" />
    Your browser does not support our video.
    </video>
    

    Be sure to replace “your_url_goes_here” in the code with the URL from Step 1.

  3. Click Save.

Let me know if this solves your problem or if you need further help!