Ejemplo n.º 1
0
		public static string GetEmbedCode(long PlayerID, long VideoID, PlayerPlaylistType PlaylistType, long PlaylistID, List<long> PlaylistIDs, int height, int width, string BackgroundColor, bool AutoStart, WMode WMode, string objectTagID, Dictionary<string, string> objectParams) {

			if (objectParams == null)
				objectParams = new Dictionary<string, string>();

			if(!objectParams.ContainsKey("bgcolor"))
				objectParams.Add("bgcolor", BackgroundColor);
			if (!objectParams.ContainsKey("width"))
				objectParams.Add("width", width.ToString());
			if (!objectParams.ContainsKey("height"))
				objectParams.Add("height", height.ToString());
			if (!objectParams.ContainsKey("playerID"))
				objectParams.Add("playerID", PlayerID.ToString());

			//add in video ids or playlist ids
			if (PlaylistType.Equals(PlayerPlaylistType.None) && VideoID != -1) {
				objectParams.Add("@videoPlayer", VideoID.ToString());
			} else if (PlaylistType.Equals(PlayerPlaylistType.Tabbed) && PlaylistIDs != null) {
				objectParams.Add("@playlistTabs", PlaylistIDs.ToDelimString(","));
			} else if (PlaylistType.Equals(PlayerPlaylistType.ComboBox) && PlaylistIDs != null) {
				objectParams.Add("@playlistCombo", PlaylistIDs.ToDelimString(","));
			} else if (PlaylistType.Equals(PlayerPlaylistType.VideoList) && PlaylistID != -1) {
				objectParams.Add("@videoList", PlaylistID.ToString());
			}

			objectParams.Add("isVid", "true");
			objectParams.Add("autoStart", AutoStart.ToString().ToLower());
			objectParams.Add("isUI", "true");
			objectParams.Add("dynamicStreaming", "true");
			objectParams.Add("wmode", WMode.ToString());

			return GetEmbedCode(objectTagID, objectParams);
		}
