Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Display videos in web site

Tags:

c#

I had soluation of displaying video on my company site and my manager told me to add all videos in web site as list and didvid it list to (recent videos,most view,) pleas I want any one help me how can I do this?

note see this link http://www.yallakora.com/arabic/YKChampions/EmbedListing.aspx?region=

like image 558
Myworld Avatar asked Aug 18 '10 10:08

Myworld


People also ask

How do you display a video on a website?

Embed a video. The quickest and easiest way to incorporate video onto your website is by embedding a link to a YouTube or Vimeo video. This method is compatible with nearly every content management system (CMS) and requires nothing more than copying an embed link into your site's HTML code.

Should I put videos on my website?

Videos keep people on your website longer and engage them with your content. People work with people, and video helps people get to know, like and trust you. Videos keep your audience interested, no matter your product or service. Videos are fast and convenient.

How do you embed a video into a website using HTML?

To embed a video in an HTML page, use the <iframe> element. The source attribute included the video URL. For the dimensions of the video player, set the width and height of the video appropriately. The Video URL is the video embed link.

Can I upload videos on my website?

Using YouTube or another free video-sharing site is the easiest way to put a video on your website. Most of these sites offer free accounts and let you upload an unlimited number of videos. YouTube generates a code to use to embed your video on your website or blog.


1 Answers

I assume that you are storing Video information into some DB/flat file.

Now along with the video information you will have to save the date when the video was added and ViewCount this is to be incremented each time that video is being viewed.

Now to show Most recent you can simply pick up the videos with descending order of the date they were added. To show most viewed pick up videos with descending order of their ViewCount

like image 120
ajay_whiz Avatar answered Sep 25 '22 17:09

ajay_whiz