Categories
Uncategorized

Hot Shoe Mount

Hot Shoe Mount

In June I posted about my Hot Shoe Audio Mount which allowed me to put my Zoom H2 audio recorder on top of my DSLR… and I also had this to say:

The nice thing about the “Nikon DIY GPS Holder” I printed was that I can see it being a generic part I can modify in the future. I can easily import the STL file into Google Sketchup and built on top of it

Hot Shoe Mount

Well, in the past few months I’ve done a lot more in OpenSCAD than in Sketchup, so I wanted an OpenSCAD version of this thing, so while you can still grab the original Nikon DIY GPS Holder, there’s a new derivative, the Hot Shoe Mount, which features the OpenSCAD code.

Brain Slug

But what can do you with this OpenSCAD stuff? How about combining it with other OpenSCAD scripts so you can mount a Brain Slug on your camera? ;)

Categories
Uncategorized

Conforming Video

Slowing down video.

Now that I’m starting to shoot some video with the Nikon D3200, I wanted to try that old trick of shooting at 60fps and then changing the footage to 24fps for a bit of slow motion action. Now, you can’t just do this by slowing down the footage, you need to conform the footage. If you’ve got Final Cut Studio 7 you can use Cinema Tools to do it, and if you have Final Cut Pro X I guess it’s even easier, but let’s pretend you don’t have those, or you prefer open source… read on!

I couldn’t find a way to conform the footage using my old pal MPEG Streamclip, so I moved on to ffmpeg, and managed to find this bit on doing a conversion with a fixed number of frames.

Here’s what worked for me with two steps. There’s a way to do it all in one shot, but I’ve not got that to work yet.

ffmpeg -i DSC_0031.mov 
  -f rawvideo 
  -b 50000000 
  -pix_fmt yuv420p 
  -vcodec rawvideo 
  -s 1280x720 
  -y DSC_0031.raw

So the first command above takes our original QuickTime file right from the camera (DSC_0031.mov) and creates a “raw” version of it we output as DSC_0031.raw (NOTE: In both examples the code should all be on one line. I’ve broken it up to multiple lines for readability. Make it one line!)

ffmpeg -i DSC_0031.raw 
  -f rawvideo 
  -pix_fmt yuv420p 
  -sameq 
  -r 23.97 
  -s 1280x720  
  -y DSC_0031-24fps.mov  

Once we have the DSC_0031.raw file complete, we run the second command and create a new file named DSC_0031-24fps.mov, which will now be at 24fps instead of the original 60fps. Note that we also specify the resolution (1280×720) and the frames per second (23.97). Obviously if you want other values, change those to something else.

So here’s the final video, shot at 60fps and played back at 24fps for just a little bit of slow motion. (With the RED ONE We can shoot at 120fps, but hey, a cheap DSLR doing 60fps isn’t too bad.)

One more thing on the video, it was shot with 3 camera angles, but only one camera. The trick here is to shoot the same sequence 3 times (yes, I drilled 3 boxes) with the camera in a different position each time. We do this all the time, sometimes you have to when it’s a one camera shoot, and sometimes it just works out based on the footage you’ve got.