Ejemplo n.º 2
0
        public static string GetEmbedCode(long PlayerID, long VideoID, PlayerPlaylistType PlaylistType, long PlaylistID, List <long> PlaylistIDs, int height, int width, string BackgroundColor, bool AutoStart, WMode WMode, string objectTagID, Dictionary <string, string> objectParams)
        {
            if (objectParams == null)
            {
                objectParams = new Dictionary <string, string>();
            }

            if (!objectParams.ContainsKey("bgcolor"))
            {
                objectParams.Add("bgcolor", BackgroundColor);
            }
            if (!objectParams.ContainsKey("width"))
            {
                objectParams.Add("width", width.ToString());
            }
            if (!objectParams.ContainsKey("height"))
            {
                objectParams.Add("height", height.ToString());
            }
            if (!objectParams.ContainsKey("playerID"))
            {
                objectParams.Add("playerID", PlayerID.ToString());
            }

            //add in video ids or playlist ids
            if (PlaylistType.Equals(PlayerPlaylistType.None) && VideoID != -1)
            {
                objectParams.Add("@videoPlayer", VideoID.ToString());
            }
            else if (PlaylistType.Equals(PlayerPlaylistType.Tabbed) && PlaylistIDs != null)
            {
                objectParams.Add("@playlistTabs", PlaylistIDs.ToDelimString(","));
            }
            else if (PlaylistType.Equals(PlayerPlaylistType.ComboBox) && PlaylistIDs != null)
            {
                objectParams.Add("@playlistCombo", PlaylistIDs.ToDelimString(","));
            }
            else if (PlaylistType.Equals(PlayerPlaylistType.VideoList) && PlaylistID != -1)
            {
                objectParams.Add("@videoList", PlaylistID.ToString());
            }

            objectParams.Add("isVid", "true");
            objectParams.Add("autoStart", AutoStart.ToString().ToLower());
            objectParams.Add("isUI", "true");
            objectParams.Add("dynamicStreaming", "true");
            objectParams.Add("wmode", WMode.ToString());

            return(GetEmbedCode(objectTagID, objectParams));
        }
        /// <summary>
        /// This will build an html object tag based on the information provided
        /// </summary>
        /// <param name="player">The player defined under BrightcoveSDK.SitecoreUtil</param>
        /// <param name="objectTagID">The HTML Object ID Tag</param>
        /// <param name="video">The video defined under BrightcoveSDK.SitecoreUtil</param>
        /// <param name="PlaylistID">A Playlist ID for a single playlist video player</param>
        /// <param name="PlaylistIDs">The List of Playlist IDs for a multi playlist video player</param>
        /// <param name="BackgroundColor">The Hex Value in the form: #ffffff</param>
        /// <param name="AutoStart">A flag to cause the video to automatically start playing</param>
        /// <param name="WMode">The wmode </param>
        /// <returns></returns>
        private static string GetEmbedCode(long PlayerID, long VideoID, PlayerPlaylistType PlaylistType, long PlaylistID, List <long> PlaylistIDs, int height, int width, string BackgroundColor, bool AutoStart, WMode WMode, string objectTagID)
        {
            StringBuilder embed = new StringBuilder();

            if (PlayerID != null)
            {
                //this one works
                embed.AppendLine("<!-- Start of Brightcove Player -->");
                embed.AppendLine("<div style=\"display:none\"></div>");
                embed.AppendLine("<!-- By use of this code snippet, I agree to the Brightcove Publisher T and C found at https://accounts.brightcove.com/en/terms-and-conditions/. -->");
                embed.AppendLine("<script language=\"JavaScript\" type=\"text/javascript\" src=\"http://admin.brightcove.com/js/BrightcoveExperiences.js\"></script>");
                embed.AppendLine("<object id=\"" + objectTagID + "\" class=\"BrightcoveExperience\">");
                embed.AppendLine("<param name=\"bgcolor\" value=\"" + BackgroundColor + "\" />");
                embed.AppendLine("<param name=\"width\" value=\"" + width.ToString() + "\" />");
                embed.AppendLine("<param name=\"height\" value=\"" + height.ToString() + "\" />");
                embed.AppendLine("<param name=\"playerID\" value=\"" + PlayerID + "\" />");

                //add in video ids or playlist ids
                if (PlaylistType.Equals(PlayerPlaylistType.None) && VideoID != null)
                {
                    embed.AppendLine("<param name=\"@videoPlayer\" value=\"" + VideoID + "\"/>");
                }
                else if (PlaylistType.Equals(PlayerPlaylistType.Tabbed) && PlaylistIDs != null)
                {
                    embed.AppendLine("<param name=\"@playlistTabs\" value=\"" + PlaylistIDs.ToDelimString(",") + "\"/>");
                }
                else if (PlaylistType.Equals(PlayerPlaylistType.ComboBox) && PlaylistIDs != null)
                {
                    embed.AppendLine("<param name=\"@playlistCombo\" value=\"" + PlaylistIDs.ToDelimString(",") + "\"/>");
                }
                else if (PlaylistType.Equals(PlayerPlaylistType.VideoList) && PlaylistID != -1)
                {
                    embed.AppendLine("<param name=\"@videoList\" value=\"" + PlaylistID.ToString() + "\"/>");
                }

                embed.AppendLine("<param name=\"isVid\" value=\"true\" />");
                embed.AppendLine("<param name=\"autoStart\" value=\"" + AutoStart.ToString().ToLower() + "\" />");
                embed.AppendLine("<param name=\"isUI\" value=\"true\" />");
                embed.AppendLine("<param name=\"dynamicStreaming\" value=\"true\" />");
                embed.AppendLine("<param name=\"wmode\" value=\"" + WMode.ToString() + "\" /> ");
                embed.AppendLine("</object>");
                embed.AppendLine("<script type=\"text/javascript\">brightcove.createExperiences();</script>");
                embed.AppendLine("<!-- End of Brightcove Player -->");
            }
            return(embed.ToString());
        }
        /// <summary>
        /// This will build an html object tag based on the information provided
        /// </summary>
        /// <param name="player">The player defined under BrightcoveSDK.SitecoreUtil</param>
        /// <param name="objectTagID">The HTML Object ID Tag</param>
        /// <param name="video">The video defined under BrightcoveSDK.SitecoreUtil</param>
        /// <param name="PlaylistID">A Playlist ID for a single playlist video player</param>
        /// <param name="PlaylistIDs">The List of Playlist IDs for a multi playlist video player</param>
        /// <param name="BackgroundColor">The Hex Value in the form: #ffffff</param>
        /// <param name="AutoStart">A flag to cause the video to automatically start playing</param>
        /// <param name="WMode">The wmode </param>
        /// <returns></returns>
        private static string GetEmbedCode(this PlayerItem player, VideoItem video, long PlaylistID, List <long> PlaylistIDs, string BackgroundColor, bool AutoStart, WMode WMode, string objectTagID)
        {
            StringBuilder embed = new StringBuilder();

            if (player != null)
            {
                //this one works
                embed.AppendLine("<!-- Start of Brightcove Player -->");
                embed.AppendLine("");
                embed.AppendLine("<div style=\"display:none\"></div>");
                embed.AppendLine("<script language=\"JavaScript\" type=\"text/javascript\" src=\"http://admin.brightcove.com/js/BrightcoveExperiences.js\"></script>");
                embed.AppendLine("<object id=\"" + objectTagID + "\" class=\"BrightcoveExperience\">");
                embed.AppendLine("<param name=\"bgcolor\" value=\"" + BackgroundColor + "\" />");
                embed.AppendLine("<param name=\"width\" value=\"" + player.Width.ToString() + "\" />");
                embed.AppendLine("<param name=\"height\" value=\"" + player.Height.ToString() + "\" />");
                embed.AppendLine("<param name=\"playerID\" value=\"" + player.PlayerID + "\" />");

                //add in video ids or playlist ids
                if (player.PlaylistType.Equals(PlayerPlaylistType.None) && video != null)
                {
                    embed.AppendLine("<param name=\"@videoPlayer\" value=\"" + video.VideoID + "\"/>");
                }
                else if (player.PlaylistType.Equals(PlayerPlaylistType.Tabbed) && PlaylistIDs != null)
                {
                    embed.AppendLine("<param name=\"@playlistTabs\" value=\"" + PlaylistIDs.ToDelimString(",") + "\"/>");
                }
                else if (player.PlaylistType.Equals(PlayerPlaylistType.ComboBox) && PlaylistIDs != null)
                {
                    embed.AppendLine("<param name=\"@playlistCombo\" value=\"" + PlaylistIDs.ToDelimString(",") + "\"/>");
                }
                else if (player.PlaylistType.Equals(PlayerPlaylistType.VideoList) && PlaylistID != -1)
                {
                    embed.AppendLine("<param name=\"@videoList\" value=\"" + PlaylistID.ToString() + "\"/>");
                }

                embed.AppendLine("<param name=\"isVid\" value=\"true\" />");
                embed.AppendLine("<param name=\"autoStart\" value=\"" + AutoStart.ToString().ToLower() + "\" />");
                embed.AppendLine("<param name=\"isUI\" value=\"true\" />");
                embed.AppendLine("<param name=\"dynamicStreaming\" value=\"true\" />");
                embed.AppendLine("<param name=\"wmode\" value=\"" + WMode.ToString() + "\" /> ");
                embed.AppendLine("</object>");
                embed.AppendLine("");
                embed.AppendLine("<!-- End of Brightcove Player -->");
            }
            return(embed.ToString());
        }
