Comments on: Embed Video and Audio files in the SharePoint Environment: Part 3 – Single Embedded Player with Multiple Dropdown Menus http://www.endusersharepoint.com/2009/03/19/embed-video-and-audio-files-in-the-sharepoint-environment-part-3-single-embedded-player-with-multiple-dropdown-menus/ No GeekSpeak on SharePoint 2007 WSS and MOSS Fri, 26 Nov 2010 21:23:22 -0500 http://wordpress.org/?v=2.8.6 hourly 1 By: Steve http://www.endusersharepoint.com/2009/03/19/embed-video-and-audio-files-in-the-sharepoint-environment-part-3-single-embedded-player-with-multiple-dropdown-menus/comment-page-1/#comment-102582 Steve Tue, 28 Sep 2010 16:22:58 +0000 http://www.endusersharepoint.com/?p=1448#comment-102582 Awesome! Just what I was looking for! My company only authorizes IE across the network so this will be perfect for my needs. Awesome! Just what I was looking for! My company only authorizes IE across the network so this will be perfect for my needs.

]]>
By: Kenneth Cronin http://www.endusersharepoint.com/2009/03/19/embed-video-and-audio-files-in-the-sharepoint-environment-part-3-single-embedded-player-with-multiple-dropdown-menus/comment-page-1/#comment-82778 Kenneth Cronin Wed, 14 Jul 2010 22:16:40 +0000 http://www.endusersharepoint.com/?p=1448#comment-82778 toucan: The code you want is available in the comments of Part 1 of this series. Rather than republishing the entire code here please click the Part 1 link at the top of this article and review the comments. Thanks toucan:
The code you want is available in the comments of Part 1 of this series. Rather than republishing the entire code here please click the Part 1 link at the top of this article and review the comments.

Thanks

]]>
By: toucan http://www.endusersharepoint.com/2009/03/19/embed-video-and-audio-files-in-the-sharepoint-environment-part-3-single-embedded-player-with-multiple-dropdown-menus/comment-page-1/#comment-82632 toucan Wed, 14 Jul 2010 14:13:25 +0000 http://www.endusersharepoint.com/?p=1448#comment-82632 How could I adapt this so it plays one video on load of the page and then the user can select which video to play? How could I adapt this so it plays one video on load of the page and then the user can select which video to play?

]]>
By: toucan http://www.endusersharepoint.com/2009/03/19/embed-video-and-audio-files-in-the-sharepoint-environment-part-3-single-embedded-player-with-multiple-dropdown-menus/comment-page-1/#comment-75012 toucan Wed, 16 Jun 2010 13:43:26 +0000 http://www.endusersharepoint.com/?p=1448#comment-75012 I really like this. What i want to do next is set it so it will play one video on load and then different videos on change. I've had a go changing the code but can't get it to work. Can anyone help please? David I really like this. What i want to do next is set it so it will play one video on load and then different videos on change. I’ve had a go changing the code but can’t get it to work.

Can anyone help please?

David

]]>
By: shashikanth http://www.endusersharepoint.com/2009/03/19/embed-video-and-audio-files-in-the-sharepoint-environment-part-3-single-embedded-player-with-multiple-dropdown-menus/comment-page-1/#comment-66126 shashikanth Wed, 12 May 2010 16:32:37 +0000 http://www.endusersharepoint.com/?p=1448#comment-66126 Hey Chanakya , Can you provide the full code of the webpart. And also your webpart is able to play all the video files such as wmv,mpv and mov. please let me know .thanks in advance Thanks, Shashi Hey Chanakya ,

Can you provide the full code of the webpart. And also your webpart is able to play all the video files such as wmv,mpv and mov. please let me know .thanks in advance

Thanks,
Shashi

]]>
By: Chanakya http://www.endusersharepoint.com/2009/03/19/embed-video-and-audio-files-in-the-sharepoint-environment-part-3-single-embedded-player-with-multiple-dropdown-menus/comment-page-1/#comment-66003 Chanakya Wed, 12 May 2010 08:34:48 +0000 http://www.endusersharepoint.com/?p=1448#comment-66003 Great!! Thanks a lot. Saved my day!!! I created a webpart which will loop through each audio file in the SharePoint library. Instead of drop down I created anchor tags dynamically and added to a table. Below is the code which will come in the foreach loop. HtmlAnchor an = new HtmlAnchor(); an.HRef = web.Url.Substring(0, web.Url.IndexOf("/sites")) + "/sites/MuzikIdol/Muzik%20Idol%20Custom%20Pages/Audios.aspx#"; string str = web.Url.Substring(0, web.Url.IndexOf("/sites")) + Convert.ToString(item["ows_ServerUrl"]); an.InnerText = Convert.ToString(item["Name"]).Substring(0, Convert.ToString(item["Name"]).LastIndexOf(".")); an.Attributes.Add("onclick","document.all.music1.filename="+ "'" + str + "'" ); Great!! Thanks a lot. Saved my day!!!

I created a webpart which will loop through each audio file in the SharePoint library. Instead of drop down I created anchor tags dynamically and added to a table.

Below is the code which will come in the foreach loop.

HtmlAnchor an = new HtmlAnchor();
an.HRef = web.Url.Substring(0, web.Url.IndexOf(”/sites”)) + “/sites/MuzikIdol/Muzik%20Idol%20Custom%20Pages/Audios.aspx#”;

string str = web.Url.Substring(0, web.Url.IndexOf(”/sites”)) + Convert.ToString(item["ows_ServerUrl"]);
an.InnerText = Convert.ToString(item["Name"]).Substring(0, Convert.ToString(item["Name"]).LastIndexOf(”.”));
an.Attributes.Add(”onclick”,”document.all.music1.filename=”+ “‘” + str + “‘” );

]]>
By: shashikanth http://www.endusersharepoint.com/2009/03/19/embed-video-and-audio-files-in-the-sharepoint-environment-part-3-single-embedded-player-with-multiple-dropdown-menus/comment-page-1/#comment-59032 shashikanth Fri, 23 Apr 2010 22:02:28 +0000 http://www.endusersharepoint.com/?p=1448#comment-59032 Hi, I recently gone through your articles its awesome .My question is is there any why to play mutiple types of video file such as avi,wmv,mov and flv . Please let me know Thanks shahsi Hi,
I recently gone through your articles its awesome .My question is is there any why to play mutiple types of video file such as avi,wmv,mov and flv . Please let me know

Thanks
shahsi

]]>
By: Malay http://www.endusersharepoint.com/2009/03/19/embed-video-and-audio-files-in-the-sharepoint-environment-part-3-single-embedded-player-with-multiple-dropdown-menus/comment-page-1/#comment-37272 Malay Thu, 25 Feb 2010 06:44:14 +0000 http://www.endusersharepoint.com/?p=1448#comment-37272 Hi, This doesn't work in Crome and mozilla. can you help me with this issue. forget about multi file and all. Even simple embed statement for direct file does not work except IE. Any thoughts or solutions for this? Thanks in advacne. Hi,

This doesn’t work in Crome and mozilla. can you help me with this issue. forget about multi file and all. Even simple embed statement for direct file does not work except IE. Any thoughts or solutions for this?

Thanks in advacne.

]]>
By: Shawn http://www.endusersharepoint.com/2009/03/19/embed-video-and-audio-files-in-the-sharepoint-environment-part-3-single-embedded-player-with-multiple-dropdown-menus/comment-page-1/#comment-26321 Shawn Thu, 28 Jan 2010 16:35:05 +0000 http://www.endusersharepoint.com/?p=1448#comment-26321 This works perfect in Internet Explorer, but in FireFox, the player does not show up at all and in Google Chrome the player shows up but does not play the selected files. Any thoughts or resources that can help me out with that? This works perfect in Internet Explorer, but in FireFox, the player does not show up at all and in Google Chrome the player shows up but does not play the selected files. Any thoughts or resources that can help me out with that?

]]>
By: Embedding Video and Audio files in the SharePoint Environment | EndUserSharePoint.com http://www.endusersharepoint.com/2009/03/19/embed-video-and-audio-files-in-the-sharepoint-environment-part-3-single-embedded-player-with-multiple-dropdown-menus/comment-page-1/#comment-26218 Embedding Video and Audio files in the SharePoint Environment | EndUserSharePoint.com Thu, 28 Jan 2010 02:08:38 +0000 http://www.endusersharepoint.com/?p=1448#comment-26218 [...] Embed Video and Audio files in the SharePoint Environment: Part 3 – Single Embedded Player wit... [...] [...] Embed Video and Audio files in the SharePoint Environment: Part 3 – Single Embedded Player wit… [...]

]]>