LiteSound

From Free Pascal wiki
Revision as of 10:22, 18 February 2023 by Alextp (talk | contribs) (→‎Download)
Jump to navigationJump to search

About

LiteSound is a large set of wrappers, classes and structures for working with sound. Here you can find a set of classes for playing, recording and converting audio files and audio streams. Uses the principles of dynamic linking of libraries. Supports audio formats WAV, FLAC, Vorbis and Opus (including for the organization of streaming audio frames). The structure of the packages has not yet been fully determined. Author continues to work on structuring the class hierarchy.

Author: Ilya "iLya2IK" Medvedkov.

License: LGPL-2.1.

Requirements:

  • Free Pascal Compiler
  • Lazarus IDE (optional / for examples)
  • CommonUtils
  • SoundUtils
  • libOpenALsoft_ilya2ik - free pascal bindings and wrapper around OpenAL library
  • libOGG_ilya2ik - free pascal bindings and wrapper around OGG library
  • libFLAC_ilya2ik - free pascal bindings and wrapper around FLAC library
  • libVorbis_ilya2ik - free pascal bindings and wrapper around Vorbis library
  • libOpus_ilya2ik - free pascal bindings and wrapper around Opus library

Download

Main repository: https://github.com/iLya2IK/LiteSound

Requirements:

Examples

  • Player example - This example emulates the operation of a simple audio player, demonstrates working with comments, metadata, playlists.
  • Recorder example - This example emulates the operation of a simple audio recorder.
  • Converter example - This example emulates the operation of a simple audio file converter.
  • FrameStreaming example - In this example, an audio-ogg file is opened and decoded into a data stream. The resulting stream is then reencoded into a set of encoded frames. A set of encoded frames is saved to the files on disk in the user’s format. Frame-files are then opened, decoded into a data stream and saved in a new file in selected format.

Third party components used

  • OpenAL soft
  • OGG
  • libFLAC
  • Vorbis/VorbisEnc/VorbisFile
  • Opus/OpusEnc/OpusFile