Description Usage Arguments Details Value See Also Examples
These functions are used to embed video into your rmarkdown html-documents, or into your shiny apps. There are functions to embed from YouTube, Vimeo, Microsoft Channel 9 (who host the UseR! 2016 videos), and Box.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | embed_box(
id,
custom_domain = getOption("vembedr.box_custom_domain"),
width = NULL,
height = 300,
ratio = c("16by9", "4by3"),
frameborder = 0,
allowfullscreen = TRUE
)
embed_msstream(
id,
width = NULL,
height = 300,
ratio = c("16by9", "4by3"),
query = NULL
)
embed_vimeo(
id,
width = NULL,
height = 300,
ratio = c("16by9", "4by3"),
frameborder = 0,
allowfullscreen = TRUE,
query = NULL,
fragment = NULL
)
embed_youtube(
id,
width = NULL,
height = 300,
ratio = c("16by9", "4by3"),
frameborder = 0,
allowfullscreen = TRUE,
query = NULL
)
|
id |
|
custom_domain |
|
width |
|
height |
|
ratio |
|
frameborder |
|
allowfullscreen |
|
query |
|
fragment |
|
These services allow you to customize a lot of things by specifying an optional query string. The specification for the query string will differ according to the service being used:
https://developer.box.com/guides/embed/box-embed/#programmatically
Object with S3 class vembedr_embed
.
1 2 3 4 | embed_youtube("dQw4w9WgXcQ")
embed_vimeo("45196609")
embed_box("m5do45hvzw32iv2aors3urf5pgkxxazx")
embed_msstream("ae21b0ac-4a2b-41f4-b3fc-f1720dd20f48")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.