Upload Video to Youtube
Usage
upload_video(
  file,
  snippet = NULL,
  status = list(privacyStatus = "public"),
  query = NULL,
  open_url = FALSE,
  ...
)Arguments
- file
- Filename of the video locally 
- snippet
- Additional fields for the video, including `description` and `title`. See https://developers.google.com/youtube/v3/docs/videos#resource for other fields. Coerced to a JSON object 
- status
- Additional fields to be put into the - statusinput. options for `status` are `license` (which should hold: `creativeCommon`, or `youtube`), `privacyStatus`, `publicStatsViewable`, `publishAt`.
- query
- Fields for `query` in `POST` 
- open_url
- Should the video be opened using - browseURL
- ...
- Additional arguments to send to - tuber_POSTand therefore- POST
Value
A list of the response object from the POST, content,
and the URL of the uploaded
Note
The information for `status` and `snippet` are at https://developers.google.com/youtube/v3/docs/videos#resource but the subset of these fields to pass in are located at: https://developers.google.com/youtube/v3/docs/videos/insert The `part“ parameter serves two purposes in this operation. It identifies the properties that the write operation will set, this will be automatically detected by the names of `body`. See https://developers.google.com/youtube/v3/docs/videos/insert#usage