Click here to Skip to main content
15,891,777 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Video is not displaying....
When checking inspect element in browser .. Displayin this one
HTML
#document
            <html></html>
    </iframe>
&lt;/td&gt;</pre>


code is
HTML
<td>
    <iframe width="300" height="200" frameborder="0" src="https://www.youtube.com/watch?v=RvfSBoKQ8Eg">
        #document
            <html></html>
    </iframe>
</td>
Posted
v3
Comments
Er. Puneet Goel 5-Apr-14 7:24am    
you want to add thumbnail like preview of video?
Sai Prasad anumolu 5-Apr-14 7:38am    
yes ....You tube video link preview
Sai Prasad anumolu 5-Apr-14 7:45am    
#Document <html><head></head><body></body></html> .. this one displaying . when i clicked inspect element

1 solution

C#:
C#
protected void Page_Load(object sender, EventArgs e)
   {
       string imgURL = GetYouTubeImage("https://www.youtube.com/watch?v=3Kk-yZ7VpeA");
       imgYourTube.ImageUrl = imgURL;
   }

   public string GetYouTubeImage(string videoUrl)
   {
       int mInd = videoUrl.IndexOf("v=");
       if (mInd != -1)
       {
           string strVideoCode = videoUrl.Substring(videoUrl.IndexOf("v=") + 2);
           int ind = strVideoCode.IndexOf("?");
           strVideoCode = strVideoCode.Substring(0, ind == -1 ? strVideoCode.Length : ind);
           return "https://img.youtube.com/vi/" + strVideoCode + "/default.jpg";
       }
       else
           return "";
   }


HTML:

ASP.NET
<form id="form1" runat="server">
    <asp:image id="imgYourTube" runat="server" clientidmode="Static" xmlns:asp="#unknown" />
    </form>
 
Share this answer
 
Comments
Sai Prasad anumolu 5-Apr-14 8:05am    
I saved you tube link in Database .....I taken from database ....
My code is working but ...Video Preview is not coming
Er. Puneet Goel 5-Apr-14 8:08am    
have you tried the code i posted?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900