search for: mod_annodex

Displaying 18 results from an estimated 18 matches for "mod_annodex".

2005 Feb 14
0
mod_annodex 0.2.0 Release
mod_annodex 0.2.0 Release ========================= mod_annodex is a module for Apache httpd, and provides server-side support for annodex media. Parallel versions are available for Apache versions 1.3 and 2.0. Annodex is an open standards based technology that extends the World Wide Web's hyperlinking,...
2005 Mar 04
0
mod_annodex 0.2.1 Release
mod_annodex 0.2.1 Release ========================= mod_annodex is a module for Apache httpd, and provides server-side support for annodex media. Parallel versions are available for Apache versions 1.3 and 2.0. Annodex is an open standards based technology that extends the World Wide Web's hyperlinking,...
2008 Mar 25
4
Regarding applications implementation of Skeleton's Content-Type
On 3/20/08, Conrad Parker <conrad at metadecks.org> wrote: > I agree that tools should now start writing media types without the x- . Cool. j^ reported that some of the tools in the Annodex SVN like mod_annodex, anxrip, oggz-merge, oggz-rip, etc will need to be modified. I do not have SVN access to edit these, so can one of you guys do it? With j's consent, I'll edit ffmpeg2theora. -Ivo
2005 Nov 01
3
Live HTTP streaming of Theora files
...h I'm not sure if I could convince it to use Theora anyway.) - I could encode the entire file into an Ogg/Theora file and just do a progressive HTTP download, but that means I can't broadcast until the event is complete. - It looks like there is some kind of Apache module (maybe "mod_annodex") that does (maybe?) a progressive HTTP download of a dynamically-generated Ogg/Theora file (?), but I'm a bit lost on the details. - I'm very familiar with RTP at at a low level, and RTSP looks straightforward, but I'm not sure what off-the-shelf servers and players I need to...
2008 Feb 29
0
oggz-chop CGI
...iles in a particular directory). An example config is in the source tree, along with a script for installing it on a Debian server. The oggz-chop binary checks if it is being run as a CGI script (by checking some environment variables), and if so acts based on the CGI query parameter t=, much like mod_annodex. It accepts all the time specifications that mod_annodex accepts (npt and various smpte framerates), and start and end times separated by a /. It does not currently add a skeleton track, or attempt to modify the skeleton track of files which have it. In the current revision (r3506) it is simply de...
2008 Jul 04
2
Oggz 0.9.8 Released
...irectory). An example Apache configuration is in the liboggz source tree, along with a script for installing it on a Debian server. The oggz-chop binary checks if it is being run as a CGI script (by checking some environment variables), and if so acts based on the CGI query parameter t=, much like mod_annodex. It accepts all the time specifications that mod_annodex accepts (npt and various smpte framerates), and start and end times separated by a /. About Oggz ---------- Oggz comprises liboggz and the command-line tools oggzinfo, oggzdump, oggzdiff, oggzmerge, oggzrip, oggz-chop, oggz-comment, oggz-s...
2008 Jul 04
2
Oggz 0.9.8 Released
...irectory). An example Apache configuration is in the liboggz source tree, along with a script for installing it on a Debian server. The oggz-chop binary checks if it is being run as a CGI script (by checking some environment variables), and if so acts based on the CGI query parameter t=, much like mod_annodex. It accepts all the time specifications that mod_annodex accepts (npt and various smpte framerates), and start and end times separated by a /. About Oggz ---------- Oggz comprises liboggz and the command-line tools oggzinfo, oggzdump, oggzdiff, oggzmerge, oggzrip, oggz-chop, oggz-comment, oggz-s...
2008 Feb 11
4
Seeking to granules in discontinuous streams
> The advantage of storing this in the granulepos field itself, like > theora and CMML do, is that the seek code may already understand how > to handle the back pointer. Right now everything assumes the mapping > is from 'initialized decoder' + 'granulepos from page header' => > timestamp, or in the case of theora and CMML => 'timestamp' + 'last
2008 Feb 13
0
Header packet multiplicity
...ton, so that it's simple to keep track of which of a streams packets are headers. At the time though we were only really dealing with vorbis, theora, and speex; the first two have a fixed nr of headers (3) and the last has 2+extra_headers, where extra_headers can be read from the bos page. So, mod_annodex, hogg chop etc. just use the extra_headers / nr_headers info, and don't use the granulepos value to determine what is a header or not. To further make it clear, skeleton puts its eos page, with a 0 length packet, in between the last header and the first data page of the stream. If we wanted t...
2008 Mar 13
2
Regarding applications implementation of Skeleton's Content-Type
On 3/12/08, Silvia Pfeiffer <silviapfeiffer1@gmail.com> wrote: > I agree. Ayone else agrees? Conrad? j?
2005 Mar 04
0
libannodex 0.6.1 Release
...rmation on Annodex, see http://www.annodex.net/ This release is available as a source tarball at: http://www.annodex.net/software/libannodex/download/libannodex-0.6.1.tar.gz New in this release: * Removed all memory leaks in the libannodex codepaths used by the commandline tools and by mod_annodex * added new anxgrep tool: http://www.annodex.net/software/libannodex/anxgrep.html * fixed bugs: #68 anxed --end npt:N produces short files #72 xtag_new_parse() requires NUL termination but shouldn't #-- update OGGZ version number in pkg-config check * added new API...
2008 Feb 11
0
Seeking to granules in discontinuous streams
...er > the backlinked packet, and that's enough for our purposes. > Therefore, the > second bisection can be done timewise on the main continuous codec > (eg, > the accompanying theora video). We need to work out recommendations for this. And it depends on your purposes: the mod_annodex thing of trying to efficiently serve a chunk out of an existing file is the most demanding. But even for generic playback from a file, you have to know whether you need to find the kate packet after a seek or just wait and see if one eventually falls out. > Following on your point about...
2008 Jun 06
2
Finding out the duration of an Ogg stream
Hello people! I'm developing a Java Ogg media player applet and I have encountered a problem while creating a progress bar. I need to know how long, in samples or seconds, the Ogg stream that I'm playing is, and I need to know it before I have downloaded the entire stream. Problem is, I don't see how I could do that. I could provide a "duration" argument, but that would
2008 Feb 13
2
Header packet multiplicity
> There are a usually lot more data packets than header packets, so > having an internal length there hurts your bitrate a lot more. Of > course, it may not be significant for an uncompressed text codec. If muxed with a video, it's insignificant (well, for my test cases). > With codecs using the 'count of decodable samples' rule to calculate > their granulepos, the
2005 Sep 27
2
Stream "Saving" and Excerpting...
I'm working with a streaming Ogg Vorbis system where I'm taking the stream output (from a darkice server) and saving it to hour-long files, then reassembling excerpts from these files (sometimes spanning two or three) into a single file for playback. I've got two problems (well, related to this, but anyway). 1) The "chunk" files I'm saving into have mangled headers. 2)
2008 Feb 12
2
Seeking to granules in discontinuous streams
...nation of its interest, which so far seems to be that it keeps all the granule data in the same place, at the page level, which so far does not convince me it is worth the loss of 32 bits of granule space. > We need to work out recommendations for this. And it depends on your > purposes: the mod_annodex thing of trying to efficiently serve a > chunk out of an existing file is the most demanding. But even for > generic playback from a file, you have to know whether you need to > find the kate packet after a seek or just wait and see if one > eventually falls out. Provided you seeked at...
2007 Oct 19
2
W3C Video on the Web Workshop
List, The W3C will host a workshop to discuss video on the Web in 12-13 December 2007, San Jose, California. I think it's important that someone from Xiph, or an enthusiastic fan of Theora would participate. There is no participation fee and you do not need to be a W3C member to participate, so if you are in the area why not consider going? You only have to register to participate. All
2004 Oct 24
4
Help please streaming oggs as they are being created
Hi all, I often record radio shows for posterity, and sometimes I have friends who would like to listen to them live over the net. When I am recording for my own purposes, I use a command of the form: "brec | oggenc", (options omitted for clarity) and I send the output to a file, call it radio.ogg. Locally, I use Debian stable. If I want to listen to the show as I record it, I can