Difference between revisions of "Reggae: MorphOS multimedia framework"

From MorphOS Library

(Audio: Another tutorial link.)
(General: Added 'Kinds of Reggae classes'.)
Line 14: Line 14:
 
===General===
 
===General===
 
* [[Reggae tutorial: Accessing Reggae in applications|Accessing Reggae in applications]].
 
* [[Reggae tutorial: Accessing Reggae in applications|Accessing Reggae in applications]].
 +
* [[Reggae tutorial: Kinds of Reggae classes|Kinds of Reggae classes]].
 +
 
===Audio===
 
===Audio===
 
* [[Reggae tutorial: Playing a sound from file|Playing a sound from file]].
 
* [[Reggae tutorial: Playing a sound from file|Playing a sound from file]].
 
* [[Reggae tutorial: Playing a sound from memory|Playing a sound from memory]].
 
* [[Reggae tutorial: Playing a sound from memory|Playing a sound from memory]].
 
* [[Reggae tutorial: Playing a synthesized, continuous wave|Playing a continuous, synthesized wave]].
 
* [[Reggae tutorial: Playing a synthesized, continuous wave|Playing a continuous, synthesized wave]].

Revision as of 19:55, 16 August 2010

Grzegorz Kraszewski

Introduction

Reggae is the name for modular MorphOS subsystem for handling media files (currently pictures and sounds, video and other contents will come in the future). Reggae is implemented as a large set of MorphOS shared libraries stored in MOSSYS:Classes/Multimedia/ directory. Third party Reggae classes may be copied to SYS:Classes/Multimedia/. Using Reggae an application developer can easily perform following tasks related to media processing:

  • Recognizing media type and format.
  • Streaming media via different transports.
  • Demultiplexing compound media streams.
  • Decoding media to plain, uncompressed format.
  • Processing by applying filters.
  • Presenting media to the user.
  • Encoding and multiplexing.

Reggae is an object oriented framework. Every media processing task creates a pipe (or tree) of Reggae objects connected to each other. Media data travel along this structure in relatively small chunks. This pipelined processing allows for handling very big data, much bigger than available system memory.

Tutorials

This section contains Reggae programming tutorials with example code.

General

Audio