<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Video on Chris Irwin</title>
    <link>/tags/video/</link>
    <description>Recent content in Video on Chris Irwin</description>
    <generator>Hugo -- 0.147.7</generator>
    <language>en-us</language>
    <lastBuildDate>Sat, 24 Jun 2017 01:07:39 +0000</lastBuildDate>
    <atom:link href="/tags/video/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Push It To the Limit #3</title>
      <link>/posts/pitl-17-3/</link>
      <pubDate>Sat, 24 Jun 2017 01:07:39 +0000</pubDate>
      <guid>/posts/pitl-17-3/</guid>
      <description>&lt;p&gt;If you&amp;rsquo;re considering trying out autocross, I say go for it. I&amp;rsquo;m very new, and have found people at the two events I&amp;rsquo;ve attended (WOSCA #1, and PITL #3) to be friendly and extremely helpful.&lt;/p&gt;
&lt;p&gt;Additionally, you can do it with your own car. You don&amp;rsquo;t need some sort of special race-spec track beast. Both events have also had loaner helmets available (although I spent $200 and bought my own helmet meeting the appropriate standards).&lt;/p&gt;</description>
    </item>
    <item>
      <title>Highlight Reel</title>
      <link>/posts/highlight-reel/</link>
      <pubDate>Tue, 18 Apr 2017 02:39:39 +0000</pubDate>
      <guid>/posts/highlight-reel/</guid>
      <description>&lt;h1 id=&#34;goal&#34;&gt;Goal&lt;/h1&gt;
&lt;p&gt;I want to combine a few clips together, with a 5-seconds of intro text on each one.&lt;/p&gt;
&lt;h1 id=&#34;create-overlay-text-in-gimp&#34;&gt;Create overlay text in GIMP&lt;/h1&gt;
&lt;p&gt;I created &lt;a href=&#34;overlay.xcf&#34;&gt;some overlay text in gimp&lt;/a&gt;, then exported to png files. An example (Note the transparancy, and drop shadow):&lt;/p&gt;
&lt;p&gt;&lt;img alt=&#34;&amp;ldquo;sample overlay png&amp;rdquo;&#34; loading=&#34;lazy&#34; src=&#34;/posts/highlight-reel/overlay.png&#34;&gt;&lt;/p&gt;
&lt;h1 id=&#34;trim-clips-to-length&#34;&gt;Trim clips to length&lt;/h1&gt;
&lt;p&gt;Using the methods I&amp;rsquo;ve described in previous ffmpeg posts, I trimmed the clips, ensuring that there is at least five seconds of lead-in on each clip for the text.&lt;/p&gt;</description>
    </item>
    <item>
      <title>ZigZag Volvo</title>
      <link>/posts/zigzag-volvo/</link>
      <pubDate>Mon, 17 Apr 2017 02:38:31 +0000</pubDate>
      <guid>/posts/zigzag-volvo/</guid>
      <description>&lt;p&gt;While driving through New York on my way to the Watkins Glen 2017 opening weekend, I encountered a &lt;a href=&#34;https://youtu.be/8KceTjkQdvw?t=90&#34;&gt;nut in a Volvo zig-zagging through highway traffic&lt;/a&gt;. I decided use ffmpeg yet again (I&amp;rsquo;m starting to wonder if OpenShot would actually bring anything to the table at this point, besides crashing)&lt;/p&gt;
&lt;h1 id=&#34;plan&#34;&gt;Plan&lt;/h1&gt;
&lt;p&gt;I want a video with the rear camera until the Volvo passes, then the front camera after. I want to use the front audio for the whole video.&lt;/p&gt;</description>
    </item>
    <item>
      <title>ffmpeg part three - No more Boogaloos to give</title>
      <link>/posts/ffmpeg-3/</link>
      <pubDate>Mon, 17 Apr 2017 02:26:05 +0000</pubDate>
      <guid>/posts/ffmpeg-3/</guid>
      <description>&lt;p&gt;Just like the &lt;a href=&#34;https://chrisirwin.ca/posts/video-assembly-with-ffmpeg/&#34;&gt;first&lt;/a&gt; &lt;a href=&#34;https://chrisirwin.ca/posts/ffmpeg-2/&#34;&gt;two&lt;/a&gt; times, I&amp;rsquo;m assembling my Watkins Glen 2017 track footage with ffmpeg.&lt;/p&gt;
&lt;p&gt;However, I encountered a small issue I didn&amp;rsquo;t last year, plus I decided to change things up a bit with codecs, and audio selection.&lt;/p&gt;
&lt;h1 id=&#34;ffmpeg-requires-protocol-whitelist-now&#34;&gt;ffmpeg requires protocol whitelist now&lt;/h1&gt;
&lt;p&gt;I&amp;rsquo;m using pretty much the same concatenation command as last year (filenames are a bit different):&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$ for f in Front-*MOV; do echo file &amp;quot;$f&amp;quot;; done | ffmpeg -f concat -i - -c copy Front.MOV
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The error I got from ffmpeg looked like:&lt;/p&gt;</description>
    </item>
    <item>
      <title>ffmpeg part two - Electric Boogaloo</title>
      <link>/posts/ffmpeg-2/</link>
      <pubDate>Wed, 20 Apr 2016 00:34:27 +0000</pubDate>
      <guid>/posts/ffmpeg-2/</guid>
      <description>&lt;p&gt;I just attended the Watkins Glen opening day for the second year. It was, again, a blast.&lt;/p&gt;
&lt;p&gt;I made some slight adjustments to my &lt;a href=&#34;/posts/video-assembly-with-ffmpeg/&#34;&gt;ffmpeg assembly procedure from last year&lt;/a&gt;.&lt;/p&gt;
&lt;h1 id=&#34;dashcam-saves-video-in-5-minute-chunks&#34;&gt;Dashcam saves video in 5-minute chunks&lt;/h1&gt;
&lt;p&gt;Instead of creating .list files, I simply used a pipe as input:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;for fo in AMBA091*; do echo file &amp;quot;$fo&amp;quot;; done \
    | ffmpeg -f concat -i - -c copy Front-Track1.mov
&lt;/code&gt;&lt;/pre&gt;
&lt;h1 id=&#34;front-and-rear-videos-need-to-be-combined&#34;&gt;Front and Rear videos need to be combined&lt;/h1&gt;
&lt;p&gt;Much like last year, I made short samples to confirm if any offsets needed to be done. However, I decided to move the video to the bottom-right corner to cover the timestamps, since they were incorrect on some videos (well, correct. Just not for this time zone)&lt;/p&gt;</description>
    </item>
    <item>
      <title>Video assembly with ffmpeg</title>
      <link>/posts/video-assembly-with-ffmpeg/</link>
      <pubDate>Thu, 23 Apr 2015 01:19:00 +0000</pubDate>
      <guid>/posts/video-assembly-with-ffmpeg/</guid>
      <description>&lt;p&gt;I recently took my car to a racetrack, covered with cameras. I wanted to post these on youtube, but encountered a few issues:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Dashcam saves video in 5-minute chunks&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Front and Rear videos need to be combined&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I don&amp;rsquo;t know anything about video editing&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I didn&amp;rsquo;t have a working video editor&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Fedora doesn&amp;rsquo;t seem to ship ffmpeg, and rpmfusion doesn&amp;rsquo;t support Fedora 22 yet&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The last point was somewhat resolved by a &lt;a href=&#34;http://johnvansickle.com/ffmpeg/&#34;&gt;binary build of ffmpeg&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
