Difference between revisions of "sndfile"

From Lazarus wiki
Jump to navigationJump to search
(New page: The '''sndfile''' unit is the interface unit for the libsndfile library for linux. It is a straightforward translation of the sndfile.h header file. It allows to read sound files from a va...)
 
 
(2 intermediate revisions by 2 users not shown)
Line 2: Line 2:
  
 
The package contains an example program, '''sfplay''', which plays a sound file (name specified on the command-line) through the sound device.
 
The package contains an example program, '''sfplay''', which plays a sound file (name specified on the command-line) through the sound device.
 +
 +
There's a edited version of this PAS file on http://www.breakoutbox.de/pascal/pascal.html#LibSndFile
 +
The download also contains a GUI example application.
  
 
Go to back [[Package_List|Packages List]]
 
Go to back [[Package_List|Packages List]]
 +
 +
[[Category:Standard Units]]
 +
[[Category:Audio]]

Latest revision as of 09:02, 30 April 2013

The sndfile unit is the interface unit for the libsndfile library for linux. It is a straightforward translation of the sndfile.h header file. It allows to read sound files from a variety of formats, and play them through the sound device.

The package contains an example program, sfplay, which plays a sound file (name specified on the command-line) through the sound device.

There's a edited version of this PAS file on http://www.breakoutbox.de/pascal/pascal.html#LibSndFile The download also contains a GUI example application.

Go to back Packages List