Ejemplo n.º 5
0
		/// <summary>
		/// This will build an html object tag based on the information provided
		/// </summary>
		/// <param name="player">The player defined under BrightcoveSDK.SitecoreUtil</param>
		/// <param name="objectTagID">The HTML Object ID Tag</param>
		/// <param name="video">The video defined under BrightcoveSDK.SitecoreUtil</param>
		/// <param name="PlaylistID">A Playlist ID for a single playlist video player</param>
		/// <param name="PlaylistIDs">The List of Playlist IDs for a multi playlist video player</param>
		/// <param name="BackgroundColor">The Hex Value in the form: #ffffff</param>
		/// <param name="AutoStart">A flag to cause the video to automatically start playing</param>
		/// <param name="WMode">The wmode </param>
		/// <returns></returns>
		private static string GetEmbedCode(long PlayerID, long VideoID, PlayerPlaylistType PlaylistType, long PlaylistID, List<long> PlaylistIDs, int height, int width, string BackgroundColor, bool AutoStart, WMode WMode, string objectTagID) {

			StringBuilder embed = new StringBuilder();

			if (PlayerID != null) {
				//this one works
				embed.AppendLine("<!-- Start of Brightcove Player -->");
				embed.AppendLine("<div style=\"display:none\"></div>");
				embed.AppendLine("<!-- By use of this code snippet, I agree to the Brightcove Publisher T and C found at https://accounts.brightcove.com/en/terms-and-conditions/. -->");
				embed.AppendLine("<script language=\"JavaScript\" type=\"text/javascript\" src=\"http://admin.brightcove.com/js/BrightcoveExperiences.js\"></script>");
				embed.AppendLine("<object id=\"" + objectTagID + "\" class=\"BrightcoveExperience\">");
				embed.AppendLine("<param name=\"bgcolor\" value=\"" + BackgroundColor + "\" />");
				embed.AppendLine("<param name=\"width\" value=\"" + width.ToString() + "\" />");
				embed.AppendLine("<param name=\"height\" value=\"" + height.ToString() + "\" />");
				embed.AppendLine("<param name=\"playerID\" value=\"" + PlayerID + "\" />");

				//add in video ids or playlist ids
				if (PlaylistType.Equals(PlayerPlaylistType.None) && VideoID != null) {
					embed.AppendLine("<param name=\"@videoPlayer\" value=\"" + VideoID + "\"/>");
				} else if (PlaylistType.Equals(PlayerPlaylistType.Tabbed) && PlaylistIDs != null) {
					embed.AppendLine("<param name=\"@playlistTabs\" value=\"" + PlaylistIDs.ToDelimString(",") + "\"/>");
				} else if (PlaylistType.Equals(PlayerPlaylistType.ComboBox) && PlaylistIDs != null) {
					embed.AppendLine("<param name=\"@playlistCombo\" value=\"" + PlaylistIDs.ToDelimString(",") + "\"/>");
				} else if (PlaylistType.Equals(PlayerPlaylistType.VideoList) && PlaylistID != -1) {
					embed.AppendLine("<param name=\"@videoList\" value=\"" + PlaylistID.ToString() + "\"/>");
				}

				embed.AppendLine("<param name=\"isVid\" value=\"true\" />");
				embed.AppendLine("<param name=\"autoStart\" value=\"" + AutoStart.ToString().ToLower() + "\" />");
				embed.AppendLine("<param name=\"isUI\" value=\"true\" />");
				embed.AppendLine("<param name=\"dynamicStreaming\" value=\"true\" />");
				embed.AppendLine("<param name=\"wmode\" value=\"" + WMode.ToString() + "\" /> ");
				embed.AppendLine("</object>");
				embed.AppendLine("<script type=\"text/javascript\">brightcove.createExperiences();</script>");
				embed.AppendLine("<!-- End of Brightcove Player -->");
			}
			return embed.ToString();
		}
		/// <summary>
		/// This will build an html object tag based on the information provided
		/// </summary>
		/// <param name="player">The player defined under BrightcoveSDK.SitecoreUtil</param>
		/// <param name="objectTagID">The HTML Object ID Tag</param>
		/// <param name="video">The video defined under BrightcoveSDK.SitecoreUtil</param>
		/// <param name="PlaylistID">A Playlist ID for a single playlist video player</param>
		/// <param name="PlaylistIDs">The List of Playlist IDs for a multi playlist video player</param>
		/// <param name="BackgroundColor">The Hex Value in the form: #ffffff</param>
		/// <param name="AutoStart">A flag to cause the video to automatically start playing</param>
		/// <param name="WMode">The wmode </param>
		/// <returns></returns>
		private static string GetEmbedCode(this PlayerItem player, VideoItem video, long PlaylistID, List<long> PlaylistIDs, string BackgroundColor, bool AutoStart, WMode WMode, string objectTagID) {

			StringBuilder embed = new StringBuilder();

			if (player != null) {
				//this one works
				embed.AppendLine("<!-- Start of Brightcove Player -->");
				embed.AppendLine("");
				embed.AppendLine("<div style=\"display:none\"></div>");
				embed.AppendLine("<script language=\"JavaScript\" type=\"text/javascript\" src=\"http://admin.brightcove.com/js/BrightcoveExperiences.js\"></script>");
				embed.AppendLine("<object id=\"" + objectTagID + "\" class=\"BrightcoveExperience\">");
				embed.AppendLine("<param name=\"bgcolor\" value=\"" + BackgroundColor + "\" />");
				embed.AppendLine("<param name=\"width\" value=\"" + player.Width.ToString() + "\" />");
				embed.AppendLine("<param name=\"height\" value=\"" + player.Height.ToString() + "\" />");
				embed.AppendLine("<param name=\"playerID\" value=\"" + player.PlayerID + "\" />");

				//add in video ids or playlist ids
				if (player.PlaylistType.Equals(PlayerPlaylistType.None) && video != null) {
					embed.AppendLine("<param name=\"@videoPlayer\" value=\"" + video.VideoID + "\"/>");
				} else if (player.PlaylistType.Equals(PlayerPlaylistType.Tabbed) && PlaylistIDs != null) {
					embed.AppendLine("<param name=\"@playlistTabs\" value=\"" + PlaylistIDs.ToDelimString(",") + "\"/>");
				} else if (player.PlaylistType.Equals(PlayerPlaylistType.ComboBox) && PlaylistIDs != null) {
					embed.AppendLine("<param name=\"@playlistCombo\" value=\"" + PlaylistIDs.ToDelimString(",") + "\"/>");
				} else if (player.PlaylistType.Equals(PlayerPlaylistType.VideoList) && PlaylistID != -1) {
					embed.AppendLine("<param name=\"@videoList\" value=\"" + PlaylistID.ToString() + "\"/>");
				}

				embed.AppendLine("<param name=\"isVid\" value=\"true\" />");
				embed.AppendLine("<param name=\"autoStart\" value=\"" + AutoStart.ToString().ToLower() + "\" />");
				embed.AppendLine("<param name=\"isUI\" value=\"true\" />");
				embed.AppendLine("<param name=\"dynamicStreaming\" value=\"true\" />");
				embed.AppendLine("<param name=\"wmode\" value=\"" + WMode.ToString() + "\" /> ");
				embed.AppendLine("</object>");
				embed.AppendLine("");
				embed.AppendLine("<!-- End of Brightcove Player -->");
			}
			return embed.ToString();
        }