Im trying to fetch teams recording , but im not able to find any api's to get the recording , If there are no api's to get recording , is there any way i can record them ?
Currently there is no such api to download recorded video. The records will be stored in your MS Stream and you can access from Stream.
Related
I'm working on a video call web application using Twilio Video REST API and JavaScript SDK 2.8.0.
My requirement is that Users should be able to record video calls only if they want to record, and there is no need to record all calls automatically.
According to twilio documentation, group video rooms created via the REST API can specify whether to record or not in the initial room creation HTTP POST request only. (using RecordParticipantsOnConnect=True)
Is there any possibility to start recording after room was created ?
Currently no. You would have to move participants to another room to record them.
I have utilized the Graph API to schedule an Calender Event of online meeting enabled, with the meeting provider as "teamsForBusiness". The meeting is successfully scheduled and I also can use the URL to join the meeting and record my meeting.
I also have a requirement to fetch the URL of recorded meeting video. Unfortunately I cannot find a way or any existing documentation that could help me achieve my goal in getting the URL of my recorded meeting video. I would like to know of any possible ways to extract the URL of the recorded videos.
We have a calling & meeting bot,
https://learn.microsoft.com/en-us/microsoftteams/platform/bots/calls-and-meetings/calls-meetings-bots-overview
which records the call in teams. We want to fetch the recorded video.The recorded meeting in teams call, stored in Microsoft stream.
Do we have any API to fetch the recorded video from Microsoft stream.
Currently it is not possible to get the meeting recording through an API. This is something we have in our backlog but we do not have an ETA on when this will be available.
Can we get the likes/views along with the time when it is liked/viewed of a particular youtube video using Youtube API
Data API won't give that information. You can only access number and person, not the time piece.
I am planning on integrating YouTube into my web app where users will be able to upload videos to YouTube. I will need to programmatically access the URLs for all uploaded videos, the user IDs of the users who uploaded the videos, and record them in my database.
How can I do this using YouTube Direct Lite?
Is it possible to...
have YouTube Direct Lite callback my app when the download has been completed?
save parameters along with the uploaded video?
You have two options. You can retrieve a feed of videos that have been submitted to your playlist using the Data API, just like YouTube Direct Lite does behind the scenes. The relevant API call is something like
https://gdata.youtube.com/feeds/api/videos?v=2&orderby=published&category=%7Bhttp%3A%2F%2Fgdata.youtube.com%2Fschemas%2F2007%2Fkeywords.cat%7DytdlPLAYLISTID
where PLAYLISTID is the id of the playlist you're using to solicit videos (omit the PL prefix).
You can periodically make this query from your own app to get a feed of videos that are being submitted.
Alternatively, you can use YouTube Direct instead of YouTube Direct Lite. YouTube Direct is a full Java App Engine web application, and has its own datastore that gets updated whenever a submission happens. You can use that data however you'd like. It's a lot more work to get up and running with YouTube Direct, though.