Please note: All new registrants to the Panopto Community Forum must be approved by a forum moderator or admin. As such, if you navigate to a feature that is members-only, you may receive an error page if your registration has not yet been approved. We apologize for any inconvenience and are approving new members as quickly as possible.
Can the Panopto API be used to identify whether a recording has captions?
in API
Best Answer
-
Aishwarya Harpale Tyro
Hello TEL,
This is possible using our REST APIs. This is how you can achieve it:You may request information about a session using a GET call to
https://<your-site>/Panopto/api/v1/sessions/{id}
, whereid
is the video/recording ID.
Then filter the results using theCaptionDownloadUrl
parameter. The sessions that have captions available have this parameter set on them.Regards,
Aish2
Answers
Thanks, Aish.