You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 13, 2022. It is now read-only.
We wonder if this solution could be adapted for the scenario of human captioners (subtitler) instead of auto-generation caption. Something like described in the below chart:
Any subtitler could write directly to DynamoDB for example through a GUI.
what do you think about it? Do you have any suggestions?
Regards,
Yuri
The text was updated successfully, but these errors were encountered:
The idea you have sounds like it could work. Replacing the automated generation with a human captioner.
Some things to keep in mind. We do not get the PTS (Presentation Time Stamp) from the video stream. Since all the video files and manifests pass through Amazon CloudFront (The TS and M3u8 files).
What this means is that the subtitles will just get updated every 2 seconds if you use 2 second segments. So roll up subtitles like in broadcast would not be possible. But you will get the subtitles updating each new segment.
You can segment what a person types into sentences, or if you want a character limit. The character limit will be a feature you will have to implement in the Lambda@Edge. Or you could limit the size of the Dynamo entries you create.
Are you wanting to have the subtitles inserted delayed?
For the PTS question you have to get PTS from the TS video segments of the video.
CloudFront passes through all the TS video segments directly to AWS MediaPackage, so there isn't really a way to inspect them to get the PTS.
Hi, thank for your great job.
We wonder if this solution could be adapted for the scenario of human captioners (subtitler) instead of auto-generation caption. Something like described in the below chart:
Any subtitler could write directly to DynamoDB for example through a GUI.
what do you think about it? Do you have any suggestions?
Regards,
Yuri
The text was updated successfully, but these errors were encountered: