• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

Closed Captioning with Adobe Media Server

Participant ,
Sep 26, 2012 Sep 26, 2012

Copy link to clipboard

Copied

We've successfully made the jump to using the Adobe Media Server 4.5 to provide video to both Desktop computers and iOS devices, (HLS and HDS).  Very exciting.

However, with increasing requirements to provide closed captioning for accessibility, we need to be able to provide closed captioning for our videos displaying on iOS and in the Flash player.

What is the best approach to provide closed captioning using these new FMS technologies?

Views

6.8K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Sep 28, 2012 Sep 28, 2012

Copy link to clipboard

Copied

Hi,

AMS 5 is coming up with exciting release of delivery closed captions on HLS /HDS/RTMP.

However for customers still on FMS 4.5, we have guidlines for content publisher or content makers to have closed caption compatiable messages inside data itself required for HDS/HLS/RTMP.

Wait for sometime for the documents to go live.

Thanks

Nitin Goel

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 15, 2012 Nov 15, 2012

Copy link to clipboard

Copied

Assuming we're using AMS5, what's the best way of actually delivering a captioned video stream to the server?  As far as I can tell, FMLE strips all 608/708 data out of the stream.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 26, 2012 Nov 26, 2012

Copy link to clipboard

Copied

I've got AMS 5.0.1 installed. How do I enable CC display in the player? Are there any sample files which contain CC?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 24, 2013 Oct 24, 2013

Copy link to clipboard

Copied

Do you have any information regatrding Closed Caption on AMS 5 other than

http://help.adobe.com/en_US/adobemediaserver/devguide/WS5262178513756206232b27a91396cda04c9-8000.htm...

I don't find the implementation user friendly. I would really appreciate if you can provide some guidance regarding the implementation


Regards,

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 26, 2012 Nov 26, 2012

Copy link to clipboard

Copied

I have cc working on FMS 4.5 for everything but the iPhone.  The iPhone player will not support CC.  Only Apple can fix this.  I'm using a custom deployment of OSMF with TTML formatted cc files for video on demand.  I'm not using RTMP because of firewall/support issues.  For HTML5 I'm using the LeanBackPlayer with SRT formatted cc files.  We built a JAVA exe that builds the TTML and SRT cc files from delimited text files or Excel.  We auto built cross server authentication between ASP.NET/IIS and Apache.  Getting everyting setup and working was pretty difficult.  Far more difficult than anticipated. 

It can be done with 4.5.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 27, 2012 Nov 27, 2012

Copy link to clipboard

Copied

Thanks, David ... I'm hoping to find a player that understands the output from Adobe's Broadcast SDK 3.0, which processes SEI from H264 and adds CC (not sure what format, yet) to the fragments in the .f4f files.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 27, 2012 Nov 27, 2012

Copy link to clipboard

Copied

When you figure it out be sure to post the solution.  I'm also interested in this.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Nov 27, 2012 Nov 27, 2012

Copy link to clipboard

Copied

Here is the Adobe Media Server Documentation on Closed Captioning implementation.

http://help.adobe.com/en_US/adobemediaserver/devguide/WS5262178513756206232b27a91396cda04c9-8000.htm...

Adobe Media Server comes with a sample player in the directory Adobe Media Server5/samples/videoplayer/videoplayer.html

This player can play a video with Closed Captions. By default Closed captions is turned off in the configuration files.

<GenerateCCInfo>false</GenerateCCInfo> This needs to be set to true in Server.xml

AMS supports captions for Live streams for RTMP and HDS streaming. The encoder has to pass the captions in an AMF message onCaptionInfo as mentioned in the documentation

For HLS streaming

HLS players natively support streams with captions in H264 SEI NALU. AMS passes these streams without modifying.

If the captions are in Timed text format ( Apple defined clcp timed text format) then AMS provides a tool to embed these timed  text captions inside an H264 SEI NALU.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 15, 2013 Oct 15, 2013

Copy link to clipboard

Copied

Could you be a bit more specific regarding CC please?

What is the format that I need the CC to be on? How do i stream it to the clients for both HDS and HLS.

I dont have much expirience with CC and the adobe media server guide does not help me much.

I already enable <GenerateCCInfo>true</GenerateCCInfo>

I would appreciate it


THanks,!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 15, 2013 Oct 15, 2013

Copy link to clipboard

Copied

I realized that in order to enable CC for HDS the httpd.config file needs to be eddited under /hds-vod

with the following info....

<Location /hds-vod>

    JitGenerateCaptionInfo true

    ...

</Location>

I sill need to figure out what is teh format of the CC fileas as well as how to embed that into the stream to the clients...

THen i need to figure out HLS....

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 24, 2013 Oct 24, 2013

Copy link to clipboard

Copied

Could you please clarify when you stated "The encoder has to pass the captions in an AMF message onCaptionInfo as mentioned in the documentation" section of your message.

I read the documentation but i could not get the steps to follow...


Thanks!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 24, 2013 Oct 24, 2013

Copy link to clipboard

Copied

Implementation is not friendly at all.  Nothing about AMS that is friendly or easy.  I have cc working for video on demand with a custom OSMF media player and would be willing to help you.  I had a difficult time of it and would be willing to share what I know.  David Addison, Portland, Maine.  You can find me on the web. I run several dedicated Adobe streaming servers.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 28, 2013 Oct 28, 2013

Copy link to clipboard

Copied

Good to hear that. What are the steps that you followed in order to implement Closed caption on AMS5...


Thanks in advance!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Dec 11, 2012 Dec 11, 2012

Copy link to clipboard

Copied

I was able to get displayed captions from OnCaption packets HDS output (f4f/f4x) files. The trick was finding the right player: in Adobe Media Server 5.0.1, use /opt/adobe/ams/samples/videoPlayer/videoplayer.html. The osmf player didn't work for me.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 27, 2012 Nov 27, 2012

Copy link to clipboard

Copied

Yeah.  It's always been within the realm of possibility to patch something together if you've got timed text files (or some other external caption file) at your disposal. 

However, it's considerably more challenging to devise a workflow that preserves the live caption data.  AMS5 supposedly supports this, but Adobe's been mum on how to actually make it work.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 02, 2014 Jul 02, 2014

Copy link to clipboard

Copied

LATEST

Hi, Do you have any documentation on how to do captioning with Flash server 4.5?

Thanks

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines