get_codecs | R Documentation |
Query a list of installed codecs from FFmpeg and construct a tidy data frame containing information about these codecs.
get_codecs(sort_by_type = TRUE)
sort_by_type |
A logical indicating whether the tibble should be sorted
by type and then by name ( |
A tibble with the following variables:
name |
A character vector including the name/code of each codec |
details |
A character vector including details about each codec |
type |
A factor vector indicating whether each codec supports
|
decoding |
A logical vector indicating whether each codec supports decoding |
encoding |
A logical vector indicating whether each codec supports encoding |
intraframe |
A logical vector indicating whether each codec is an intra-frame-only codec |
lossy |
A logical vector indicating whether each codec supports lossy compression |
lossless |
A logical vector indicating whether each codec supports lossless compression |
## Not run:
get_codecs()
get_codecs(sort_by_type = FALSE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.