Difference between revisions of "Reggae: MorphOS multimedia framework"
From MorphOS Library
(→General: Added 'Writing Reggae classes'.) |
(→Overview: ReggaeList) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 14: | Line 14: | ||
* [[Kinds of Reggae classes]]. | * [[Kinds of Reggae classes]]. | ||
* [[Reggae common formats]]. | * [[Reggae common formats]]. | ||
+ | See also [https://www.morphos-storage.net/?id=1532522 ReggaeList]. | ||
==Tutorials== | ==Tutorials== | ||
Line 22: | Line 23: | ||
* [[Downloading web resources with http.stream - advanced]] | * [[Downloading web resources with http.stream - advanced]] | ||
* [[Writing Reggae classes]] | * [[Writing Reggae classes]] | ||
+ | * [[Reggae and XPK]] | ||
===Audio=== | ===Audio=== | ||
Line 27: | Line 29: | ||
* [[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]]. | ||
+ | * [[Reggae tutorial: Saving audio in user selected format|Saving audio in user selected format]]. |
Latest revision as of 08:35, 5 September 2024
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.
Overview
This section contains general Reggae information, its design principles, usage patterns and rules.
See also ReggaeList.
Tutorials
This section contains Reggae programming tutorials with example code.
General
- Accessing Reggae in applications
- Downloading web resources with http.stream - basics
- Downloading web resources with http.stream - advanced
- Writing Reggae classes
- Reggae and XPK