Video coding?

about lee

Addicted
Joined
Apr 8, 2010
Messages
937
Reaction score
0
FP$
6
Right i know how to upload videos to my host. But displaying the videos on my website is totally new to me! I mean how do i get my videos to show on my website? I don't want a program where people sign up etc... just something i can display videos. Thanks.

Videos would be of tutorials, graphics, computer talk, etc..
 
Well you can do it two ways.

One with flash and the other with html5.

Here is an example for the flash way.

Code:
<object width="550" height="400">
<param name="movie" value="videolinkhere"">
<embed src="videolinkhere"" width="550" height="400">
</embed>
</object>

For html 5 -

Code:
<video src="videolinkhere" width="x" height="x" controls>
<p> For people who have a web browser with no html5 support</p>
</video>
 
If you want to do this, there are a couple things ya can do.

1. What Twitch said.
2. Use a implanted BBcode on a forum to display youtube.
3. Use the Youtube embed code to embed the video.
4. Get FFmeg or a custom/pro hosting plan to host a full site capable of hosting your own videos in a custom format.

Hope I helped. 🙂
 
Back
Top Bottom