Lecture browsing system
(Page created: 2007-12-20)Capturing a lecture, Capturing a mathematics lecture,Manual Audio and Slide Capture, Automated Audio and Slide Capture, OpenOffice Slide Capture, Lecture browsing system.
This page illustrates some essential features you might want to have. A basic php script is included.
Contents |
Suppose we have this:
Copy both of those to your webserver, into a folder called 'Lecture_123' (or similar), so that you have
MyWebServerPATH/Lecture_123/Audio-mp3/Slide01.000.mp3 MyWebServerPATH/Lecture_123/Audio-mp3/Slide01.001.mp3 ... MyWebServerPATH/Lecture_123/Images-Ready/Slide01.000.jpg MyWebServerPATH/Lecture_123/Images-Ready/Slide01.001.jpg ... MyWebServerPATH/Lecture_123/notes-manual/Slide01.000.xml MyWebServerPATH/Lecture_123/notes-manual/Slide01.001.xml ... MyWebServerPATH/Lecture_123/notes-auto/Slide01.000.txt MyWebServerPATH/Lecture_123/notes-auto/Slide01.001.txt ...
We also have full length versions:
MyWebServerPATH/Lecture_123/Full/Lecture_123.pdf MyWebServerPATH/Lecture_123/Full/Lecture_123.mp3 MyWebServerPATH/Lecture_123/Full/Lecture_123.xml
We now want to have a feed per 'Lecture' and we want to have a feed that has all segments for all lectures in it.
<general rss stuff, see elsewhere/> <item> <title>Lecture 123: Pdf file of slides</title> <description>General description of the lecture</description> <enclosure url="http: //MyWebServerURL/Lecture_123/Lecture_123.pdf"/> </item> <item> <title>Lecture 123, Part 01: Bla bla</title> <description>Content on slide 1 from Notes.txt, as well as content of Slide01.txt</description> <enclosure url="http: //MyWebServerURL/Lecture_123/Audio-mp3/Slide01.000.mp3"/> </item> <item> <title>Lecture 123, Part 01 continued: Bla bla</title> <description>Content on slide 1 from Notes.txt, as well as content of Slide01.txt</description> <enclosure url="http: //MyWebServerURL/Lecture_123/Audio-mp3/Slide01.001.mp3"/> </item> ... <item> <title>Lecture 123, Part 43: Bla bla bla bla</title> <description>Content on slide 43 from Notes.txt, as well as content of Slide43.txt</description> <enclosure url="http: //MyWebServerURL/Lecture_123/Audio-mp3/Slide43.000.mp3"/> </item> ...
We also want to be able to watch each lecture as a flash file:
A very interesting lecture on 123
<object type="application/x-shockwave-flash" data="flowplayer.swf" width="320" height="240" id="FlowPlayer">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="flowplayer.swf" />
<param name="quality" value="high" />
<param name="scale" value="noScale" />
<param name="wmode" value="transparent" />
<param name="flashvars" value="config={
showPlayListButtons: true,
playList:[ { url: 'http: //MyWebServerURL/Lecture_123/Audio-mp3/Slide01.000.mp3',
overlay: 'http: //MyWebServerURL/Lecture_123/Images-Ready/Slide01.000.jpg' },
{ url: 'http: //MyWebServerURL/Lecture_123/Audio-mp3/Slide01.001.mp3',
overlay: 'http: //MyWebServerURL/Lecture_123/Images-Ready/Slide01.001.jpg' }],
autoPlay: false,
autoBuffering: false,
splashImageFile: 'http: //MyWebServerURL//ClickHereToPlay.jpg',
showMenu: false,
loop: false,
showLoopButton: false,
showFullScreenButton: false}"
/>
</object>
<a href="http: //MyWebServerURL/Lecture_123/Full/Lecture_123.pdf">Download the entire presentation as pdf</a>
<a href="http: //MyWebServerURL/Lecture_123/Full/Lecture_123.mp3">Download the whole lecture audio as mp3</a>
<a href="http: //MyWebServerURL/Lecture_123/Lecture_123.rss">Subscribe to podcast feed for this lecture</a>
<a href="http: //MyWebServerURL/Lecture_Podcasts.rss">Subscribe to podcast feed for all lectures</a>
We also want to search across all 'notes' files, and to be able to retrieve individual lecture segments. Once you have the segments returned by the search, you should be able to listen to those segments within the search page, or to link out to the whole lectures.
The system should publish an index file, through which the entire content can be downloaded. We need a script on the receiving end, that can mirror the content.
The system should publish an rss feed of all assets