View source: R/update_video_metadata.R
update_video_metadata | R Documentation |
This function updates the metadata of an existing YouTube video using the YouTube Data API.
update_video_metadata(
video_id,
title,
category_id,
description,
privacy_status,
made_for_kids
)
video_id |
A character string specifying the ID of the video you want to update. |
title |
A character string specifying the new title for the video. |
category_id |
A character string specifying the new category ID for the video. |
description |
A character string specifying the new description for the video. |
privacy_status |
A character string specifying the new privacy status for the video ('public', 'private', or 'unlisted'). |
made_for_kids |
A boolean specifying whether the video is self-declared as made for kids. |
A list containing the server response after the update attempt.
## Not run:
update_video_metadata(video_id = "YourVideoID",
title = "New Video Title",
category_id = "24",
description = "New Description",
privacy_status = "public",
made_for_kids = FALSE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.