gives the list of available video encoders available for each video container.
$VideoEncoders
gives the list of available video encoders available for each video container.
Details
- The list of available video encoders is returned as an association in the form of <|"AVI"->{{enc1,descr1},…},…|>, where enci is an available encoder described by descri.
- See the tech note for more details about codec support.
Examples
open all close allBasic Examples (3)
Scope (3)
Use a supported video encoder when exporting to a video file:
v = Video["http://exampledata.wolfram.com/office.ts"];
Export["file.mkv", v, VideoEncoding -> "H263"]Check the video encoding of the created file:
Import["file.mkv", "VideoEncoding"]On some platforms, there might be more than one encoder per codec. Find all H264 encoders:
Select[$VideoEncoders["MP4"][[All, 1]], StringContainsQ["H264"]]Check if a specific encoder is available:
MemberQ[$VideoEncoders["MP4"][[All, 1]], "LIBXAVS2"]Related Guides
History
Text
Wolfram Research (2020), $VideoEncoders, Wolfram Language function, https://reference.wolfram.com/language/ref/$VideoEncoders.html.
CMS
Wolfram Language. 2020. "$VideoEncoders." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/$VideoEncoders.html.
APA
Wolfram Language. (2020). $VideoEncoders. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/$VideoEncoders.html
BibTeX
@misc{reference.wolfram_2026_$videoencoders, author="Wolfram Research", title="{$VideoEncoders}", year="2020", howpublished="\url{https://reference.wolfram.com/language/ref/$VideoEncoders.html}", note=[Accessed: 12-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_$videoencoders, organization={Wolfram Research}, title={$VideoEncoders}, year={2020}, url={https://reference.wolfram.com/language/ref/$VideoEncoders.html}, note=[Accessed: 12-June-2026]}