Conditional Strip

I’m creating ~15 product detail pages using dynamic page feature in WiX. They have the same template where product title and description are fetched from the dB that I created.
The problem is a few of these products have videos which I can upload on YouTube/WiX. I can add video URLs to the dB against respective products. On the frontend, I want these videos to appear for products which have the video URL in the dB. For others, they should not appear.
I was thinking if I can create a strip which is conditional which is displayed only if a value if found in the database.

There is already a simple Wix tutorial for if you want to hide the videoplayer if there is no video.
https://support.wix.com/en/article/corvid-tutorial-hiding-a-video-player-when-there-is-no-video-to-play

Thanks. Tried implementing this.

It works partially. The video is displayed/hidden just fine. However, for products where there is no video, the following error message is displayed in the developer console:

Wix code SDK error: The “src” property cannot be set to “”. It must be a valid image URL starting with “http://”, “https://” or “wix:image://”, or a valid video URL starting with “wix:video://”.

Can I fix this as well?