Producing Participatory Media
Class 3 - July 6
Topics:
Video Aggregation Sites
This list is on the wiki: Wiki::OnlineVideo Aggregators for all to edit, update and reference.
Video Aggregation Software
This list is on the wiki: Wiki::DesktopVideo Aggregators
Pushing it further
Using existing web based technologies in combination with audio and video on the internet we can push the medium further. From allowing tagging to occur within video to simply offering a better experience we might be able to offer some of the things that video blogging and podcasting are missing.
JavaScript and QuickTime (on the web)
Since QuickTime can be used as a browser plugin, it can be scripted.
The first step is to embed the video:
<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="320"HEIGHT="257" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab" ID="myMovie"> <PARAM name="SRC" VALUE="http://itp.nyu.edu/~sve204/ppm/embedded.mp4"> <PARAM name="AUTOPLAY" VALUE="false"> <PARAM name="CONTROLLER" VALUE="true"> <EMBED SRC="http://itp.nyu.edu/~sve204/ppm/embedded.mp4" WIDTH="320" HEIGHT="257" AUTOPLAY="false" CONTROLLER="true" PLUGINSPAGE="http://www.apple.com/quicktime/download/" NAME="myMovie"> </EMBED> </OBJECT>Careful when using this code. Make sure that stray line breaks don't mess things up.
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="550" height="400" id="player_lite" align="middle"> <param name="allowScriptAccess" value="sameDomain" /> <param name="movie" value="player_lite.swf" /> <param name="quality" value="high" /> <param name="bgcolor" value="#ffffff" /> <param name="flashvars" value="url=embedded.flv" /> <embed src="player_lite.swf" quality="high" bgcolor="#ffffff" width="550" height="400" name="player_lite" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="url=embedded.flv" /> </object>Basic Flash Video Player Source File