Retrieves thumbnail URLs and metadata for videos.
Value
A tidy data frame with one row per video and thumbnail size when `simplify = TRUE`; otherwise the raw videos-list response.
Examples
if (FALSE) { # \dontrun{
# Get all thumbnail sizes for a video
thumbs <- get_video_thumbnails("dQw4w9WgXcQ")
# Get only high resolution thumbnails
thumbs_hd <- get_video_thumbnails("dQw4w9WgXcQ", size = "high")
# Get thumbnails for multiple videos
thumbs_batch <- get_video_thumbnails(c("dQw4w9WgXcQ", "M7FIvfx5J10"))
} # }