<?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>David Glover &#187; video</title>
	<atom:link href="http://www.davidglover.org/tag/video/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidglover.org</link>
	<description>Effing the ineffable</description>
	<lastBuildDate>Thu, 02 Feb 2012 15:03:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Using Panasonic 700-series 50/60fps video on the Mac</title>
		<link>http://www.davidglover.org/2010/06/panasonic1080p/</link>
		<comments>http://www.davidglover.org/2010/06/panasonic1080p/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 16:34:23 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[700]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[panasonic]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.davidglover.org/?p=983</guid>
		<description><![CDATA[(This guide may also work for newer Panasonic cameras that shoot in 1080p50/60, but I haven&#8217;t tested it. If you want to buy me one so I can update this guide, please feel free.) Panasonic&#8217;s new 700-series cameras shoot in &#8230; <a href="http://www.davidglover.org/2010/06/panasonic1080p/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>(This guide may also work for newer Panasonic cameras that shoot in 1080p50/60, but I haven&#8217;t tested it. If you want to buy me one so I can update this guide, please feel free.)</p>
<p>Panasonic&#8217;s new 700-series cameras shoot in amazing 1080p50. (In the USA, 1080p60. I&#8217;ll be using the &#8220;1080p50&#8243; term in this article but everything will work the same for the 1080p60 version.) This format is slightly non-standard and difficult to use on the Mac. The following is the result of my experiments in getting it to work.</p>
<p><em>Note: Please, no tech support questions. This is a technical article and I don&#8217;t have time to help you. Please ask elsewhere.</em></p>
<p><strong>Step 1: Converting the video to be usable</strong></p>
<p>You can use <a href="http://www.ffmpeg.org/">ffmpeg</a> to convert the files into a usable format. I get ffmpeg from MacPorts but you can build it yourself if you&#8217;re into that kind of thing.</p>
<p>The correct command to convert the video is:</p>
<p><code>ffmpeg -i video_from_camera.MTS -acodec copy -vcodec copy fixed_video.m4v</code></p>
<p>Replace &#8220;video_from_camera&#8221; and &#8220;fixed_video&#8221; with the names of the video file from the card, and the name you want to save as, respectively. You&#8217;ll find the videos on the card in the folder PRIVATE/AVCHD/BDMV/STREAM.</p>
<p>I wrote the following bash script to automatically convert all the files from the card into a folder on my hard disk:</p>
<p><code>#!/bin/bash<br />
mkdir -p ~/Movies/Camera<br />
cd /Volumes/CAM_SD/PRIVATE/AVCHD/BDMV/STREAM<br />
for f in *.MTS; do<br />
<span style="margin-left: 2em;">echo $f</span><br />
<span style="margin-left: 2em;">ffmpeg -i $f -acodec copy -vcodec copy "$HOME/Movies/Camera/$(basename $f .MTS).m4v"</span><br />
done</code></p>
<p>Change &#8220;CAM_SD&#8221; to be the name of your card or camera.</p>
<p>The converted files end up in a folder called &#8220;Camera&#8221; inside your &#8220;Movies&#8221; folder. Make sure you rename the Camera folder before you run the script again, or it will overwrite the movies already there.</p>
<p><strong>2. Editing the video</strong></p>
<p><strong>2a. Using Final Cut Express</strong></p>
<p>Final Cut Express does not support any video greater than 30fps. You can import the video and edit it, but you will end up with 25 or 30fps upon export. The quality will still be higher than shooting in 1080i, however, so you may be happy to go this route.</p>
<p><em>Note: I&#8217;m not rich enough to own a copy of Final Cut Pro or Final Cut Pro X, so I don&#8217;t know anything about it, sorry. Again, if you&#8217;d like to buy me a copy of Final Cut Pro X I would be happy to update this page.</em></p>
<p><strong>2b. Using iMovie &#8217;11</strong></p>
<p>It is possible to keep the 50fps frame rate using iMovie 11.</p>
<p>Import the converted video into iMovie, and <strong>turn on the &#8220;Optimize&#8221; option, setting it to &#8220;Full &#8211; Original Size&#8221;</strong>.</p>
<p>If you want to preserve the high frame rate on export, you&#8217;ll need to use &#8220;Export using QuickTime&#8221; to export to MP4 and manually choose 50 (or 60) fps, or iMovie will default to 25/30.</p>
<p>If you don&#8217;t care about the frame rate, you can use iMovie&#8217;s other &#8220;Share&#8221; menu options, but these will convert to 25 or 30fps. You&#8217;ll still get better quality than you would if you&#8217;d shot in 1080i, so you may be happy with this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidglover.org/2010/06/panasonic1080p/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Creating higher-quality HD video with iMovie &#8217;09</title>
		<link>http://www.davidglover.org/2009/03/imovie-old/</link>
		<comments>http://www.davidglover.org/2009/03/imovie-old/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 19:50:53 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[hd]]></category>
		<category><![CDATA[imovie]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.davidglover.org/?p=485</guid>
		<description><![CDATA[This page used to give instructions on how to get improved quality video output if you used iMovie &#8217;09 and had an interlacing video camera. Three years later this guide is no longer relevant, and so I have removed it. &#8230; <a href="http://www.davidglover.org/2009/03/imovie-old/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This page used to give instructions on how to get improved quality video output if you used iMovie &#8217;09 and had an interlacing video camera.</p>
<p>Three years later this guide is no longer relevant, and so I have removed it. For good quality video, do at least one of these two things:</p>
<ol>
<li>Upgrade to <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewRoom?fcId=412903230&amp;mt=12&amp;id=29520">iMovie 11</a>, which you can download from the Mac App Store. You&#8217;ll need to be running Mac OS X 10.6 (&#8220;Snow Leopard&#8221;) or Mac OS X 10.7 (&#8220;Lion&#8221;). If you&#8217;re running an older version then you will need to upgrade, as Apple no longer supports those versions.</li>
<li>Use a camera which records in a &#8220;progressive&#8221; format. As well as &#8220;progressive&#8221;, your camera may call this &#8220;720p&#8221; or &#8220;1080p&#8221; mode. If your camera has an option to choose one of these modes, use it!</li>
</ol>
<div>Then follow Apple&#8217;s instructions for <a href="http://support.apple.com/kb/PH2114">importing</a> and <a href="http://support.apple.com/kb/PH2119">exporting</a> and your video will look great.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.davidglover.org/2009/03/imovie-old/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

