3.9 Videos - agilie/vimeo-api-gem GitHub Wiki
https://developer.vimeo.com/api/endpoints/videos
Add a comment to a video
Add a credit to a video
Add a reply to a comment on a video
Add a text track to a video
Vimeo.video(video_id).text_tracks.create(
type: 'subtitles',
language: 'en',
file: file_url
)
Allow a list of users to view a private video
Allow a user to view a private video
Allow embedding of a video on a domain
Assign an embed preset to a video
Check if a user owns a video
Create a new video thumbnail
Delete a comment from a video
Delete a credit on a video
Delete a users' entire watch history
Delete a video
Delete a video from your watch history
Delete a video text track
Vimeo.video(video_id).text_tracks(texttrack_id).destroy
Delete a video thumbnail
Disallow a user from viewing a private video
Disallow embedding of a video on a domain
Edit a comment on a video
Edit a credit on a video
Edit a video
Edit a video text track
Vimeo.video(video_id).text_tracks(texttrack_id).update(
language: 'ru',
active: false
)
Edit a video thumbnail
Edit a video's timeline events
Get a comment on a video
Get a credit on a video
Get a video
Get a video text track
Vimeo.video(video_id).text_tracks(texttrack_id).show
Get a video thumbnail
Get all Creative Commons licenses
Get all channels a user can add or remove a video from
Get all comments on a video
Get all content ratings
Get all domains a video can be embedded on
Get all embed presets for a video
Get all languages
Get all replies to a comment on a video
Get all the text tracks for a video
Vimeo.video(video_id).text_tracks.index