CMS Development

MiaPV
Top Contributor

HubSpot video automatically allows download?

SOLVE

We just realized you can upload video files natively to HubSpot and embed them in our posts - great! But, there doesn't seem to be any edit functionality or, more importantly, settings to place and for whatever reason, the ability to download the video from the player is the default. Is there a way to get rid of that? And would the only way to style this be through some css?

 

Here is the preview page, the video is all the way towards the bottom

https://www.preventivevet.com/dogs/choosing-safe-dog-chew-toys?hs_preview=yoohmhcf-4485514426

 

Thanks in advance!

0 Upvotes
1 Accepted solution
benvanlooy
Solution
Top Contributor | Platinum Partner
Top Contributor | Platinum Partner

HubSpot video automatically allows download?

SOLVE

Hi there,

 

I think a possible solution could be just diving into the HTML code.

 

Just open the post, and click the <> button to view the source code.

 

 

At the place where the video is you'll see a video tag, where you can add or remove parameters.

 

<video

 

  • either you can remove the controls all together
    <video controls="false" ...
  • or you can disable the download option
    <video controls controlsList="nodownload"

 

Good luck and let me know if that works 😉

View solution in original post

4 Replies 4
benvanlooy
Solution
Top Contributor | Platinum Partner
Top Contributor | Platinum Partner

HubSpot video automatically allows download?

SOLVE

Hi there,

 

I think a possible solution could be just diving into the HTML code.

 

Just open the post, and click the <> button to view the source code.

 

 

At the place where the video is you'll see a video tag, where you can add or remove parameters.

 

<video

 

  • either you can remove the controls all together
    <video controls="false" ...
  • or you can disable the download option
    <video controls controlsList="nodownload"

 

Good luck and let me know if that works 😉

TEger
Member

HubSpot video automatically allows download?

SOLVE

Hallo Ben,

leider finde ich die von Dir gennante Schaltfläche <>nicht, um den Quellcode anzuzeigen.
Kannst Du mir einen Tipp geben, wie ich an den Queelcode rankomme?

Grüße, Timo

0 Upvotes
MiaPV
Top Contributor

HubSpot video automatically allows download?

SOLVE

The no download html worked, thank you so much!

0 Upvotes
benvanlooy
Top Contributor | Platinum Partner
Top Contributor | Platinum Partner

HubSpot video automatically allows download?

SOLVE

you're welcome 😉

0 Upvotes