[5078] in linux-announce channel archive
Linux-Announce Digest #371
daemon@ATHENA.MIT.EDU (Digestifier)
Mon Mar 13 02:13:07 2006
From: Digestifier <Linux-Announce-Request@senator-bedfellow.mit.edu>
To: Linux-Announce@senator-bedfellow.mit.edu
Reply-To: Linux-Announce@senator-bedfellow.mit.edu
Date: Mon, 13 Mar 2006 02:13:03 EST
Linux-Announce Digest #371, Volume #5 Mon, 13 Mar 2006 02:13:03 EST
Contents:
[SLUG] Suncoast LUG Meetings (Paul M Foster)
liboggz 0.9.5 Release (Conrad Parker)
----------------------------------------------------------------------------
Date: Sun, 12 Mar 2006 23:58:13 -0600
Subject: [SLUG] Suncoast LUG Meetings
From: paulf@quillandmouse.com (Paul M Foster)
*************************************
* Suncoast Linux Users Group (SLUG) *
* Meeting Schedule *
*************************************
TAMPA ****************************************************
14 March 19:00-21:00 Tampa
(second TUESDAY of each month)
Hillsborough Community College
Dale Mabry Campus
Technology Bldg, Rm 426
4001 Tampa Bay Blvd
Tampa, FL
See http://www.hccfl.edu/pollock/Docs/DM-Map.htm for directions.
SARASOTA/BRADENTON ***************************************
21 March 18:00-21:00 Sarasota
(third Tuesday of each month)
New College
Math Reading Room, HNS 106
5700 N. Tamiami Trail
Sarasota, FL 34243
See http://www.ncf.edu/about/directions.html and
http://www.ncf.edu/about/pdf/map.pdf for maps
DUNEDIN **************************************************
25 March 10:00-12:00 Dunedin
(usually fourth Saturday of each month)
Dunedin Public Library
Community Room A or B (see notice on site)
Dunedin, FL
See http://www.suncoastlug.org/meetings.html#dunedin for directions.
ST PETERSBURG ********************************************
27 March 19:00-21:00 St Petersburg
(usually last Monday of each month)
J. J. Rohrer
Sterling Square
600 First Ave North
St Petersburg, FL 33701
See http://maps.google.com/maps?q=600+First+Ave+N,+Saint+Petersburg,+FL&spn=0.017456,0.027210&hl=en
for map.
NEW PORT RICHEY ******************************************
1 April 13:00-15:00 New Port Richey
(first Saturday of each month)
New Port Richey Public Library
(second level meeting rooms)
5939 Main St.
New Port Richey, FL
See http://www.suncoastlug.org/meetings.html#npr for directions.
BRANDON **************************************************
6 April 20:00-22:00 Brandon
(first Thursday of each month)
Brandon Barnes & Noble
Brandon Town Center
Brandon, FL
See http://www.suncoastlug.org/meetings.html#Brandon for directions.
***********************************************************
ACTIVITIES:
Meetings include:
1) Presentation: As indicated.
2) Question & Answer Session.
3) Raffle and free stuff!
Bring your boxes, questions, problems, and plenty of good cheer!
(And don't forget to start your installs early!)
##########################################################################
# Send submissions for comp.os.linux.announce to: cola@stump.algebra.com #
# PLEASE remember a short description of the software and the LOCATION. #
# This group is archived at http://stump.algebra.com/~cola/ #
##########################################################################
------------------------------
Date: Sun, 12 Mar 2006 23:57:03 -0600
From: Conrad Parker <conrad@metadecks.org>
Subject: liboggz 0.9.5 Release
Oggz 0.9.5 Release
==================
Oggz comprises liboggz and the command-line tools oggzinfo, oggzdump,
oggzdiff, oggzmerge, oggzrip, oggz-scan and oggz-validate.
liboggz is a C library providing a simple programming interface for reading
and writing Ogg files and streams. Ogg is an interleaving data container
developed by Monty at Xiph.Org, originally to support the Ogg Vorbis audio
format.
This release is available as a source tarball at:
http://www.annodex.net/software/liboggz/download/liboggz-0.9.5.tar.gz
New in this release:
* Fixed and updated Windows (Visual Studio) support
- added missing exported symbols, projects for oggz tools.
(Alex Krumm-Heller, Silvia Pfeiffer)
* Support for OggPCM (Draft 2, Main header)
OggPCM is an experimental specification for storing uncompressed
PCM audio in Ogg bitstreams.
- liboggz: Recognition of OggPCM timestamps, and support for
seeking in files that contain OggPCM logical bitstreams.
- oggzinfo: Display OggPCM header details
- oggzdump, oggzrip: New [--content-type pcm, -c pcm] option
to filter on OggPCM
- oggz-validate: Validate framing of OggPCM logical bitstreams
This version is installed on http://validator.annodex.org/ for
online validation of OggPCM files.
For more information about OggPCM, see:
http://wiki.xiph.org/index.php/OggPCM
* ./configure support for large (>2GB) files
This version adds build configuration support for large files,
allowing liboggz to operate on files >2GB. This version does
not introduce any API changes; interfaces such as oggz_tell()
continue to use off_t externally. However, sequential reading
and validation of large files is now possible.
* bug fixes and cleanups:
- oggz-validate, oggzmerge, oggzdump, oggz-scan, oggzinfo: handle
unknown content types (Ian Malone)
- remove deprecated oggzed example
- various code and documentation build cleanups
About Oggz
==========
Oggz comprises liboggz and the command-line tools oggzinfo, oggzdump,
oggzdiff, oggzmerge, oggzrip, oggz-scan and oggz-validate.
liboggz supports the flexibility afforded by the Ogg file format while
presenting the following API niceties:
* Full API documentation
* Comprehensive test suite of read, write and seeking behavior.
The entire test suite can be run under valgrind if available.
* Developed and tested on GNU/Linux, Darwin/MacOSX, Win32 and
Symbian OS. May work on other Unix-like systems via GNU autoconf.
For Win32: nmake Makefiles, Visual Studio .NET 2003 solution files
and Visual C++ 6.0 workspace files are provided in the source
distribution.
* Strict adherence to the formatting requirements of Ogg bitstreams,
to ensure that only valid bitstreams are generated; writes can fail
if you try to write illegally structured packets.
* A simple, callback based open/read/close or open/write/close
interface to raw Ogg files.
* Writing automatically interleaves with packet queuing, and provides
callback based notification when this queue is empty
* A customisable seeking abstraction for seeking on multitrack Ogg
data. Seeking works easily and reliably on multitrack and multi-codec
streams, and can transparently parse Theora, Speex, Vorbis, FLAC,
CMML and Ogg Skeleton headers without requiring linking to those
libraries. This allows efficient use on servers and other devices
that need to parse and seek within Ogg files, but do not need to do
a full media decode.
Full documentation of the liboggz API, customization and installation,
and mux and demux examples can be read online at:
http://www.annodex.net/software/liboggz/html/
Tools
=====
The Oggz source tarball also contains the following command-line tools,
which are useful for debugging and testing Ogg bitstreams:
* oggzinfo: Display information about one or more Ogg files and
their bitstreams.
* oggzdump: Hexdump packets of an Ogg file, or revert an Ogg file
from such a hexdump.
* oggzdiff: Hexdump the packets of two Ogg files and output
differences.
* oggzmerge: Merge Ogg files together, interleaving pages in order
of presentation time.
* oggzrip: Extract one or more logical bitstreams from an Ogg file.
* oggz-scan: Scan an Ogg file and output characteristic landmarks.
* oggz-validate: Validate the Ogg framing of one or more files.
License
=======
Oggz is Free Software, available under a BSD style license.
More information is available online at the Oggz homepage:
http://www.annodex.net/software/liboggz/
enjoy :)
--
Conrad Parker
Senior Software Engineer, Continuous Media Web, CSIRO Australia
http://www.annodex.net/ http://www.ict.csiro.au/cmweb/
##########################################################################
# Send submissions for comp.os.linux.announce to: cola@stump.algebra.com #
# PLEASE remember a short description of the software and the LOCATION. #
# This group is archived at http://stump.algebra.com/~cola/ #
##########################################################################
------------------------------
** FOR YOUR REFERENCE **
The service address, to which questions about the list itself and requests
to be added to or deleted from it should be directed, is:
Internet: Linux-Announce-Request@NEWS-DIGESTS.MIT.EDU
You can submit announcements to be moderated via:
Internet: linux-announce@NEWS.ORNL.GOV
Linux may be obtained via one of these FTP sites:
ftp.funet.fi pub/Linux
tsx-11.mit.edu pub/linux
sunsite.unc.edu pub/Linux
End of Linux-Announce Digest
******************************