get_encoders | R Documentation |
Query a list of installed encoders from FFmpeg and construct a tidy data frame containing information about these encoders.
get_encoders(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 encoder |
details |
A character vector including details about each encoder |
type |
A factor vector indicating whether each encoder supports
|
frame_mt |
A logical vector indicating whether each encoder supports frame-level multithreading |
slice_mt |
A logical vector indicating whether each encoder supports slice-level multithreading |
experimental |
A logical vector indicating whether each encoder is experimental |
horiz_band |
A logical vector indicating whether each encoder supports draw_horiz_band |
direct_render |
A logical vector indicating whether each encoders supports direct rending method 1 |
## Not run:
get_encoders()
get_encoders(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.