<?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>Buddy Lindsey &#187; Video</title>
	<atom:link href="http://buddylindsey.com/category/video/feed/" rel="self" type="application/rss+xml" />
	<link>http://buddylindsey.com</link>
	<description>because reading textbooks gets boring</description>
	<lastBuildDate>Mon, 30 Jan 2012 23:33:21 +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, Webm, and Firefox &#8211; Why It Doesn&#8217;t Work Right Away</title>
		<link>http://buddylindsey.com/html5-webm-and-firefox-why-it-doesnt-work-right-away/</link>
		<comments>http://buddylindsey.com/html5-webm-and-firefox-why-it-doesnt-work-right-away/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 17:13:19 +0000</pubDate>
		<dc:creator>Buddy Lindsey</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Amazon AWS]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://buddylindsey.com/?p=606</guid>
		<description><![CDATA[For GoDjango I like to use HTML5 video playback for all the screencasts, but unfortunately there isn&#8217;t a good standard video type for playback. Generally MP4 (h.264) works fine for mobile devices, chrome, safari, and IE. However, for Firefox, my browser of choice, you need to have either Webm or Ogg Vorbis. I ended up [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>For <a href="http://godjango.com">GoDjango</a> I like to use HTML5 video playback for all the screencasts, but unfortunately there isn&#8217;t a good standard video type for playback. Generally MP4 (h.264) works fine for mobile devices, chrome, safari, and IE. However, for Firefox, my browser of choice, you need to have either Webm or Ogg Vorbis. I ended up choosing Webm and it bit me in the butt until I figured out the mimetypes weren&#8217;t set correctly since webm is a fairly new file format compared to others.</p>
<h2>Solution</h2>
<p>Make sure your mime types are correct. </p>
<h3>Amazon S3</h3>
<p>If your files are hosted on Amazon S3 your webm files are probably set to octet/stream. Here are the steps to change them to video/webm</p>
<ol>
<li>Log into your AWS Management Console for S3</li>
<li>Choose the bucket your video is in</li>
<li>Right Click on the video and click properties</li>
<li>In the area that opens at the bottom of the page select the Metadata tab</li>
<li>For the Content-Type key click on the value text box next to it</li>
<li>Type in &#8220;video/webm&#8221; without quotes</li>
<li>Then hit save at the bottom</li>
</ol>
<h3>Apache</h3>
<p>Lets say you are hosting the video files on your own server, but they still are working. Chances are the mimetype is still wrong and we just need to add them. If you are using apache then either add a .htaccess file or edit the current one with the following:</p>
<blockquote><p>
AddType     video/webm     .webm
</p></blockquote>
<h3>IIS</h3>
<ol>
<li>Open IIS Manager and navigate tot he level you want to manage</li>
<li>In Features View, double click MIME Types</li>
<li>In the Actions pain click Add</li>
<li>In the Add MIME Type dialog box, add .webm</li>
<li>In the MIME Type text box add: video/webm</li>
<li>Click Ok</li>
</ol>
<p>Hopefully that helps some of you out there who are facing the same issue I did. If you find any other solutions please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://buddylindsey.com/html5-webm-and-firefox-why-it-doesnt-work-right-away/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just Launched GoDjango</title>
		<link>http://buddylindsey.com/just-launched-godjango/</link>
		<comments>http://buddylindsey.com/just-launched-godjango/#comments</comments>
		<pubDate>Sat, 19 Nov 2011 23:27:39 +0000</pubDate>
		<dc:creator>Buddy Lindsey</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[learning]]></category>

		<guid isPermaLink="false">http://buddylindsey.com/?p=602</guid>
		<description><![CDATA[Recently I was compelled to learn python since it seemed like a lot of different forces were driving me to do so. After learning the syntax basics I figured I would take the next step to start learning Django since it is the predominant web framework for python, and I am a web developer. One [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Recently I was compelled to learn python since it seemed like a lot of different forces were driving me to do so. After learning the syntax basics I figured I would take the next step to start learning Django since it is the predominant web framework for python, and I am a web developer. </p>
<p>One of the things that I found particularly disheartening is the severe lack of video tutorials available on the web. I am a huge fan of videos because I learn best visually, almost to a fault. There are a few scattered around here and there, but most are out of date. The fortunate things is Django has some of the best documentation for a project I have ever seen, but at the end of the day it is documentation and sometimes some dots don&#8217;t connect well in them.</p>
<p>I make the point about video tutorials because, I guess, I was spoiled in the .NET and the Ruby world where there are videos everywhere. Someone is always doing a new one. Take RailsCasts for example, it has been going strong for a long time now. I feel Django can really benefit from some kind of video tutorials as well.</p>
<p>Therefore I have decided to start <a href="http://godjango.com">GoDjango.com</a>. It is a fun project, partly, because I coded the base site using Django and launched it to Heroku. I then recorded the first video and posted it all in about 30&#8242;ish hours. I plan to release a new video every week, maybe two, which is short and sweet doing something with Django or surrounding technologies. </p>
<p>Most of the videos are going to be 5 to 15 minute videos which are there to show you how to do 1 thing really quick to get started. I also plan to follow up with more comprehensive videos that cover in a lot of detail and are upwards of an hour long, those will be premium, but very affordable.</p>
<p>With that please visit <a href="http://godjango.com">GoDjango.com</a> and watch the first video. If you feel so inclined, as well, feel free to comment here or there and leave advice suggestions or comments. Also if you would like to help improve the site by hacking on it. I have OSS&#8217;d the <a href="https://github.com/buddylindsey/GoDjango">GoDjango site on Github</a></p>
]]></content:encoded>
			<wfw:commentRss>http://buddylindsey.com/just-launched-godjango/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Ruby on Rails From ASP.NET Perspective</title>
		<link>http://buddylindsey.com/ruby-on-rails-from-asp-net-perspective/</link>
		<comments>http://buddylindsey.com/ruby-on-rails-from-asp-net-perspective/#comments</comments>
		<pubDate>Fri, 12 Nov 2010 19:45:01 +0000</pubDate>
		<dc:creator>Buddy Lindsey</dc:creator>
				<category><![CDATA[Presentation]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[RoR]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://buddylindsey.com/?p=519</guid>
		<description><![CDATA[These are the slides and video from my presentation at Tulsa TechFest 2010. The talk is a walkthrough of Ruby on Rails. From install to working application. Please leave feedback on your thoughts. Slides Video Project Files Downloads Ruby On Rails Tulsa TechFest 2010 Presentation Code &#8211; Unedited or Added to]]></description>
			<content:encoded><![CDATA[<p></p><p>These are the slides and video from my presentation at Tulsa TechFest 2010. The talk is a walkthrough of Ruby on Rails. From install to working application. Please leave feedback on your thoughts.</p>
<h3>Slides</h3>
<object type='application/x-shockwave-flash' wmode='opaque' data='http://static.slideshare.net/swf/ssplayer2.swf?id=5758448&doc=ror-101112130917-phpapp02' width='425' height='348'><param name='movie' value='http://static.slideshare.net/swf/ssplayer2.swf?id=5758448&doc=ror-101112130917-phpapp02' /><param name='allowFullScreen' value='true' /></object>
<h3>Video</h3>
<p><iframe src="http://player.vimeo.com/video/16795841" width="600" height="338" frameborder="0"></iframe></p>
<h3>Project Files Downloads</h3>
<p><a href='http://buddylindsey.com/wp-content/uploads/2010/11/RubyOnRails_TulsaTechFest2010_Presentation_Code.zip'>Ruby On Rails Tulsa TechFest 2010 Presentation Code &#8211; Unedited or Added to</a></p>
]]></content:encoded>
			<wfw:commentRss>http://buddylindsey.com/ruby-on-rails-from-asp-net-perspective/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subtitles for Video</title>
		<link>http://buddylindsey.com/subtitles-for-video/</link>
		<comments>http://buddylindsey.com/subtitles-for-video/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 00:48:20 +0000</pubDate>
		<dc:creator>Buddy Lindsey</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[subtitling]]></category>

		<guid isPermaLink="false">http://buddylindsey.com/blog/?p=20</guid>
		<description><![CDATA[As many of you may know from my last post, yeah a long time ago, I like anime a lot.&#160; One thing that was always interesting to me was how fansubbers did subtitles.&#160; Well the other day I actually spent about 20 or 30 minutes and figured out how to do basic subtitles. What I [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>
As many of you may know from my last post, yeah a long time ago, I like anime a lot.&nbsp; One thing that was always interesting to me was how fansubbers did subtitles.&nbsp; Well the other day I actually spent about 20 or 30 minutes and figured out how to do basic subtitles.
</p>
<p>
What I learned was softsubs. Basically an external file (*.srt) that you add your subtitles to and load them up when you play the raw video with no subtitles.&nbsp; The site I learned off of was <a href="http://forums.afterdawn.com/thread_view.cfm/564846">from a post on afterdawn website</a>.&nbsp; They are a great resource when it comes to audio video stuff. Anyway the directions are fairly simple.
</p>
<blockquote>
<p>
	1) Get video file.<br />
	2) Create a new textfile in that folder. I prefer to call it the video name with srt at the end. so (videoname.srt)<br />
	3) Add special codes and text<br />
	4) watch video and load the srt file.
	</p>
</blockquote>
<p>
Step 3 is what is the most difficult and it really isn&#39;t difficult at all. To do it all you need is the start frame and end frame of when you want the text to appear.&nbsp; Followed by the text.
</p>
<blockquote>
<p>
	{1}{200}Hello World How are you Today
	</p>
</blockquote>
<p>
That would display &quot;Hello World How are you Today&quot; from frame 1 to 200 then stop displaying it.&nbsp; You can also change colors and do bold, italic, and underline.
</p>
<blockquote>
<p>
	{201}{300}{y:i}I&#39;m Italic<br />
	{301}{400}{y:b}I&#39;m bold<br />
	{401}{500}{y:u}I&#39;m underlined
	</p>
</blockquote>
<p>
You can also do colors too.  So something like:
</p>
<blockquote>
<p>
	{501}{600}{c:$333333}I&#39;m A different color.
	</p>
</blockquote>
<p>
Finally you can even do different fonts too.
</p>
<blockquote>
<p>
	{601}{700}{f:Arial}I&#39;m A different font.
	</p>
</blockquote>
<p>
So if you wanted to copy paste into a text file all of the above to test it. It would look something like:
</p>
<blockquote>
<p>
	{1}{200}Hello World How are you Today<br />
	{201}{300}{y:i}I&#39;m Italic<br />
	{301}{400}{y:b}I&#39;m bold<br />
	{401}{500}{y:u}I&#39;m underlined<br />
	{501}{600}{c:$333333}I&#39;m A different color.<br />
	{601}{700}{f:Arial}I&#39;m A different font.<br />
	{701}{800}{y:i}{c:$333333}I&#39;m several combined into 1
	</p>
</blockquote>
<p>
After you have that done you are ready to view them. I personally use windows media player classic and the best way to use them, once the video is loaded, is:
</p>
<blockquote>
<p>
	File-&gt;load subtitles-&gt;(Browse to subtitles and open)
	</p>
</blockquote>
<p>
Here are some pictures
</p>
<p>
&nbsp;
</p>
<p><img src="/wp-content/uploads/2008%2f8%2fsubtitle_save.jpg" alt="" /></p>
<p><img src="/wp-content/uploads/2008%2f8%2fload_subtitle.jpg" alt="" /></p>
<p><img src="/wp-content/uploads/2008%2f8%2fload_subtitle_dialog.jpg" alt="" /></p>
<p><img src="/wp-content/uploads/2008%2f8%2fsubtitle_1.jpg" alt="" /></p>
<p><img src="/wp-content/uploads/2008%2f8%2fsubtitle_2.jpg" alt="" /></p>
<p><img src="/wp-content/uploads/2008%2f8%2fSubtitle_3.jpg" alt="" /></p>
<p>
If you have wanted to do basic Subtitles this gives you a good start.&nbsp;<br />
I am going to look up how to do embeded subtitles next and will post on<br />
that, hopefully soon.<br /></p>
]]></content:encoded>
			<wfw:commentRss>http://buddylindsey.com/subtitles-for-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

