# Poster/thumbnail images on video hosted on Cloudinary

**URL:** https://community.glideapps.com/t/poster-thumbnail-images-on-video-hosted-on-cloudinary/39065
**Category:** Ask for Help
**Created:** [February 28, 2022, 9:39am UTC](https://community.glideapps.com/t/poster-thumbnail-images-on-video-hosted-on-cloudinary/39065 "2022-02-28T09:39:50Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Lionel\_Myszka](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/lionel_myszka/32/36905_2.png) [@Lionel\_Myszka](https://community.glideapps.com/u/Lionel_Myszka)
#### Post date: [February 28, 2022, 9:39am UTC](https://community.glideapps.com/t/poster-thumbnail-images-on-video-hosted-on-cloudinary/39065/1 "2022-02-28T09:39:50Z")

</div>

Hello,

I’d like to set up a poster image (the image you see when video has not been started yet) for videos hosted in Cloudinary.

Cloudinary only delivers poster images in a html code way.

```auto
<video width="300" src="https://res.cloudinary.com/demo/video/upload/dog.mp4" controls poster="https://res.cloudinary.com/demo/video/upload/so_2/dog.jpg">
</div>

```

How would you embed this in Glide ? Is there another way to obtain thoses posters via an url ?

Thank you for your help !

---

<div class="post-metadata">

### Author: ![Robert\_Petitto](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/robert_petitto/32/25193_2.png) [@Robert\_Petitto](https://community.glideapps.com/u/Robert_Petitto)
#### Post date: [February 28, 2022, 12:50pm UTC](https://community.glideapps.com/t/poster-thumbnail-images-on-video-hosted-on-cloudinary/39065/2 "2022-02-28T12:50:09Z")

</div>

> [@Lionel\_Myszka](#):
>
> `/demo/video/upload/dog.mp4" controls poster="https://res.cloudinary.com/demo/video/upload/so_2/dog.jpg">`

All you need is the URL: `https://res.cloudinary.com/demo/video/upload/so_2/dog.jpg`

Display that in an image component. You can always have it so when they click on the image \> show new screen\> video component \> `https://res.cloudinary.com/demo/video/upload/dog.mp4`

---

<div class="post-metadata">

### Author: ![Lionel\_Myszka](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/lionel_myszka/32/36905_2.png) [@Lionel\_Myszka](https://community.glideapps.com/u/Lionel_Myszka)
#### Post date: [February 28, 2022, 5:08pm UTC](https://community.glideapps.com/t/poster-thumbnail-images-on-video-hosted-on-cloudinary/39065/3 "2022-02-28T17:08:17Z")

</div>

Simple as that.  
Thank you Robert 👍
