Best Of
Re: ETA on LTI Fix
Hi Christopher,
My issue was due to a role change from Panopto. The were no longer accepting "administrator" as a role - which I had mapped in my LTI settings. Theychanged it to accept only "admin" and this crashed my LTI.
You might check any similar role mapping in Canvas.
Re: Is anybody still experiencing Canvas to Panopto LTI issues?
Are you seeing this with just Students or Students and Faculty, etc.? We are definitely not seeing that issue here (not that I'm aware of, anyway), but this definitely sounds like a new issue.
Re: Notification of issue affecting Panopto for Mac 15
The Panopto Engineering team is finalizing code changes to resolve multiple issues with the Panopto for Mac v15 codebase. We do not have an ETA for release at this time, but we are working diligently toward a comprehensive solution.
Panopto Support will update this post with additional information no later than 2025-09-12.
Service update 2025-09-03
Service update 2025-09-03
Please note: This update will be applied at the end of business hours on Sept 3rd for the North America, Canada, and European clouds and the end of business hours on Sept 4th for the Asia-Pacific, Australia, and Japan clouds.
Panopto Core
- Fixed an issue with LTI 1.3 integrations that could cause admins to see an error message when attempting to embed videos within courses where they are not enrolled.
- Fixed an issue with the embedded player that could cause the player controls to be inaccessible for webcasts or on-demand videos on some mobile devices.
version 16.1.2
Re: Support for copy/move video through API
Hi Elaine,
We now have the session copy API in our REST API (/api/v1/sessions/{id}/sessioncopy
).
https://demo.hosted.panopto.com/Panopto/Api/Docs/index.html#/Sessions/Sessions_Copy
You can use this API to do a full or reference copy of the session.
I hope this helps.
Thanks,
Adis
Re: Support for copy/move video through API
I see this has been sitting for a few years, but I am now running into the scenario that Douglas mentions above - two courses taught together with two separate Canvas instances (and because of that, Panopto folders for each course.) While we can manually create reference copies, it would be great to automate this from one course folder to another. I had thought about just embedding the Panopto link into the other course, but permissions for viewing would be an issue.
Any thought about making the ability to automatically create a reference copy to another folder rather than make this something manual that the faculty has to do themselves?
Re: Questions Regarding Viewer Log Retention and API Behavior After Group Removal
Thank you for your reply.
Re: Pull scheduled recording links for a course?
Hi Elaine,
You could do the following if you want recording that already completed:
- Get Course Folder ID: You'll need the folder GUID for each course
- Fetch Sessions: Call
GET /api/v1/folders/{folderId}/sessions
- Get Full Details (optional): For each session, call
GET /api/v1/sessions/{sessionId}
to get complete URL information - Extract Links: Pull the ViewerUrl from each session for sharing
Let me know if you have additional questions.
Thanks,
Adis
Re: API that can output the values registered in the “People and groups” and “Who can access this video.
Hi Misaki,
For the permissions based stuff you could use either SOAP or REST API to get some of the permission stuff you need.
SOAP API
https://your-panopto-server/Panopto/PublicAPI/4.0/AccessManagement.svc
GetSessionAccessDetails(AuthenticationInfo auth, Guid sessionId)
REST API
GET /api/v1/sessions/{sessionId}/permissions
I hope this helps. Let me know if you need details.
Thanks,
Adis
Re: Defining P1, P2 etc in session manifest file
Got it, thanks Adis - much appreciated.