Difference between revisions of "Demuxing"

From VideoLAN Wiki
Jump to navigation Jump to search
(Copy-edit: this can be explained simpler. I changed the links to the demuxers, because they didn't link to demuxer documentation)
m (See also: Category:Container)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Wikipedia|Demultiplexer (audio file)}}
+
{{See also|Category:Container}}
 +
{{Wikipedia|Demultiplexer (media file)}}
  
 
'''Demuxing''' is an abbreviation of '''demultiplexing'''. Demuxing is the process of reading a multi-part stream and saving each part – audio, video, and subtitles (if any) – as a separate stream. It is the logical reverse of the [[muxing]] process.
 
'''Demuxing''' is an abbreviation of '''demultiplexing'''. Demuxing is the process of reading a multi-part stream and saving each part – audio, video, and subtitles (if any) – as a separate stream. It is the logical reverse of the [[muxing]] process.
Line 6: Line 7:
  
 
Most media file formats are multiplexed together in this way and VLC uses ''demuxer'' modules to separate them. Examples of demuxers that VLC uses are [[Documentation:Modules/asf|asf]] (for [[ASF]]), [[Documentation:Modules/ogg|ogg]] (for [[Ogg]]) and [[Documentation:Modules/mkv|mkv]] (for [[Matroska]]).
 
Most media file formats are multiplexed together in this way and VLC uses ''demuxer'' modules to separate them. Examples of demuxers that VLC uses are [[Documentation:Modules/asf|asf]] (for [[ASF]]), [[Documentation:Modules/ogg|ogg]] (for [[Ogg]]) and [[Documentation:Modules/mkv|mkv]] (for [[Matroska]]).
 +
 +
== See also ==
 +
* [[Hacker Guide/Demux]]
  
 
[[Category:Glossary]]
 
[[Category:Glossary]]

Latest revision as of 05:17, 15 February 2019

Demuxing is an abbreviation of demultiplexing. Demuxing is the process of reading a multi-part stream and saving each part – audio, video, and subtitles (if any) – as a separate stream. It is the logical reverse of the muxing process.

For example, AVI is a container that means audio-video interleave. The processing of demuxing an AVI requires separating the audio and visual components so (after being decoded by other modules) they can finally reach the speaker and monitor, respectively.

Most media file formats are multiplexed together in this way and VLC uses demuxer modules to separate them. Examples of demuxers that VLC uses are asf (for ASF), ogg (for Ogg) and mkv (for Matroska).

See also