Difference between revisions of "WAVE"
Jump to navigation
Jump to search
Line 8: | Line 8: | ||
== Souce code == | == Souce code == | ||
− | {{file| | + | {{file|modules/mux/wav.c|output muxer}} |
+ | {{file|modules/demux/wav.c|input demuxer}} |
Revision as of 06:18, 17 December 2006
wav
|
VLC can encode and decode this container. The module name to use at the command line is wav. |
WAVE is a way of storing uncompressed audio.
Accepted audio codecs
- dummy: Uncompressed audio of various types, based on storing integer values of the amplitude of the sound (see PCM).
- fl32: Floating point 32-bit uncompressed audio, also based on PCM but allowing the values to be stored as floating point data types. This can give better quality audio when the sound becomes quiet.
Souce code
- modules/mux/wav.c (output muxer)
- modules/demux/wav.c (input demuxer)