Comments on: Embed Video and Audio files in the SharePoint Environment: Part 1 http://www.endusersharepoint.com/2009/03/09/embedding-video-and-audio-files-in-the-sharepoint-environment/ Follow me on Twitter: @eusp Tue, 06 Oct 2009 18:40:17 -0700 http://wordpress.org/?v=2.8.4 hourly 1 By: Ken Cronin http://www.endusersharepoint.com/2009/03/09/embedding-video-and-audio-files-in-the-sharepoint-environment/comment-page-1/#comment-17556 Ken Cronin Tue, 29 Sep 2009 17:29:29 +0000 http://www.endusersharepoint.com/?p=1418#comment-17556 To use this process, set your height to 75 and set autostart to false. The bottom of the player will appear with the play button. To use this process, set your height to 75 and set autostart to false. The bottom of the player will appear with the play button.

]]>
By: Bob http://www.endusersharepoint.com/2009/03/09/embedding-video-and-audio-files-in-the-sharepoint-environment/comment-page-1/#comment-17534 Bob Mon, 28 Sep 2009 18:18:43 +0000 http://www.endusersharepoint.com/?p=1418#comment-17534 Is it possible to do this with a wav file just for audio, and not have the player open, but juts have the sound file play when an embedded button is clicked? Is it possible to do this with a wav file just for audio, and not have the player open, but juts have the sound file play when an embedded button is clicked?

]]>
By: Daniel Harrison http://www.endusersharepoint.com/2009/03/09/embedding-video-and-audio-files-in-the-sharepoint-environment/comment-page-1/#comment-16963 Daniel Harrison Wed, 09 Sep 2009 13:50:50 +0000 http://www.endusersharepoint.com/?p=1418#comment-16963 Ken, you're an absolute life saver!! Thank you for this post. I used your code but changed the file location to point to a video which we have on our Streaming Server. (File:\\servername\sharename\video.wmv). This allowed the video to stream through SharePoint. God bless ya!! Dan Ken, you’re an absolute life saver!! Thank you for this post.

I used your code but changed the file location to point to a video which we have on our Streaming Server. (File:\\servername\sharename\video.wmv).

This allowed the video to stream through SharePoint.

God bless ya!!
Dan

]]>
By: John http://www.endusersharepoint.com/2009/03/09/embedding-video-and-audio-files-in-the-sharepoint-environment/comment-page-1/#comment-15984 John Wed, 12 Aug 2009 19:32:41 +0000 http://www.endusersharepoint.com/?p=1418#comment-15984 i found the issue...if you change all http references to https it goes away...thanks again for the post i found the issue…if you change all http references to https it goes away…thanks again for the post

]]>
By: John http://www.endusersharepoint.com/2009/03/09/embedding-video-and-audio-files-in-the-sharepoint-environment/comment-page-1/#comment-15980 John Wed, 12 Aug 2009 17:06:13 +0000 http://www.endusersharepoint.com/?p=1418#comment-15980 Great post...it worked fine except for one thing: now that the video is embedded on my homepage, each visit prompts the secure website pop-up. It wasn't there before I placed the video and doesn't appear if I remove the webpart. Great post…it worked fine except for one thing: now that the video is embedded on my homepage, each visit prompts the secure website pop-up. It wasn’t there before I placed the video and doesn’t appear if I remove the webpart.

]]>
By: Sue Crocombe http://www.endusersharepoint.com/2009/03/09/embedding-video-and-audio-files-in-the-sharepoint-environment/comment-page-1/#comment-15831 Sue Crocombe Sat, 08 Aug 2009 11:09:05 +0000 http://www.endusersharepoint.com/?p=1418#comment-15831 I have used this on our Sharepoint based intranet and it works fine on campus but is not working on some home computers. The only thing I can think of is that it is a browser problem. Does this solution work for any browser or only IE? I have used this on our Sharepoint based intranet and it works fine on campus but is not working on some home computers. The only thing I can think of is that it is a browser problem. Does this solution work for any browser or only IE?

]]>
By: Ted Fowler http://www.endusersharepoint.com/2009/03/09/embedding-video-and-audio-files-in-the-sharepoint-environment/comment-page-1/#comment-12813 Ted Fowler Wed, 13 May 2009 16:09:58 +0000 http://www.endusersharepoint.com/?p=1418#comment-12813 Hi, Can you embed video and audio in Windows SharePoint Services 3.0? Hi,

