YouTube device support error

Posted by Community Admin on 04-Aug-2018 12:54

YouTube device support error

All Replies

Posted by Community Admin on 29-May-2015 00:00

I'm having issues with YouTube videos not showing up properly on the page. I have 8 videos on a page and they all look like the attachment I've included. I've fixed this issue in WordPress before but not Sitefinity yet. I was wondering if anyone else has come across this and fixed this issue.

Thanks!

Posted by Community Admin on 30-May-2015 00:00

Maybe this helps at the moment. But I guess this is something Telerik should look into and fix it asap.

 

support.google.com/.../6098135

 

youtube-eng.blogspot.ch/.../committing-to-youtube-data-api-v3_4.html

 

Markus

Posted by Community Admin on 03-Jun-2015 00:00

Hi,

Would it be possible to share some more information on how you use the youtube videos in Sitefinity, please? With this information we will be able to test further.

Thank you in advance.

Regards,
Atanas Valchev
Telerik

 
Do you want to have your say in the Sitefinity development roadmap? Do you want to know when a feature you requested is added or when a bug fixed? Explore the Telerik Sitefinity CMS Ideas&Feedback Portal and vote to affect the priority of the items
 

Posted by Community Admin on 04-Jun-2015 00:00

Here is the code I'm using for the current widget:

YouTubeVideoThumbnail.ascx

 

<%@ Control Language="C#" AutoEventWireup="true" CodeFile="YouTubeVideoThumbnail.ascx.cs"
    Inherits="UserControls_YouTubeVideoThumbnail" %>
 
<div class="trainingvideo" id="videogallery">
    <a rel="#voverlay" href="//www.youtube.com/embed/<%=VideoId %>" title="<%=Title %>">
        <div class="thumbcontainer">
            <img class="overlay" src="/UserControls/YouTubeVideoThumbnail/images/play_arrow.png" />
            <asp:Image ID="VideoThumbnail" runat="server" style="max-width: 100%; height: auto;"/>
        </div>
        <h2><%= Title %></h2>
        <p><%= Description %></p>
    </a>
</div>

YouTubeVideoThumbnail.ascx.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Web;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Xml;
using System.IO;
 
public partial class UserControls_YouTubeVideoThumbnail : System.Web.UI.UserControl
    public string VideoId get; set;
 
    protected string Title get; set;
    protected string Description get; set;
 
    protected override void FrameworkInitialize()
        if (Page == null) return;
 
        Page.ClientScript.RegisterClientScriptInclude("/videolightbox/engine/js/jquery.tools.min.js",
                                                          "/videolightbox/engine/js/jquery.tools.min.js");
        Page.ClientScript.RegisterClientScriptInclude("/videolightbox/engine/js/swfobject.js",
                                                      "/videolightbox/engine/js/swfobject.js");
        Page.ClientScript.RegisterClientScriptInclude("/videolightbox/engine/js/videolightbox.js",
                                                        "/videolightbox/engine/js/videolightbox.js");
 
        AddCss("/videolightbox/engine/css/overlay-minimal.css");
        AddCss("/videolightbox/engine/css/videolightbox.css");
        AddCss("/UserControls/YouTubeVideoThumbnail/css/style.css");
        base.FrameworkInitialize();
    
    public override void RenderControl(HtmlTextWriter writer)
        DoIt();
 
        base.RenderControl(writer);
    
 
 
    private void DoIt()
        if (VideoId != null)
 
            /* This is the link that got replace on the front end
            <a rel="#voverlay" href="http://www.youtube.com/v/<;%=VideoId %>?autoplay=1&rel=0&enablejsapi=1&playerapiid=ytplayer" title="<%=Title %>">*/
 
            System.Net.WebClient c = new WebClient();
            string videoString = c.DownloadString("http://gdata.youtube.com/feeds/api/videos/" + VideoId + "?v=2");
 
            using (XmlReader reader = XmlReader.Create(new StringReader(videoString)))
            
                reader.ReadToFollowing("title");
                this.Title = reader.ReadElementContentAsString();
 
                reader.ReadToFollowing("media:description");
                this.Description = reader.ReadElementContentAsString();
 
                while (reader.ReadToFollowing("media:thumbnail"))
                
                    reader.MoveToAttribute("yt:name");
                    if (reader.Value == "mqdefault")
                    
                        reader.MoveToAttribute("url");
                        VideoThumbnail.ImageUrl = reader.Value;
                    
                
            
 
            string script = @"
                        function onYouTubePlayerReady(playerId)
                            ytplayer = document.getElementById('video_overlay');
                            ytplayer.setVolume(100);
                         ";
            Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "ytPlayerReady", script, true);
 
        
    
     
    private void AddCss(string url)
        bool added = false;
        foreach (Control hc in Page.Header.Controls)
            if (typeof(HtmlLink) == hc.GetType())
                HtmlLink hcl = (HtmlLink)hc;
                if (hcl.Href == url)
                    added = true;
                    break;
                
            
 
        
        if (!added)
            HtmlLink css = new HtmlLink();
            css.Href = url;
            css.Attributes["rel"] = "stylesheet";
            css.Attributes["type"] = "text/css";
            css.Attributes["media"] = "all";
 
 
            Page.Header.Controls.Add(css);
        
    

Posted by Community Admin on 09-Jun-2015 00:00

Hello,

From the widget in your reply, I cannot see anything that is Sitefinity specific. This leads me to believe that you just need to update it to use the new version of the Youtube API and it should start working ok.

Regards,
Atanas Valchev
Telerik

 
Do you want to have your say in the Sitefinity development roadmap? Do you want to know when a feature you requested is added or when a bug fixed? Explore the Telerik Sitefinity CMS Ideas&Feedback Portal and vote to affect the priority of the items
 

This thread is closed