I need some help with Videos in RSD

User 425448 Photo


Registered User
6 posts

Hi, I'm building a site with RSD. I have some home videos I want to put on the site. In the elements section the preselected options are only: dailymotion, vine, vimeo and youtube. The videos are on my desktop and on the website storage. I do not want to load the videos on to any of the above sites because they would have to be made public in order to work. I want to be able just put the video url in the element box or import it somehow. I cannot find a way to to that.

When I type in the url in the element slot and publish the site, all I get is a gray box that say's VIDEO. Nothing plays. see www.voicebysophia.com
User 187934 Photo


Senior Advisor
20,271 posts

Your link to your video is missing the http://
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 425448 Photo


Registered User
6 posts

No, http:// is there
User 425448 Photo


Registered User
6 posts

So here's what I've tried

http://voicebysophia.com/Gym.mp4
http://www.voicebysophia.com/Gym.mp4
www.voicebysophia.com/Gym.mp4
voicebysophia.com/Gym.mp4

Same results every time. I've also tried Windows and osx, Safari, Chrome and ie. Same results
User 425448 Photo


Registered User
6 posts

RSD Screen shot
User 2699991 Photo


Registered User
5,392 posts
Online Now

Rookie User wrote:
Hi, I'm building a site with RSD. I have some home videos I want to put on the site. In the elements section the preselected options are only: dailymotion, vine, vimeo and youtube. The videos are on my desktop and on the website storage. I do not want to load the videos on to any of the above sites because they would have to be made public in order to work. I want to be able just put the video url in the element box or import it somehow. I cannot find a way to to that.

When I type in the url in the element slot and publish the site, all I get is a gray box that say's VIDEO. Nothing plays. see www.voicebysophia.com


I believe that the only way to put a video in that is stored locally is to place it in a html element. I then place the video (3 formats) into my resources

here is the code I used for the example on my site I just put there

<video loop="" muted="" autoplay=""
style=" position: absolute; top: 50%; left: 50%; width: auto; height: 400px; min-width: 100%;
min-height: 400px; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%);">
<source src="video/city-video.mp4" type="video/mp4"> <source src="video/city-video.ogv" type="video ogv">
<source src="video/city-video.webm" type="videowebm">

</video>


https://rsdtutorials.com is where you can see it in action

edit
by the way it will only be up there for a day maximum as it is not my actual site it is a theme I made for when my actual site is ready.
Mastering The Understanding With Hands-On Learning
NEW TO "COFFEECUP SITE DESIGNER" FOUNDATION 6 FRAMEWORK?
STUCK ON SOMETHING?

LEARNING & UNDERSTANDING "THE HOW TO"? THE WHY'S & THE WHEREFORE'S?
WITH WAYAN'S STEP BY STEP TUTORIALS


A simple quick way to contact me
https://mawarputih.coffeecup.com/forms/contact-wayan/
User 187934 Photo


Senior Advisor
20,271 posts

Rookie User wrote:
No, http:// is there

The one I looked at doesn't.
I use this format on one of my sites
<video id="example_video_1" controls preload="none" width="100%" height="100%" poster="videos/FirstFrame.png" autoplay loop>
<source src="videos/mycool_video.mp4" type='video/mp4' />
</video>

The poster attribute lets you control what shows when the page loads.

I've also used this.
https://videojs.com/
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 425448 Photo


Registered User
6 posts

Thanks guys, it worked!

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.