<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>
<channel>
	<title>3Play Media &#187; Blog</title>
	<atom:link href="http://www.3playmedia.com/company/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.3playmedia.com</link>
	<description>Transcription &#38; captioning services</description>
	<lastBuildDate>Mon, 30 Jan 2012 21:25:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>HTML5 Video Captioning &#8211; Explain it to me</title>
		<link>http://www.3playmedia.com/2011/12/22/html5-video-captioning-explain-it-to-me/</link>
		<comments>http://www.3playmedia.com/2011/12/22/html5-video-captioning-explain-it-to-me/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 19:12:42 +0000</pubDate>
		<dc:creator>Tole Khesin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[Captioning]]></category>
		<category><![CDATA[closed captions]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[track element]]></category>
		<category><![CDATA[TTML]]></category>
		<category><![CDATA[video element]]></category>
		<category><![CDATA[WebVTT]]></category>
		<guid isPermaLink="false">http://www.3playmedia.com/?p=7331</guid>
		<description><![CDATA[HTML is the markup language used to render almost every page on the web. HTML5 is the latest version, and it&#8217;s replete with incredibly useful features, including a universal video standard that lets developers add video to a web page without using any third party plugins, like Flash. The new standard also makes it much [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/HTML5-logo.jpg" align="left" alt="HTML5 logo" style="padding: 15px 15px 0 0;"/></a></p>
<p>HTML is the markup language used to render almost every page on the web. <a href=http://slides.html5rocks.com>HTML5</a> is the latest version, and it&#8217;s replete with incredibly useful features, including a universal video standard that lets developers add video to a web page without using any third party plugins, like Flash.  The new standard also makes it much easier to publish accessible video through closed captioning.</p>
<p>This blog article provides an overview of how HTML5 will improve and standardize accessible video through captioning.  Although HTML5 is still evolving, most browsers have already adopted the basic video features.  The hope is that we will also be able to converge on a single web captioning format.   Although we&#8217;re not quite there yet, this article examines the two caption formats being considered.<br />
<br/></p>
<h2 style="line-height:40px;">Why is video captioning so difficult in HTML?</h2>
<p>In the current version of HTML, there is no standard for showing a video on a web page. Almost all videos are shown through plugins, like Flash, QuickTime, Silverlight, and RealPlayer. The problem with this approach is that there is no standardization across different browsers and devices. And although web publishers try to build redundancies and fallback provisions to maximize compatibility, it&#8217;s practically impossible to publish video that works universally.  As a consequence, publishing closed captions has been difficult and unreliable because both the caption format and encoding method depend on the video publishing technology used.</p>
<h2 style="line-height:40px;">How does HTML5 simplify web video and accessibility?</h2>
<p>HTML5 is a major step forward for standardizing video across web browsers and devices, and thus simplifying closed captioning. The idea is that web video will be based on an open, universal standard that works everywhere. HTML5 natively supports video without the need for third party plugins. A video can be added to a web page using the <a href=" http://www.w3.org/TR/html5/video.html">video element</a>, which makes it almost as simple as adding an image.  The <a href=" http://www.w3.org/TR/html5/video.html#the-track-element ">track element</a> can then be used to display closed captions, subtitles, text video descriptions, chapter markers, or other time-aligned metadata. </p>
<p>The HTML code below shows how these elements work:</p>
<div style="overflow:scroll;background-color: #F5F5F5;width:650px;height:100px;padding:10px;margin:15px 0 15px 0;">
<pre><pre>
&lt;video&nbsp;&nbsp;width=&quot;320&quot; height=&quot;240&quot;&gt;
&nbsp;&nbsp;&lt;source type=&quot;video/mp4&quot; src=&quot;my_video_file.mp4&quot; &gt;
&nbsp;&nbsp;&lt;track src=&quot;captions_file.vtt&quot; label=&quot;English captions&quot; kind=&quot;captions&quot; srclang=&quot;en-us&quot; default &gt;
&lt;/video&gt;
</pre></pre>
</div>
<p>The attributes of the track element work like this:</p>
<div style="background-color:#f5f5f5;padding:5px;margin:10px 0 15px 0;line-height:24px;">
<b>src</b> &#8211; specifies the name and location of the captions or subtitles file<br />
<b>label</b> &#8211; specifies the title of the track<br />
<b>kind</b> &#8211; specifies the type of time-aligned text. The options are captions, subtitles, chapters, descriptions, or metadata.<br />
<b>srclang</b> &#8211; specifies the language<br />
<b>default</b> &#8211; specifies that this track is enabled by default. Note that multiple track elements can be used simultaneously.
</div>
<h2 style="line-height:40px;">Will HTML5 include a standard caption format?</h2>
<p>Currently there are two competing caption formats being considered. In part, this is because there are two groups collaborating on HTML5: The Web Hypertext Application Technology Working Group (<a href="http://www.whatwg.org/">WHATWG</a>) and the World Wide Web Consortium (<a href="http://www.w3.org/">W3C</a>).</p>
<p>WHATWG has developed and proposed the <a href="http://dev.w3.org/html5/webvtt/">WebVTT</a> (Web Video Text Tracks) caption format, which is a new, user friendly text format that consists of line numbers, timelines, and text with formatting options. WebVTT is similar to the widely established <a href="http://en.wikipedia.org/wiki/SubRip ">SRT format</a>, but accommodates text formatting, positioning, and rendering options (pop-up, roll-on, paint-on).</p>
<p>W3C has proposed using <a href="http://www.w3.org/TR/ttaf1-dfxp/#dfxp-content-doctype ">TTML</a> (timed text markup language), which is a widely established XML format supported in Adobe Flash and Microsoft Silverlight and used by sites like Netflix and Hulu.</p>
<p>To see how the two caption formats work, Microsoft built a <a href="http://www.interoperabilitybridges.com/HTML5CaptionDemo/">HTML5 captioning prototype</a> that demonstrates both formats in HTML5. </p>
<p>3Play Media has been participating in the development of captioning standards through the <a href="http://www.w3.org/community/texttracks/">Web Media Text Tracks Community Group</a>, which was created to advance this area of HTML5 and improve web captioning solutions. </p>
<p>Although the current HTML5 spec supports both caption formats, it appears that the WebVTT format is gaining ground on TTML.  The hope is that we will converge on a single caption format, which would greatly simplify the process of publishing accessible video.</p>
<h2 style="line-height:40px;">WebVTT caption format</h2>
<p>The WebVTT caption format is a text file with a .vtt extension. The file begins with a header &#8220;WEBVTT FILE&#8221; followed by cues and their corresponding text.  There are several parameters that allow you to control the line position, text position, and alignment.  You can also add styling to the text within the cue itself. The example below demonstrates a bold &lt;b&gt; element. Read this blog for detailed information about <a href="http://www.delphiki.com/webvtt/">WebVTT formatting</a>.</p>
<p>Also, for a comprehensive look at the WebVTT caption format, watch the <a href="http://blog.gingertech.net/2011/03/29/webvtt-explained/">presentation by Silvia Pfeiffer</a> and see her <a href="http://html5videoguide.net/presentations/WebVTT/#landing-slide">presentation slides</a>.  </p>
<div style="overflow:scroll;background-color: #F5F5F5;width:500px;height:220px;padding:10px;margin:15px 0 15px 0;">
<pre><pre>
WEBVTT
1
00:00:13.000 --&gt; 00:00:016.100
&lt;b&gt;ARNE DUNCAN:&lt;/b&gt; I&#039;ll start and
then turn it over to you.
2
00:00:16.100 --&gt; 00:00:20.100
It&#039;s so critically important
that parents be actively engaged&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</pre></pre>
</div>
<h2 style="line-height:40px;">TTML caption format</h2>
<div style="overflow:scroll;background-color: #F5F5F5;width:500px;height:250px;padding:10px;margin:15px 0 15px 0;">
<pre><pre>
&lt;tt xmlns=&quot;http://www.w3.org/ns/ttml&quot; xml:lang=&quot;en&quot;&gt;
&nbsp;&nbsp;&lt;body&gt;
&nbsp;&nbsp; &lt;div&gt;
&nbsp;&nbsp;&nbsp;&nbsp; &lt;p begin=&quot;00:00:13.00&quot; end=&quot;00:00:16.10&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ARNE DUNCAN: I&#039;ll start and then turn it over to you.
&nbsp;&nbsp;&nbsp;&nbsp; &lt;/p&gt;
&nbsp;&nbsp;&nbsp;&nbsp; &lt;p begin=&quot;00:00:16.10&quot; end=&quot;00:00:20.10&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; It&#039;s so critically important that parents be actively engaged
&nbsp;&nbsp;&nbsp;&nbsp; &lt;/p&gt;
&nbsp;&nbsp; &lt;/div&gt;
&nbsp;&nbsp;&lt;/body&gt;
 &lt;/tt&gt;
</pre></pre>
</div>
<h2 style="line-height:40px;">When will the HTML5 video captioning features be ready for web-wide use?</h2>
<p>The W3C and WHATWG have developed specifications for how video and captions should work in browsers. Although these standards are still being refined, it&#8217;s now up to the browser developers (Microsoft, Google, Mozilla, and Apple) to adopt these standards and build in the functionality. That will take some time. Although there appears to be a lot of consensus around video standardization, there are still some open issues hampering universal adoption. The reality is that browser developers have their own technical, legal, and business agendas . </p>
<p>Although the new &lt;video&gt; element is already supported by most browsers, there has been no consensus on a single video format (MP4, WebM, and Ogg are being considered).  Also, most of the advanced video features are not yet ready for use. Unfortunately this includes the &lt;track&gt; element, which is required to publish captions and subtitles.  </p>
<p>On May 25, 2011 the W3C announced &#8220;Last Call&#8221;, which was an invitation for communities inside and outside of W3C to provide feedback on whether the HTML5 technical requirements have been satisfied. The recommended release was set for 2014 and the hope is that it will gain web-wide adoption over the subsequent few years. </p>
<p><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.3playmedia.com/2011/12/22/html5-video-captioning-explain-it-to-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Steps to Add Closed Captions or Subtitles with Echo360</title>
		<link>http://www.3playmedia.com/2011/12/06/3-steps-to-add-closed-captions-or-subtitles-with-echo360/</link>
		<comments>http://www.3playmedia.com/2011/12/06/3-steps-to-add-closed-captions-or-subtitles-with-echo360/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 06:36:33 +0000</pubDate>
		<dc:creator>Tole Khesin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[Captioning]]></category>
		<category><![CDATA[closed captions]]></category>
		<category><![CDATA[Echo360]]></category>
		<category><![CDATA[integrations]]></category>
		<category><![CDATA[partners]]></category>
		<category><![CDATA[subtitles]]></category>
		<guid isPermaLink="false">http://www.3playmedia.com/?p=7279</guid>
		<description><![CDATA[Overview 3Play Media has a complete captioning integration with Echo360. You can submit closed captioning requests from within Echo360 for individual classes or an entire course. The media files get automatically transferred to 3Play Media for processing and the closed captions get posted back to your Echo360 account after they have been processed. You can [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/echo360-logo.jpg" alt="Adding closed captions or subtitles with Echo360" style="padding: 0 0 0 0;"/></a></p>
<h2 style="line-height:40px;">Overview</h2>
<p>3Play Media has a complete captioning integration with Echo360.  You can submit closed captioning requests from within Echo360 for individual classes or an entire course. The media files get automatically transferred to 3Play Media for processing and the closed captions get posted back to your Echo360 account after they have been processed. You can monitor the status of your captioning requests from within Echo360 or your 3Play Media account. You can also obtain plain transcripts or caption files in a different format through your 3Play Media account.</p>
<h2 style="line-height:40px;">Step 1 – Create a 3Play Media Account</h2>
<p>1.	<a href="http://www.3playmedia.com/forms/get-started/">Sign up</a> for a 3Play Media account. If you have any questions, email us at sales@3playmedia.com or call (617) 764-5189.</p>
<p>2.	Once your 3Play Media account has been activated, log in at <a href="http://account.3playmedia.com">http://account.3playmedia.com</a> and set up your payment information at <b>Account > Invoices</b>.</p>
<p>3.	Navigate to <b>Upload > Import from Linked Accounts</b> and select the <b>Echo360</b> tab.</p>
<p>4.	Locate your <b>API Key</b> and <b>API Secret Key</b>. You will need these in the next step.</p>
<p>5.     Click the link to download the <b>Echo360 Plugin</b>.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/echo360-0.jpg" alt="Adding closed captions or subtitles with Echo360" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height:40px;">Step 2 – Configure Your Echo360 Account</h2>
<p>1. Unzip the <b>Echo360 Plugin</b> that you downloaded in the previous step and place it in the local directory <b>/data/echo360/server/plugins/publishers/</b></p>
<p>2. Restart the server.</p>
<p>3. Log in to your Echo360 account.</p>
<p>4. Navigate to <b>Configuration > Publishers</b> and select <b>Add New Publisher</b>.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/echo360-1.jpg" alt="Adding closed captions or subtitles with Echo360" style="padding: 15px 0 15px 0;"/></a></p>
<p>5. Fill in the fields in the Publisher Details section:</p>
<div style="background-color:#f5f5f5;padding:5px;margin:10px 0 15px 0;line-height:24px;">
<b>Name</b>:  3Play Media<br />
<b>Description</b>: Captioning<br />
<b>Publisher Type</b>:  3Play Media Closed Captioning<br />
<b>Use by Default</b>:  Check this box if you would like to automatically caption all echoes that are created from now on (will not affect echoes that have already been created).
</div>
<p>6. In the Publisher Configuraiton section, paste the 3Play Media API Key and Secret Key from your 3Play Media account (see Step 1). Click <b>Test Settings</b> to validate the entries. If you encounter an error, check to make sure that you copied the exact character strings without any extra spaces.</p>
<p>7. Click the <b>Save</b> button. You should see the confirmation screen below.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/echo360-2.jpg" alt="Adding closed captions or subtitles with Echo360" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height:40px;">Step 3 –Initiate a Closed Caption Request</h2>
<p>1.  	Navigate to the <b>Echoes</b> tab and click on the title of an echo that needs to be captioned.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/echo360-3.jpg" alt="Adding closed captions or subtitles with Echo360" style="padding: 15px 0 15px 0;"/></a></p>
<p>2. Scroll to the bottom of the page and click the <b>Edit</b> button.</p>
<p>3. Scroll to the bottom of the page and click the <b>Add Publisher</b> button.</p>
<p>4. Select <b>3Play Media</b> and click the <b>Save</b> button.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/echo360-4.jpg" alt="Adding closed captions or subtitles with Echo360" style="padding: 15px 0 15px 0;"/></a></p>
<p>5. Scroll down to the bottom of the page and make sure that 3Play Media is listed in the Configured Presentation Publishers section. Click the <b>Save</b> button. </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/echo360-5.jpg" alt="Adding closed captions or subtitles with Echo360" style="padding: 15px 0 15px 0;"/></a></p>
<p>6. Your media file will automatically be sent to 3Play Media for processing. The caption file will automatically post back to your Echo360 account after it has been completed.  Standard turnaround is 4 business days. 1-business-day rush service and 2-business-day expedited service is also available. </p>
<p><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.3playmedia.com/2011/12/06/3-steps-to-add-closed-captions-or-subtitles-with-echo360/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Churches, Religious Broadcasters Face Closed Captioning Laws</title>
		<link>http://www.3playmedia.com/2011/12/05/churches-religious-broadcasters-face-closed-captioning-laws/</link>
		<comments>http://www.3playmedia.com/2011/12/05/churches-religious-broadcasters-face-closed-captioning-laws/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 22:50:48 +0000</pubDate>
		<dc:creator>Tole Khesin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[Captioning]]></category>
		<category><![CDATA[captions]]></category>
		<category><![CDATA[Church]]></category>
		<category><![CDATA[Church Services]]></category>
		<category><![CDATA[closed captions]]></category>
		<category><![CDATA[Deaf]]></category>
		<category><![CDATA[FCC]]></category>
		<category><![CDATA[Religion]]></category>
		<category><![CDATA[Religious broadcasters]]></category>
		<category><![CDATA[Religious programming]]></category>
		<category><![CDATA[Sermons]]></category>
		<guid isPermaLink="false">http://www.3playmedia.com/?p=7273</guid>
		<description><![CDATA[Until recently, churches and religious broadcasters have been exempt from closed captioning requirements that would normally apply to TV shows, recorded sermons and church services, educational videos, and other video or audio programming. Religious organizations were sheltered by a blanket FCC exemption granted in 2006 after the Anglers for Christ Ministries successfully argued that closed [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/religious-captioning.jpg" alt="Religious organizations, churches must comply with captioning laws" style="padding: 15px 0 15px 0;"/></a></p>
<p>Until recently, churches and religious broadcasters  have been exempt from closed captioning requirements  that would normally apply to TV shows, recorded sermons and church services, educational videos, and other video or audio programming. Religious organizations were sheltered by a blanket FCC exemption granted in 2006 after the Anglers for Christ Ministries successfully argued that closed captioning was an undue economic hardship.</p>
<p>On October 20, 2011 the FCC’s Consumer and Governmental Affairs Bureau overturned that decision, requiring religious organizations to comply with the same accessibility laws as other media publishers. Churches can still individually apply for an exemption if they can prove that they can’t afford closed captioning.</p>
<p>The Bureau&#8217;s rescindment was instigated by a coalition of advocacy groups for the deaf and hard of hearing. The coalition argued that the order “improperly and unilaterally established a new class of exempt programming.”</p>
<p>While advocates for the deaf are pleased that more programming will become accessible, some religious broadcasters are concerned that this move could shut down some programming because of the additional costs involved with captioning.</p>
<p><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.3playmedia.com/2011/12/05/churches-religious-broadcasters-face-closed-captioning-laws/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Steps to Add Captions or Subtitles with Adobe Flash CS5.5</title>
		<link>http://www.3playmedia.com/2011/12/05/3-steps-to-add-captions-or-subtitles-with-adobe-flash-cs5-5/</link>
		<comments>http://www.3playmedia.com/2011/12/05/3-steps-to-add-captions-or-subtitles-with-adobe-flash-cs5-5/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 04:59:20 +0000</pubDate>
		<dc:creator>Tole Khesin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Captioning]]></category>
		<category><![CDATA[captions]]></category>
		<category><![CDATA[closed captions]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash CS3]]></category>
		<category><![CDATA[Flash CS4]]></category>
		<category><![CDATA[Flash CS5]]></category>
		<category><![CDATA[Flash CS5.5]]></category>
		<category><![CDATA[FLV]]></category>
		<category><![CDATA[subtitles]]></category>
		<guid isPermaLink="false">http://www.3playmedia.com/?p=7243</guid>
		<description><![CDATA[Overview This blog article provides step by step instructions on how to create a Flash video file with closed captions or subtitles using Adobe Flash Professional CS5.5. For additional information, see Adobe’s resources on captioning video in Adobe Flash CS5.5. Also, see Adobe’s resources for captioning in Flash CS4 and Flash CS3. Step 1 – [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/adobe-flash-0.jpg" alt="Adding closed captions or subtitles Adobe Flash CS5.5" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height:40px;">Overview</h2>
<p>This blog article provides step by step instructions on how to create a Flash video file with closed captions or subtitles using Adobe Flash Professional CS5.5.  For additional information, see Adobe’s resources on <a href="http://help.adobe.com/en_US/as3/components/WS5b3ccc516d4fbf351e63e3d118a9c65b32-7ee6.html">captioning video in Adobe Flash CS5.5</a>.  Also, see Adobe’s resources for captioning in <a href="http://help.adobe.com/en_US/ActionScript/3.0_UsingComponentsAS3/WS5b3ccc516d4fbf351e63e3d118a9c65b32-7ee6.html">Flash CS4</a> and <a href="http://livedocs.adobe.com/flash/9.0/main/wwhelp/wwhimpl/js/html/wwhelp.htm?href=Part2_Using_AS3_Components_1.html">Flash CS3</a>.    </p>
<h2 style="line-height:40px;">Step 1 – Submit Your Video File for Captioning</h2>
<p>1. Log into your <a href="http://account.3playmedia.com">3Play Media account</a>.</p>
<p>2. Select <b>Upload</b> and specify the turnaround requirements.</p>
<p>3. You will receive an email alert when the captions file is ready for use. </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/adobe-flash-1.jpg" alt="Adding closed captions or subtitles Adobe Flash CS5.5" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height:40px;">Step 2 &#8211; Download Your Captions File</h2>
<p>1. From your 3Play Media account, navigate to <b>My Files</b>.  Click the <b>download</b> link beside the appropriate file and select <b>DFXP</b>. </p>
<p>2. Unzip the file after it downloads and copy it to the same location as your video file.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/adobe-flash-2.jpg" alt="Adding closed captions or subtitles Adobe Flash CS5.5" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height:40px;">Step 3 – Add Closed Captions or Subtitles Using Adobe Flash Professional CS5.5</h2>
<p>1. Open a new document and choose the ActionScript 3.0 document choice in the Start panel.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/adobe-flash-3.jpg" alt="Adding closed captions or subtitles Adobe Flash CS5.5" style="padding: 15px 0 15px 0;"/></a></p>
<p>2. Import your video by selecting <b>File > Import > Import Video</b>. If your video is not already in a Flash FLV or F4V format, you will need to convert it using Adobe Media Encoder or another file converter.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/adobe-flash-4.jpg" alt="Adding closed captions or subtitles Adobe Flash CS5.5" style="padding: 15px 0 15px 0;"/></a></p>
<p>3. Select a skin that supports captions (you can change the skin at a later time by selecting the FLVPlayback component on the stage and editing the skin property).</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/adobe-flash-5.jpg" alt="Adding closed captions or subtitles Adobe Flash CS5.5" style="padding: 15px 0 15px 0;"/></a></p>
<p>4. Wait for the video import to complete.</p>
<p>5. If necessary, resize the player by selecting <b>Modify > Transform</b> so that it fits in the white workspace.</p>
<p>6. Select <b>Windows > Components</b> and double-click the <b>FLVPlaybackCaptioning</b> component.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/adobe-flash-6.jpg" alt="Adding closed captions or subtitles Adobe Flash CS5.5" style="padding: 15px 0 15px 0;"/></a></p>
<p>7. Select the <b>FLVPlaybackCaptioning</b> component and in the Component Parameters section, set <b>showCaptions</b> to true and enter the name and location of the caption file in the <b>source</b> field (if you placed it in the same directory as the media file, then just enter the filename).</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/adobe-flash-7.jpg" alt="Adding closed captions or subtitles Adobe Flash CS5.5" style="padding: 15px 0 15px 0;"/></a></p>
<div style="background-color:#f5f5f5;padding:10px;margin:10px 0 15px 0;line-height:24px;">
<b>autoLayout</b> specifies if the FLVPlaybackCaptioning component controls caption area layout. The default is true.<br />
<b>captionTargetName</b> specifies the TextField or MovieClip instance name containing captions. The default is auto.<br />
<b>flvPlaybackName</b> specifies the FLVPlayback instance name that you want to caption. The default is auto.<br />
<b>showCaptions</b> specifies if captions display. The default is true.<br />
<b>simpleFormatting</b> limits formatting instructions of the caption file when set to true. The default is false.<<br />
<b>source</b> specifies the name and location of the caption file.</p>
</div>
<p>For additional information, see Adobe’s resources to <a href="http://help.adobe.com/en_US/as3/components/WS5b3ccc516d4fbf351e63e3d118a9c65b32-7ee2.html">customize the FLVPlaybackCaptioning component</a>.</p>
<p>8. To test the captions, select <b>Control > Test Movie > Test</b>.</p>
<p>9. To publish the captioned video, select <b>File > Publish</b>. </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/adobe-flash-8.jpg" alt="Adding closed captions or subtitles Adobe Flash CS5.5" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height:40px;">How to Adjust the Position of the Caption Area</h2>
<p>You can customize the size and position of the caption area by creating a text box that links to the FVLPlaybackCaptioning component.</p>
<p>1. Select <b>Windows > Components > User Interface</b> and double-click on <b>TextArea</b> to add it to the stage.</p>
<p>2. Size and position the text box, making sure that there is sufficient height to display 2 lines of text.</p>
<p>3. In the properties, change the name to “CaptionArea”.<br />
<img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/adobe-flash-9.jpg" alt="Adding closed captions or subtitles Adobe Flash CS5.5" style="padding: 15px 0 15px 0;"/></a></p>
<p>4. Select the <b>FLVPlaybackCaption</b> component and change the <b>captionTargetName</b> field to “CaptionArea”. Also uncheck the <b>autoLayout</b> field.</p>
<p>5. Test your changes by selecting <b>Control > Test Movie > Test</b>.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/adobe-flash-10.jpg" alt="Adding closed captions or subtitles Adobe Flash CS5.5" style="padding: 15px 0 15px 0;"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.3playmedia.com/2011/12/05/3-steps-to-add-captions-or-subtitles-with-adobe-flash-cs5-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Live captioning from the ESPN man cave</title>
		<link>http://www.3playmedia.com/2011/10/27/live-captioning-from-the-espn-man-cave/</link>
		<comments>http://www.3playmedia.com/2011/10/27/live-captioning-from-the-espn-man-cave/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 20:38:22 +0000</pubDate>
		<dc:creator>Josh Miller</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[closed captions]]></category>
		<category><![CDATA[live captioning]]></category>
		<category><![CDATA[television]]></category>
		<guid isPermaLink="false">http://www.3playmedia.com/?p=7053</guid>
		<description><![CDATA[Many people wonder how live television programming is captioned.  Some even ask if it&#8217;s done by speech recognition since it&#8217;s often rife with funny spelling and odd mistakes (you can find some gems with a simple &#8220;caption fail&#8221; image search).  In reality, the reason why it isn&#8217;t perfect is because it is being typed live, [...]]]></description>
			<content:encoded><![CDATA[<p>Many people wonder how live television programming is captioned.  Some even ask if it&#8217;s done by speech recognition since it&#8217;s often rife with funny spelling and odd mistakes (you can find some gems with a simple <a href="http://www.google.com/search?q=caption+fail&amp;hl=en&amp;prmd=imvns&amp;tbm=isch&amp;tbo=u&amp;source=univ&amp;sa=X&amp;ei=o1qpTp2cIcTm0QGY_KDWCw&amp;ved=0CD4QsAQ&amp;biw=1106&amp;bih=575">&#8220;caption fail&#8221; image search</a>).  In reality, the reason why it isn&#8217;t perfect is because it is being typed live, in real-time by a human!  That&#8217;s right, a court stenographer uses a special steno machine to type up to 200 words per minute.</p>
<p>ESPN recently gave a sneak peak into their Program Compliance team that oversees <a href="http://frontrow.espn.go.com/2011/10/how-closed-captioning-works/">closed captioning for ESPN</a> programming across their many affiliates.  They even talk through the process of how the content reaches a remote stenographer and how the captions are then sent back to ESPN and embedded into their broadcast feed.  Sports content is actually some of the most difficult to caption in general because games are fast-paced, there is specialized vocabulary, and the rosters are full of unique player names.  Add the live component and you can quickly see that this is quite an operation.</p>
<p>ESPN points out that there are many <a href="http://www.3playmedia.com/company/webinars/quick-start-to-captioning-09-08-2011/#p3s:372700&amp;p3e:531750&amp;p3v:1149952968001">benefits to closed captioning</a> in addition to serving the hearing impaired.  Captions also allow viewers at gyms, bars, airports, and offices to follow along without the sound.  Non-native English speakers also benefit from captions because it is easier to read the text than to follow what is being spoken.  Web captions are even more powerful than television captions since search and SEO are additional benefits for web-based content.</p>
<p>Take a look at how ESPN manages hundreds of daily events in need of captioning:
</p>
<p><iframe width="640" height="360" src="http://www.youtube.com/embed/SXje8V2ATf0?feature=player_embedded" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.3playmedia.com/2011/10/27/live-captioning-from-the-espn-man-cave/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Steps to Add Closed Captions or Subtitles to Blip.tv Videos</title>
		<link>http://www.3playmedia.com/2011/10/03/3-steps-to-add-closed-captions-or-subtitles-to-blip-tv-videos/</link>
		<comments>http://www.3playmedia.com/2011/10/03/3-steps-to-add-closed-captions-or-subtitles-to-blip-tv-videos/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 14:19:37 +0000</pubDate>
		<dc:creator>Tole Khesin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blip.tv]]></category>
		<category><![CDATA[captions]]></category>
		<category><![CDATA[closed captions]]></category>
		<category><![CDATA[subtitles]]></category>
		<guid isPermaLink="false">http://www.3playmedia.com/?p=6971</guid>
		<description><![CDATA[Overview This blog article shows you how to quickly add closed captions or subtitles to your blip.tv videos. The basic process is to submit your video file to 3Play Media for captioning, then upload a SRT file to your blip.tv account. You can also create a blip.tv accessible player with a CC button that can [...]]]></description>
			<content:encoded><![CDATA[<h2 style="line-height:40px;">Overview</h2>
<p>This blog article shows you how to quickly add closed captions or subtitles to your blip.tv videos. The basic process is to submit your video file to 3Play Media for captioning, then upload a SRT file to your blip.tv account. You can also create a blip.tv accessible player with a CC button that can be embedded on other sites.  </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/blip-0.jpg" alt="Adding closed captions or subtitles to blip.tv" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height:40px;">Step 1 – Submit Your Video File for Captioning</h2>
<p>1. Log into your <a href="http://account.3playmedia.com">3Play Media account</a>.</p>
<p>2. If you have access to the source video file then select <b>Upload</b>, specify the turnaround requirement, and click <b>Start Uploading</b>. </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/blip-1.jpg" alt="Adding closed captions or subtitles to blip.tv" style="padding: 15px 0 15px 0;"/></a></p>
<p>3. If you don’t have the video file handy, you can transfer the file directly from blip.tv to 3Play Media. Log into your blip.tv account, select the episode to be captioned, and copy the media source link. Then on the 3Play Media upload page select <b>Upload Links</b>,  paste the link, select the turnaround requirement, and click <b>Upload Links</b>.</p>
<p> <img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/blip-2.jpg" alt="Adding closed captions or subtitles to blip.tv" style="padding: 15px 0 15px 0;"/></a></p>
<p>4. You will receive an email alert when the captions file is ready for use. </p>
<h2 style="line-height:40px;">Step 2 &#8211; Download Your Captions File</h2>
<p>1. From your 3Play Media account, navigate to <b>My Files</b>.  Click the <b>download</b> link beside the appropriate file and select <b>SRT</b>. </p>
<p>2. Unzip the file after it downloads.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/blip-3.jpg" alt="Adding closed captions or subtitles to blip.tv" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height:40px;">Step 3 – Upload Your Captions File to Blip.tv</h2>
<p>1. Select the episode to be captioned and click <b>Edit > Add Captions > Choose File</b>.  Select the SRT file that you downloaded in Step 2.</p>
<p>2. Click <b>Save all changes</b>.</p>
<p>3. Your closed captions will automatically show up on the blip.tv website. Viewers can toggle the captions on/off by pressing the CC button on the player. However, If you plan to embed a blip.tv player on another website, please follow the instructions below.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/blip-4.jpg" alt="Adding closed captions or subtitles to blip.tv" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height:40px;">How To Set Up Closed Captions on an Embedded Blip.tv Player</h2>
<p>1. From your blip.tv dashboard, select <b>Players > Add custom player</b>.</p>
<p>2. Enter a name for the new player, like “Accessible Player”.</p>
<p>3. Under <b>Advanced settings</b>, enter parameter <b>&#8220;captions_on&#8221;</b> and set the value to <b>&#8220;true&#8221;</b>. Click the plus button to add it.</p>
<p>4. Click <b>Save Settings</b>.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/blip-5.jpg" alt="Adding closed captions or subtitles to blip.tv" style="padding: 15px 0 15px 0;"/></a></p>
<p>5. When you embed your episode on your site, make sure to select the accessible player you just created. Instructions for how to embed an episode can be found <a href=”http://support.blip.tv/entries/466641-how-to-embed-a-single-episode-player”>here</a>.</p>
<p><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.3playmedia.com/2011/10/03/3-steps-to-add-closed-captions-or-subtitles-to-blip-tv-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Steps to Add Closed Captions or Subtitles for Windows Media Video (WMV) and Silverlight</title>
		<link>http://www.3playmedia.com/2011/09/24/3-steps-to-add-closed-captions-or-subtitles-for-windows-media-video-wmv-and-silverlight/</link>
		<comments>http://www.3playmedia.com/2011/09/24/3-steps-to-add-closed-captions-or-subtitles-for-windows-media-video-wmv-and-silverlight/#comments</comments>
		<pubDate>Sun, 25 Sep 2011 00:21:24 +0000</pubDate>
		<dc:creator>Tole Khesin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[asx]]></category>
		<category><![CDATA[captions]]></category>
		<category><![CDATA[closed captions]]></category>
		<category><![CDATA[expression encoder]]></category>
		<category><![CDATA[sami]]></category>
		<category><![CDATA[silverlight]]></category>
		<category><![CDATA[smi]]></category>
		<category><![CDATA[subtitles]]></category>
		<category><![CDATA[windows media]]></category>
		<category><![CDATA[windows media file]]></category>
		<category><![CDATA[wmv]]></category>
		<guid isPermaLink="false">http://www.3playmedia.com/?p=6945</guid>
		<description><![CDATA[Overview This blog article provides step by step instructions on all the different ways to add closed captions or subtitles to a Windows Media Video (WMV) file. The simplest way is to associate the media file with the captions file, which may require a pointer file (ASX). The most robust way is to embed the [...]]]></description>
			<content:encoded><![CDATA[<h2 style="line-height:40px;">Overview</h2>
<p>This blog article provides step by step instructions on all the different ways to add closed captions or subtitles to a Windows Media Video (WMV) file. The simplest way is to associate the media file with the captions file, which may require a pointer file (ASX). The most robust way is to embed the captions by encoding the media file using the free software Microsoft Expression Encoder. The latter option also allows you to output the media to rich, interactive Silverlight templates. </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/wmv-0.jpg" alt="Adding closed captions or subtitles to WMV (windows media) or silverlight" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height:40px;">Step 1 – Submit Your Windows Media (WMV) File for Captioning</h2>
<p>1. Log into your <a href="http://account.3playmedia.com">3Play Media account</a>.</p>
<p>2. Select <b>Upload</b> and specify the turnaround requirements.</p>
<p>3. You will receive an email alert when the captions file is ready for use. </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/wmv-1.jpg" alt="Adding closed captions or subtitles to WMV (windows media) or silverlight" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height:40px;">Step 2 &#8211; Download Your Captions File</h2>
<p>1. From your 3Play Media account, navigate to <b>My Files</b>.  Click the <b>download</b> link beside the appropriate file and select <b>SRT</b>. For certain applications you will need to download the <b>SMI</b> caption format, which is also supported by Microsoft Expression Encoder (see Step 3).</p>
<p>2. Unzip the file after it downloads.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/wmv-2.jpg" alt="Adding closed captions or subtitles to WMV (windows media) or silverlight" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height:40px;">Step 3 – Embed Closed Captions or Subtitles by Encoding the Video</h2>
<p>This step shows you how to embed the captions file that you downloaded in Step 2 into your Windows Media file.  This is the most robust way to add captions, although it is a bit more complicated. It is also possible to add captions to a WMV file without encoding. To do this, proceed to the instructions after Step 3. </p>
<p>1. Download and install the free <a href="http://www.microsoft.com/expression/products/EncoderPro_Overview.aspx">Microsoft Expression Encoder</a>. At the time of writing, the most recent version is <a href="http://www.microsoft.com/download/en/details.aspx?id=24601">Version 4 with Service Pack 1</a>. You can find additional support for Expression Encoder <a href="http://msdn.microsoft.com/en-us/library/ff723897%28v=Expression.40%29.aspx">here</a>.</p>
<p>2. If you just need to add captions to your Windows Media video then start a new <b>Transcoding Project</b>. Alternately, if you want to encode a video that is compatible with Silverlight and can be embedded in a rich, interactive Silverlight template, then start a <b>Silverlight Project</b>. </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/wmv-3.jpg" alt="Adding closed captions or subtitles to WMV (windows media) or silverlight" style="padding: 15px 0 15px 0;"/></a></p>
<p>3.  Select <b>File > Import</b> to load your Windows Media file. </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/wmv-4.jpg" alt="Adding closed captions or subtitles to WMV (windows media) or silverlight" style="padding: 15px 0 15px 0;"/></a></p>
<p>4.  From the <b>Script Commands</b> panel click <b>Import</b> and select the SRT or SMI captions file that you downloaded in Step 2. If you can’t see the Script Commands panel, select <b>Window > Metadata</b> and click the arrow in the top left corner of the Script Commands panel to expand the options.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/wmv-5.jpg" alt="Adding closed captions or subtitles to WMV (windows media) or silverlight" style="padding: 15px 0 15px 0;"/></a></p>
<p>5.   Each caption frame shows up as a row in the Script Commands panel and as a circle in the captions timeline. You can edit the text in the captions,  adjust the timing, or insert/delete caption frames.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/wmv-6.jpg" alt="Adding closed captions or subtitles to WMV (windows media) or silverlight" style="padding: 15px 0 15px 0;"/></a</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/wmv-7.jpg" alt="Adding closed captions or subtitles to WMV (windows media) or silverlight" style="padding: 15px 0 15px 0;"/></a></p>
<p>6. Before you begin encoding, select the <b>Window</b> dropdown menu and make sure that <b>Metadata, Encode</b>, and <b>Output</b> are all checked. </p>
<p>7. From the <b>Encode</b> panel select the output format, and video/audio codecs. You can find more information about encoding output formats <a href="http://msdn.microsoft.com/en-us/library/cc294669%28v=Expression.40%29.aspx">here</a>. </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/wmv-8.jpg" alt="Adding closed captions or subtitles to WMV (windows media) or silverlight" style="padding: 15px 0 15px 0;"/></a></p>
<p>8.  From the <b>Output</b> panel select a destination folder where your encoded outputs will be saved.</p>
<p>9.  Select <b>File > Encode</b> to begin encoding.  This process will embed the captions into the video.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/wmv-9.jpg" alt="Adding closed captions or subtitles to WMV (windows media) or silverlight" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height:22px;margin-bottom:15px;">How To Add Closed Captions or Subtitles Without Encoding (when the media and captions files are in the same directory)</h2>
<p>1. You can add closed captions to your Windows Media Video (WMV) without encoding. The simplest way is to download a SMI captions file (see Step 2) and place it in the same directory as the media file. Make sure that the names match exactly and that the extension of the captions file is “.smi&#8221;. </p>
<p><u>Tip:</u> To make sure that the extension is correct, open the Windows directory that contains the two files and select <b>Tools > Folder Options > View</b>. Then uncheck the box “hide extensions for known file types&#8221;.  </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/wmv-10.jpg" alt="Adding closed captions or subtitles to WMV (windows media) or silverlight" style="padding: 15px 0 15px 0;"/></a></p>
<p>2. Captions should now show up when you play the video. Note that you may need to adjust the player settings to display captions  (see the section &#8220;Windows Media Player Settings&#8221;).</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/wmv-11.jpg" alt="Adding closed captions or subtitles to WMV (windows media) or silverlight" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height:22px;margin-bottom:15px;">How To Add Closed Captions or Subtitles Without Encoding (when the media and captions files are in <u>different</u> directories)</h2>
<p>1. If the media file and captions file are located in different directories or have different names, you need to create a pointer file that references both the media file and captions file. </p>
<p>2. Paste the code below into a text editor.  Edit the name and location of the media file and captions file. Save it as an ASX file (e.g. &#8220;My-Video.asx&#8221;) and make sure that Windows does not rename it (e.g. &#8220;My-Video.asx.txt&#8221;). The ASX file will look and function just like a media file. It will associate with the Windows Media icon and playing it will launch the media file and captions file. </p>
<div style="overflow:scroll;background-color: #F5F5F5;width:500px;height:120px;padding:10px;margin:15px 0 15px 0;">
<pre><pre>
&lt;asx version=&quot;3.0&quot;&gt;
&lt;entry&gt;
&lt;ref href=&quot;c:\media\My-Video.wmv?SAMI=c:\captions\My-Video.smi&quot;/&gt;
&lt;/entry&gt;
&lt;/asx&gt;
</pre></pre>
</div>
<h2 style="line-height:40px;">Windows Media Player Settings</h2>
<p>1. In order for captions to show up on Windows Media Player, navigate to <b>Tools > Options > Security</b> and check the box &#8220;Show local captions when present&#8221;.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/wmv-12.jpg" alt="Adding closed captions or subtitles to WMV (windows media) or silverlight" style="padding: 15px 0 15px 0;"/></a></p>
<p>2. You also need to right-click over the video window and enable <b>Lyrics, captions, and subtitles</b>.<br />
<img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/wmv-13.jpg" alt="Adding closed captions or subtitles to WMV (windows media) or silverlight" style="padding: 15px 0 15px 0;"/></a></p>
<p><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.3playmedia.com/2011/09/24/3-steps-to-add-closed-captions-or-subtitles-for-windows-media-video-wmv-and-silverlight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4 Steps to Add Closed Captions or Subtitles to Your Camtasia Video</title>
		<link>http://www.3playmedia.com/2011/09/07/4-steps-to-add-closed-captions-or-subtitles-to-your-camtasia-video/</link>
		<comments>http://www.3playmedia.com/2011/09/07/4-steps-to-add-closed-captions-or-subtitles-to-your-camtasia-video/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 21:26:38 +0000</pubDate>
		<dc:creator>Tole Khesin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Camtasia]]></category>
		<category><![CDATA[captions]]></category>
		<category><![CDATA[subtitles]]></category>
		<category><![CDATA[video search]]></category>
		<guid isPermaLink="false">http://www.3playmedia.com/?p=6783</guid>
		<description><![CDATA[Overview The new Camtasia Studio 7.1 allows you to add captions or subtitles to a video to make it fully accessible and ADA compliant. Camtasia Studio also lets you add search functionality during the production process. This lets viewers search through the spoken content and jump to a specific part of the video. You can [...]]]></description>
			<content:encoded><![CDATA[<h2 style="line-height: 40px; ">Overview</h2>
<p>The new Camtasia Studio 7.1 allows you to add captions or subtitles to a video to make it fully accessible and ADA compliant.  Camtasia Studio also lets you add search functionality during the production process. This lets viewers search through the spoken content and jump to a specific part of the video.  You can learn more about adding captions to your Camtasia videos by visiting the <a href="http://www.techsmith.com/learn/camtasia/7/">Camtasia support site</a>.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/camtasia-0.jpg" alt="Adding closed captions or subtitles with Camtasia" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height: 40px; ">Step 1 – Export Your Camtasia Video</h2>
<p>1. Open your video in Camtasia Studio.</p>
<p>2. Select <b>File > Produce and Share</b>.  Then select <b>Custom Production Settings</b> and on the next screen select <b>MP4/FLV/SWF – Flash Outputs</b> (default). Click Next.</p>
<p>3. On the Flash Templates screen, select <b>No Controls</b> under Template Appearance and <b>320&#215;240</b> for the Size Fit In. Click Next.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/camtasia-1.jpg" alt="Adding closed captions or subtitles with Camtasia" style="padding: 15px 0 15px 0;"/></a></p>
<p>4. On the Video Options screen, leave all the default options and click Next.</p>
<p>5. On the Produce Video screen, enter a file name and specify where to save it. Then uncheck the box <b>“Organize produced files into sub-folders”</b>. Click Finish.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/camtasia-2.jpg" alt="Adding closed captions or subtitles with Camtasia" style="padding: 15px 0 15px 0;"/></a></p>
<p>6. After your MP4 video has been created, play it to make sure that everything looks and sounds correct.</p>
<h2 style="line-height: 40px; ">Step 2 – Submit Your Camtasia Video for Captioning</h2>
<p>1. Log into your <a href="http://account.3playmedia.com">3Play Media account</a>.</p>
<p>2. Select <b>Upload</b> and specify the turnaround requirements.</p>
<p>3. You will receive an email alert when the captions file is ready for use. </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/camtasia-3.jpg" alt="Adding closed captions or subtitles with Camtasia" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height: 40px; ">Step 3 &#8211; Download Your Captions File</h2>
<p>1. From your 3Play Media account, navigate to <b>My Files</b>.  Click the <b>download</b> link beside the appropriate file and select <b>SRT</b>. Alternately, you can download the SMI caption format, which is also supported by Camtasia.</p>
<p>2. Unzip the file after it downloads.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/camtasia-4.jpg" alt="Adding closed captions or subtitles with Camtasia" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height: 40px; ">Step 4 – Add Captions To Your Camtasia Video</h2>
<p>1. Open your video in Camtasia Studio.</p>
<p>2. Select <b>Tools > Captions</b>.</p>
<p>3. Under Advanced, select <b>Import Captions</b> and select the SRT captions file that you downloaded in Step 3.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/camtasia-5.jpg" alt="Adding closed captions or subtitles with Camtasia" style="padding: 15px 0 15px 0;"/></a></p>
<p>4. Save the video and select <b>File > Produce and Share</b>.  Select <b>Custom Production Settings</b> and <b>MP4/FLV/SWF – Flash Outputs</b>(default) on the next screen.  Click Next. </p>
<p>5. On the Flash Controllers screen, check the box <b>”Closed Captions”</b> if you want the captions to be available in the produced video. This will place a <b>CC</b> button in the controls area. Also, note that in order to be able to toggle the captions on/off, it is better to set the caption to “On Video” rather than “Under Video”.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/camtasia-6.jpg" alt="Adding closed captions or subtitles with Camtasia" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height: 40px; ">How to Adjust the Placement and Style of Your Captions</h2>
<p>1. Under Global Settings, there is a formatting toolbar that lets you control font size and style, as well as paragraphing and background color. </p>
<p>2. The placement of captions can be overlaid “On Video” or underneath “Under Video”. If you plan to produce “closed” captions, which means that your users will have the ability to toggle captions on/off, the caption placement should be set to “On Video”.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/camtasia-7.jpg" alt="Adding closed captions or subtitles with Camtasia" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height: 40px; ">How to Make Your Camtasia Video Searchable</h2>
<p>1. After you have added captions, select <b>File > Produce and Share</b>.  Select <b>Custom Production Settings</b> and <b>MP4/FLV/SWF – Flash Outputs</b> (default) on the next screen.  Click Next. </p>
<p>2. On the Flash Controllers screen, select <b>Overlay Controls</b> and check the box <b>”Searchability”</b>.  Click Next to proceed through the subsequent screens and click Finish to begin rendering your video.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/camtasia-8.jpg" alt="Adding closed captions or subtitles with Camtasia" style="padding: 15px 0 15px 0;"/></a></p>
<p>3. Once your video has been produced, you can open it any web browser. Users can access the search bar by hovering over the video. Searching for a word returns a list of results containing that word. You can click on any of the results to jump to that part of the video.  </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/camtasia-9.jpg" alt="Adding closed captions or subtitles with Camtasia" style="padding: 15px 0 15px 0;"/></a></p>
<p><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.3playmedia.com/2011/09/07/4-steps-to-add-closed-captions-or-subtitles-to-your-camtasia-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add Closed Captions or Subtitles for iPhone, iPad, iPod, iTunes, and Apple iOS using QuickTime Pro</title>
		<link>http://www.3playmedia.com/2011/09/01/how-to-add-closed-captions-or-subtitles-for-iphone-ipad-ipod-itunes-and-apple-ios-using-quicktime-pro/</link>
		<comments>http://www.3playmedia.com/2011/09/01/how-to-add-closed-captions-or-subtitles-for-iphone-ipad-ipod-itunes-and-apple-ios-using-quicktime-pro/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 22:12:24 +0000</pubDate>
		<dc:creator>Tole Khesin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[closed captions]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[M4V]]></category>
		<category><![CDATA[mov]]></category>
		<category><![CDATA[quicktime]]></category>
		<category><![CDATA[support]]></category>
		<guid isPermaLink="false">http://www.3playmedia.com/?p=6757</guid>
		<description><![CDATA[Overview This blog article is a step-by-step guide on how to use the QuickTime Pro software to add closed captions or subtitles to video to make it compatible with Apple iOS devices and software. Closed captions are supported by iPhone (3G, 3GS, and 4), iPod (Classic, Nano, and Touch), and iPad (1 and 2). Closed [...]]]></description>
			<content:encoded><![CDATA[<h2 style="line-height: 40px; ">Overview</h2>
<p>This blog article is a step-by-step guide on how to use the QuickTime Pro software to add closed captions or subtitles to video to make it compatible with Apple iOS devices and software. Closed captions are supported by iPhone (3G, 3GS, and 4), iPod (Classic, Nano, and Touch), and iPad (1 and 2).  Closed captioning is also supported by the QuickTime player, iTunes, and Apple TV. </p>
<p>Note that this procedure can only be done on a Mac. The PC version of QuickTime Pro does not currently provide support for the SCC caption format, which is required for iOS compatibility. </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/ios-0.jpg" alt="closed captions for iphone, ipad, ipod, iTunes with QuickTime" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height: 40px;margin-top:20px;">Step 1 &#8211; Download Your Closed Captions File</h2>
<p>1. Log into your 3Play Media account at <a href="http://account.3playmedia.com">http://account.3playmedia.com</a>. </p>
<p>2. Navigate to <b>My Files</b>.  Click the <b>download</b> link beside the appropriate file and select <b>SCC for iOS</b>. </p>
<p>3. Unzip the file after it downloads.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/ios-1.jpg" alt="closed captions for iphone, ipad, ipod, iTunes with QuickTime" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height: 40px;margin-top:20px;">Step 2 – Set Up QuickTime Pro (Mac) To Support SCC Captions </h2>
<p>1. In order to perform the subsequent actions you will need to <a href="http://www.apple.com/quicktime/extending/index.html">purchase </a>and install QuickTime Pro for Mac for about $30. Note that this can only be done on a Mac because the PC version of QuickTime Pro does not currently support SCC captions.</p>
<p>2. Close all QuickTime windows.</p>
<p>3. Download the <a href="http://developer.apple.com/library/mac/#samplecode/ClosedCaptionImporter/Introduction/Intro.html">ClosedCaptionImporter plugin</a> for Mac. From the download page click the <b>Download Sample Code</b> button. </p>
<p>4. Copy the <b>ClosedCaptionImporter.component</b> file to your hard drive in <b>/Library/QuickTime</b>.</p>
<h2 style="line-height: 40px;margin-top:20px;">Step 3 –Prepare Your Video for iOS Compatibility</h2>
<p>1. Open the video file in QuickTime Pro (Mac).  </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/ios-2.jpg" alt=" closed captions for iphone, ipad, ipod, iTunes with QuickTime " style="padding: 15px 0 15px 0;"/></a></p>
<p>2. Adjust the size of the video to conform to the device that you are targeting. Navigate to <b>Window > Show Move Properties > Video Track > Visual Settings</b> to change the pixel dimensions.  The table below shows the pixel dimensions of Apple devices that support closed captions. Although these are the optimal dimensions for each device, your video doesn’t have to match exactly because all devices are able to scale the video as necessary.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/ios-3.jpg" alt=" closed captions for iphone, ipad, ipod, iTunes with QuickTime " style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height: 40px;margin-top:20px;">Screen Pixel Dimensions of Apple Devices</h2>
<table border="0" cellspacing="0" cellpadding="0" class="pricing_table" width="500px">
<tr class="row" id="titles">
<th align="center" class="right">
<h2 align="center" class="type1" style="font-size:15px;">Device</h2>
</th>
<th align="center" class="right">
<h2 align="center" class="type1" style="font-size:15px;">Pixel Dimensions</h2>
</th>
<th align="center" class="right">
<h2 align="center" class="type1" style="font-size:15px;">Aspect Ratio</h2>
</th>
</tr>
<tr class="row">
<td align="left"> iPhone 3G, 3GS</td>
<td align="center" class="right" style="font-weight:normal;" width="150px">480 x 320</td>
<td align="center" class="right" style="font-weight:normal;" width="150px">3:2</td>
</tr>
<tr class="row odd">
<td align="left"> iPhone 4</td>
<td align="center" class="right" style="font-weight:normal;" width="150px">960 x 640</td>
<td align="center" class="right" style="font-weight:normal;" width="150px">3:2</td>
</tr>
<tr class="row">
<td align="left"> iPad, iPad2</td>
<td align="center" class="right" style="font-weight:normal;" width="150px">1024 x 768</td>
<td align="center" class="right" style="font-weight:normal;" width="150px">4:3</td>
</tr>
<tr class="row odd">
<td align="left"> iPod Classic</td>
<td align="center" class="right" style="font-weight:normal;" width="150px">320 x 240</td>
<td align="center" class="right" style="font-weight:normal;" width="150px">3:2</td>
</tr>
<tr class="row">
<td align="left"> iPod Touch</td>
<td align="center" class="right" style="font-weight:normal;" width="150px">960 x 640</td>
<td align="center" class="right" style="font-weight:normal;" width="150px">3:2</td>
</tr>
<tr class="row odd">
<td align="left"> iPod Nano</td>
<td align="center" class="right" style="font-weight:normal;" width="150px">240 x 240</td>
<td align="center" class="right" style="font-weight:normal;" width="150px">1:1</td>
</tr>
</table>
<p><br/></p>
<p>3. Export the video as an M4V file. Select <b>File > Export</b> and select <b>Movie to iPod</b>. </p>
<p>4. Close all QuickTime windows.</p>
<h2 style="line-height: 40px;margin-top:20px;">Step 4 – Add Closed Captions with QuickTime Pro (Mac)</h2>
<p>1. Using QuickTime Pro (Mac), open the M4V file that you created in the previous step.</p>
<p>2. Using QuickTime Pro (Mac), open the SCC for iOS captions file that you downloaded from your 3Play Media account. This will open a separate QuickTime window that shows just your captions without the video.  Copy the captions to the clipboard by clicking <b>Edit > Select All</b> and then <b>Edit > Copy</b>.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/ios-4.jpg" alt=" closed captions for iphone, ipad, ipod, iTunes with QuickTime " style="padding: 15px 0 15px 0;"/></a></p>
<p>3. Go back to the QuickTime window with the video and make sure that the play head is at the beginning. Add the captions by clicking <b>Edit > Add to Movie</b>. </p>
<p>4. Make sure that captions are enabled in your QuickTime player by selecting <b>View > Show Closed Captioning</b>.  </p>
<p>5.  Play the video and make sure that the captions are showing up correctly.</p>
<p>6. Save the video. Select <b>File > Save As</b> and select <b>Save as a self-contained movie</b>. </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/ios-5.jpg" alt="closed captions for iphone, ipad, ipod, iTunes with QuickTime" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height: 40px;margin-top:20px;">Apple Device and Software Settings</h2>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/ios-6.jpg" alt="closed captions for iphone, ipad, ipod, iTunes with QuickTime" align="right" style="padding: 0 0 15px 30px;"/></a></p>
<p>You will need to enable closed captions and subtitles in order to view them on your iOS devices and software.</p>
<h3>iPhone and iPod Touch</h3>
<p>Navigate to <b>Settings > iPod</b> and turn ON <b>Closed Captioning</b>. </p>
<h3>iPad and iPad2</h3>
<p>Navigate to <b>Settings > Video</b> and turn ON <b>Closed Captioning</b>.  </p>
<h3>iPod Nano and iPod Classic</h3>
<p>Navigate to <b>Videos > Settings</b> and select <b>Captions</b>.</p>
<h3>QuickTime Player</h3>
<p>Select <b>Edit > Preference > Play Preferences</b> and check the boxes <b>“Show closed captioning when available”</b> and <b>“Show subtitles when available”</b>. Then select <b>View > Show Closed Captioning</b>.</p>
<h3>iTunes</h3>
<p>Select <b>Edit > Preferences</b> and check the box <b>“Show closed captioning when available”</b>. Then select <b>Controls > Audio &#038; Subtitles > Show Closed Captioning</b>.</p>
<h3>Apple TV</h3>
<p>Select <b>Settings > Audio &#038; Video > Closed Captioning</b>.</p>
<p><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.3playmedia.com/2011/09/01/how-to-add-closed-captions-or-subtitles-for-iphone-ipad-ipod-itunes-and-apple-ios-using-quicktime-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Steps to Add Closed Captions or Subtitles with QuickTime</title>
		<link>http://www.3playmedia.com/2011/08/26/3-steps-to-add-closed-captions-or-subtitles-with-quicktime/</link>
		<comments>http://www.3playmedia.com/2011/08/26/3-steps-to-add-closed-captions-or-subtitles-with-quicktime/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 22:30:24 +0000</pubDate>
		<dc:creator>Tole Khesin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[closed captions]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[mov]]></category>
		<category><![CDATA[quicktime]]></category>
		<category><![CDATA[subtitles]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[tips]]></category>
		<guid isPermaLink="false">http://www.3playmedia.com/?p=6717</guid>
		<description><![CDATA[Overview This blog article is a step-by-step guide on how to add closed captions or subtitles to video using the QuickTime Pro software, which can be purchased for PC or Mac for about $30. After a caption file is downloaded from your 3Play Media account, it can be added to a video, and the position [...]]]></description>
			<content:encoded><![CDATA[<h2 style="line-height: 40px;">Overview</h2>
<p>This blog article is a step-by-step guide on how to add closed captions or subtitles to video using the QuickTime Pro software, which can be purchased for PC or Mac for about $30. After a caption file is downloaded from your 3Play Media account, it can be added to a video, and the position of the captions can be adjusted to be above or below the video or overlaid.  You can use QuickTime text descriptors to specify the exact styling of the captions and their background. Also, we explain how to add a CC toggle button that lets users turn the captions on or off.  </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/qt-0.jpg" alt="Adding captions with QuickTime Pro" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height: 40px;margin-top:20px;">Step 1 &#8211; Download Your Closed Captions File</h2>
<p>1. Log into your 3Play Media account at <a href="http://account.3playmedia.com">http://account.3playmedia.com</a>. </p>
<p>2. Navigate to <b>My Files</b>.  Click the <b>download</b> link beside the appropriate file and select <strong>QT</strong>. </p>
<p>3. Unzip the file after it downloads.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/qt-1.jpg" alt="Adding captions with QuickTime Pro" style="padding: 15px 0 15px 0;"/></a></p>
<h2 style="line-height: 40px;margin-top:20px;">Step 2 – Use QuickTime Pro to Add Closed Captions</h2>
<p>1. Open the video file in QuickTime Pro.  (If you don&#8217;t have QuickTime Pro you can <a href="http://www.apple.com/quicktime/extending/index.html">purchase</a> it from Apple for $29.95.) </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/qt-2a.jpg" alt="Adding captions with QuickTime Pro" style="padding: 15px 0 15px 0;"/></a></p>
<p>2. Using QuickTime Pro, open the captions file that you downloaded from your account. This will open a separate QuickTime window that shows just your captions without the video.  Copy the captions to the clipboard by clicking <b>Edit > Select All</b> and then <b>Edit > Copy</b>.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/qt-2b.jpg" alt="Adding captions with QuickTime Pro" style="padding: 15px 0 15px 0;"/></a></p>
<p>3. Go back to the QuickTime window with the video and make sure that the play head is at the beginning. Add the captions by clicking <b>Edit > Add to Movie</b>. </p>
<p>4. Close the QuickTime window with the captions.</p>
<h2 style="line-height: 40px;margin-top:20px;">Step 3 – Adjust the Position and Style of the Closed Captions</h2>
<p>1. The default position of the captions is above the video. To move the captions below the video, navigate to <b>Window > Show Move Properties > Text Track > Visual Settings</b> and change the vertical offset. </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/qt-3.jpg" alt="Adding captions with QuickTime Pro" style="padding: 15px 0 15px 0;"/></a></p>
<p>2. You’ll need to know the pixel dimensions of your video. You can get this information by selecting <b>Video Track > Visual Settings</b>.</p>
<p>3. To position the captions underneath the video, make the vertical offset equal to the height of your video. For example, if your video pixel dimensions are 640&#215;480, you should change the offset to be 0 x 480. </p>
<p>4. Close the Movie Properties window.</p>
<p>5. Select the QuickTime window with the video and select <b>File > Save As</b> and select <b>Save as a self-contained movie</b>.</p>
<h2 style="line-height: 40px;margin-top:20px;">How to overlay the captions on the video and adjust text style</h2>
<p>1. Find the caption file that you downloaded from your 3Play Media account, and open it with a text editing program.</p>
<p>2. Make the background transparent by adding <b>{keyedText: on}</b>. </p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/qt-4.jpg" alt="Adding captions with QuickTime Pro" style="padding: 15px 0 15px 0;"/></a></p>
<p>3. To improve visibility of the text, you can add a drop shadow using these text descriptors: </p>
<p><b>{dropShadow: on }{dropShadowOffset: 1, 1}</b>.  In this example, the drop shadow will be positioned 1 pixel to the right and 1 pixel down.</p>
<p>4. You can adjust other style settings using the text descriptors shown in the table below. Or you can see the complete list of <a href="http://docs.info.apple.com/article.html?artnum=42643-en">QuickTime text descriptors</a>. </p>
<p>5. Save the caption file and add to the video as described in Step 2 above.</p>
<p>6. Adjust the vertical offset of the text track so that the captions appear where you want them. For example, if your video pixel dimensions are 640&#215;480, you might want to make the offset 0 x 440. </p>
<h2 style="line-height: 40px;margin-top:20px;">QuickTime Text Descriptors</h2>
<table border="0" cellspacing="0" cellpadding="0" class="pricing_table" width="600px">
<tr class="row" id="titles">
<th align="center" class="right">
<h2 align="center" class="type1" style="font-size:15px;">QuickTime Pro<br />
Text Descriptor</h2>
</th>
<th align="center" class="right">
<h2 align="center" class="type1" style="font-size:15px;">Description</h2>
</th>
</tr>
<tr class="row">
<td align="left">{keyedText: on}</td>
<td align="left" class="right" style="font-weight:normal;" width="350px">Displays closed captions or subtitles with a transparent background. </td>
</tr>
<tr class="row odd">
<td align="left">{dropShadow: on }</td>
<td align="left" class="right" style="font-weight:normal;" width="350px"> Creates a drop shadow for the text.
</td>
</tr>
<tr class="row">
<td align="left">{dropShadowOffset: 1, 1}</td>
<td align="left" class="right" style="font-weight:normal;" width="350px">Offsets the drop shadow 1 pixel to the right and 1 pixel down. {dropShadow:on} must be specified.</td>
</tr>
<tr class="row odd">
<td align="left">{dropShadowTransparency: 127}</td>
<td align="left" class="right" style="font-weight:normal;" width="350px">Specifies the transparency of the drop shadow. Value must be between 0 and 255.
</td>
</tr>
<tr class="row">
<td align="left">{anti-alias: on}</td>
<td align="left" class="right" style="font-weight:normal;" width="350px">Display anti-aliased text.
</td>
</tr>
<tr class="row odd">
<td align="left">{font: Arial}</td>
<td align="left" class="right" style="font-weight:normal;" width="350px">Specifies the name of the font.
</td>
</tr>
<tr class="row">
<td align="left">{fontstyle: plain}</td>
<td align="left" class="right" style="font-weight:normal;" width="350px">Specifies the text style. Options are: plain, bold, italic, underline, outline, shadow, condense (decreased spacing between characters), extend (increased spacing between characters).
</td>
</tr>
<tr class="row odd">
<td align="left">{justify: center}</td>
<td align="left" class="right" style="font-weight:normal;" width="350px">Specifies the text alignment.  Options are: left, right, center, default.
</td>
</tr>
<tr class="row">
<td align="left">{size: 18}</td>
<td align="left" class="right" style="font-weight:normal;" width="350px">Specifies font size.
</td>
</tr>
<tr class="row odd">
<td align="left">{textColor: R , G , B}</td>
<td align="left" class="right" style="font-weight:normal;" width="350px">Sets the RGB text color. E.g. {textColor: 65535, 32000, 0} is orange.
</td>
</tr>
<tr class="row">
<td align="left">{backColor: R , G , B }</td>
<td align="left" class="right" style="font-weight:normal;" width="350px">Sets the RGB background color.
</td>
</tr>
<tr class="row odd">
<td align="left">{textBox: top , left , bottom , right}</td>
<td align="left" class="right" style="font-weight:normal;" width="350px">Specifies the dimensions and location of the box containing the closed captions or subtitles. For example, {textBox:0, 0, 45, 640} creates a box that is 45 pixels high by 640 pixels wide starting from the top left corner of the video window.
</td>
</tr>
</table>
<h2 style="line-height: 40px;margin-top:20px;">How to Add a CC Toggle Button to the QuickTime player</h2>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/qt-5a.jpg" alt="Adding captions with QuickTime Pro" style="padding: 15px 0 15px 0;"/></a></p>
<p>1. In order to add a CC button that lets your users turn the captions on or off you will need to <a href="https://pantherfile.uwm.edu/xythoswfs/webui/_xy-12075306_1">download </a>the free QuickTime sprite. The file that you need to save is called <b>toggle_caption.mov</b></p>
<p>2. Open the <b>toggle_caption.mov</b> file in QuickTime Pro. This will open a separate QuickTime window that shows the CC button.  Click <b>Edit > Select All</b> and then <b>Edit > Copy</b>.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/qt-5b.jpg" alt="Adding captions with QuickTime Pro" style="padding: 15px 0 15px 0;"/></a></p>
<p>3. Go back to the QuickTime window with the video and make sure that the play head is at the beginning. Click <b>Edit > Add to Selection and Scale</b>. You can now close the QuickTime window with the CC button.</p>
<p>4. Navigate to <b>Window > Show Movie Properties</b> and rename the text track to “<b>caption</b>”. To do this, select the text track and then click once on the text itself.</p>
<p>5. Select <b>toggle_caption > Visual Settings</b> and position the CC button by adjusting the horizontal and vertical offset. Close the Movie Properties window.</p>
<p>6. Select the QuickTime window with the video and select <b>File > Save As</b> and select <b>Save as a self-contained movie</b>.</p>
<h2 style="line-height: 40px;margin-top:20px;">QuickTime Player Settings</h2>
<p>You need to change the QuickTime player settings in order to view closed captions or subtitles. Navigate to <b>Edit > Preference > Play Preferences</b>  and check the boxes “<b>Show closed captioning when available</b>” and “<b>Show subtitles when available</b>”.</p>
<p><img src="http://3playmedia.wpengine.netdna-cdn.com/wp-content/uploads/2010/05/qt-6.jpg" alt="Adding captions with QuickTime Pro" style="padding: 15px 0 15px 0;"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.3playmedia.com/2011/08/26/3-steps-to-add-closed-captions-or-subtitles-with-quicktime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