Can you embed video and audio in Windows SharePoint Services 3.0?

]]>
By: Kenneth Cronin http://www.endusersharepoint.com/2009/03/09/embedding-video-and-audio-files-in-the-sharepoint-environment/comment-page-1/#comment-12256 Kenneth Cronin Sun, 26 Apr 2009 15:20:26 +0000 http://www.endusersharepoint.com/?p=1418#comment-12256 Please excuse the delay in my response. Work has kept me away from posting. There are 2 options you can use depending upon the overall looking you want. Option 1 is to wrap the player in a table and set a background image that displays when nothing is playing. Option 2 is to set an image to "Play" when the page is open and the image will stay on the screen until a video is played. After the video plays the last frame of the video remains on the screen. The following code combines both options: <html> <head> </head> <body> <table border=0> <TR> <TD BACKGROUND="imagename.jpg"> <div align=center> <SELECT id=cancion onchange=document.all.music.filename=document.all.cancion.value; size=1 name=Music> <OPTION selected>::::: Choose Your Video :::::</OPTION> <OPTION value=(Movie Name).wmv>Video Name</OPTION> <OPTION value=(Movie Name).wmv>Video Name</OPTION> <OPTION value=(Movie Name).wmv>Video Name</OPTION> </SELECT><BR> <OBJECT id=music height=230 width=230 classid=clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95> <PARAM NAME="AutoStart" VALUE="true"> <PARAM NAME="Filename" VALUE="imagename.jpg"> <PARAM NAME="Mute" VALUE="0"> <PARAM NAME="ShowControls" VALUE="1"> <PARAM NAME="AutoRewind" VALUE="1"> <PARAM NAME="ShowStatusBar" VALUE="1"> <PARAM NAME="ShowTracker" VALUE="1"> <param name="TransparentAtStart" value="1"> <PARAM NAME="WindowlessVideo" VALUE="1"> </OBJECT> </div> </td> </tr> </table> </body> </html> The trick is "Transparentatstart" and "WindowlessVideo" controls Setting both to 0 will hold the image and last frame of the video on the screen Setting both to 1 will let the background show thru The background image is set after the BACKGROUND= tag The image "Played" is set after PARAM NAME Filename Value I have included a couple other paramenters to play with. Note: The player will look normal until the image parameters are added or removed. Have fun. Please excuse the delay in my response. Work has kept me away from posting.

There are 2 options you can use depending upon the overall looking you want.

Option 1 is to wrap the player in a table and set a background image that displays when nothing is playing.

Option 2 is to set an image to “Play” when the page is open and the image will stay on the screen until a video is played.

After the video plays the last frame of the video remains on the screen.

The following code combines both options:

<html>
<head>
</head>
<body>
<table border=0>
<TR>
<TD BACKGROUND=”imagename.jpg”>
<div align=center>
<SELECT id=cancion onchange=document.all.music.filename=document.all.cancion.value; size=1 name=Music>
<OPTION selected>::::: Choose Your Video :::::</OPTION>
<OPTION value=(Movie Name).wmv>Video Name</OPTION>
<OPTION value=(Movie Name).wmv>Video Name</OPTION>
<OPTION value=(Movie Name).wmv>Video Name</OPTION>
</SELECT><BR>
<OBJECT id=music height=230 width=230 classid=clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95>
<PARAM NAME=”AutoStart” VALUE=”true”>
<PARAM NAME=”Filename” VALUE=”imagename.jpg”>
<PARAM NAME=”Mute” VALUE=”0″>
<PARAM NAME=”ShowControls” VALUE=”1″>
<PARAM NAME=”AutoRewind” VALUE=”1″>
<PARAM NAME=”ShowStatusBar” VALUE=”1″>
<PARAM NAME=”ShowTracker” VALUE=”1″>
<param name=”TransparentAtStart” value=”1″>
<PARAM NAME=”WindowlessVideo” VALUE=”1″>
</OBJECT>
</div>
</td>
</tr>
</table>
</body>
</html>

The trick is “Transparentatstart” and “WindowlessVideo” controls
Setting both to 0 will hold the image and last frame of the video on the screen
Setting both to 1 will let the background show thru

The background image is set after the BACKGROUND= tag
The image “Played” is set after PARAM NAME Filename Value

I have included a couple other paramenters to play with.

Note: The player will look normal until the image parameters are added or removed.

Have fun.

]]>
By: Scott http://www.endusersharepoint.com/2009/03/09/embedding-video-and-audio-files-in-the-sharepoint-environment/comment-page-1/#comment-11975 Scott Wed, 15 Apr 2009 02:03:02 +0000 http://www.endusersharepoint.com/?p=1418#comment-11975 Did anyone find a way to get a picture out there instead of the black screen?? I have been digging for this for some time and have not found a solution for it. Can it be embedded in the timeline using the software that was used to edit the video?? I did not create ours and do not have access to he editing software so that is why I ask. Thanks, Scott Did anyone find a way to get a picture out there instead of the black screen?? I have been digging for this for some time and have not found a solution for it. Can it be embedded in the timeline using the software that was used to edit the video?? I did not create ours and do not have access to he editing software so that is why I ask.

Thanks,
Scott

]]>
By: WSS 3.0 & MOSS: Recopilatorio de enlaces interesantes (XXVII)! « Pasión por la tecnología… http://www.endusersharepoint.com/2009/03/09/embedding-video-and-audio-files-in-the-sharepoint-environment/comment-page-1/#comment-11693 WSS 3.0 & MOSS: Recopilatorio de enlaces interesantes (XXVII)! « Pasión por la tecnología… Wed, 01 Apr 2009 06:29:08 +0000 http://www.endusersharepoint.com/?p=1418#comment-11693 [...] Interesante serie de post en EndUser SharePoint sobre como embeber y usar vídeos (no es Silverlight.... [...] [...] Interesante serie de post en EndUser SharePoint sobre como embeber y usar vídeos (no es Silverlight…. [...]

]]>