Description Usage Arguments Details Value Examples
View source: R/use_start_time.R
This function provides you a consistent way to specify the start time, regardless of the service. Please note that Box does not provide a means to specify the start time.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ## S3 method for class 'vembedr_embed_box'
use_start_time(embed, ...)
## S3 method for class 'vembedr_embed_channel9'
use_start_time(embed, start_time, is_paused = TRUE, ...)
## S3 method for class 'vembedr_embed_msstream'
use_start_time(embed, start_time, ...)
## S3 method for class 'vembedr_embed_vimeo'
use_start_time(embed, start_time, ...)
## S3 method for class 'vembedr_embed_youtube'
use_start_time(embed, start_time, ...)
use_start_time(embed, ...)
## Default S3 method:
use_start_time(embed, ...)
|
embed |
|
... |
generic arguments to pass through |
start_time |
|
is_paused |
|
The start_time argument can take a variety of formats; these inputs
all evaluate to the same value:
"0h1m0s", "0h01m00s", "0h1m"
"1m0s", "1m"
"60s", 60
Please note that for Vimeo, you can specify a start time, but you can not
specify that the video be paused at this time. In other words, it is like
"autoplay" is set to TRUE, and you cannot unset it.
Object with S3 class vembedr_embed.
1 2 | rickroll_youtube() %>%
use_start_time("3m32s")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.