chez Tracey Jaquith

Welcome to Tracey's little nest on the internets!
This site is a hybrid of normal pages (see navigation above) and blog entries (see below).
I'm into software, video, and time-lapse photography.

Happiness: JSON CSS PHP5 ffmpeg yoga (secular) Buddhism Our extra fluffy kitties of luff
My future fantasy clothing line site: très-sie.com


Now, let's start the show...

decaf! Honda CB400A automatic cafe racer. I’ve been a bad girl today….

Today Hunter helped me inspect, test-drive, buy, and drive 100+ miles home from a mom-n-pop custom bike modifier in California’s central valley.

We avoided the 5 and all freeways and started out with about an hour of “country roads” and farm roads that were mostly straight and flat. Next we nearly ran out of gas but recovered thanks to the “reserve switch” to fillup in Tracy. Finally, we started the fun curvy and up-and-down stuff through the northwest backside of Mt. Diablo and had a late lunch in Clayton. We wrapped it up through Moraga, and then our favorite twisty mountain pass up Pinehurst to Skyline Blvd and home

What an wild day!

I’ve named her “decaf” since she’s an automatic (with just “lo” and “hi” gears, no clutch) *and* a cafe racer style modified bike. I’m really pleased she did so well on the first ambitious ride all the way home.

Here’s some bike porn / pix!

20121013-200557.jpg

20121013-200621.jpg

20121013-200645.jpg

Posted in biking, culture, pictures | Tagged , | Leave a comment

fun with TV archive and mozilla popcorn.js and butter

this is just a basic demo of some TV News clips on a Popcorn.js timeline, etc.

Posted in culture, video | Tagged , , , , , , | Leave a comment

Friday beer options

Friday night dilemnas

20120921-195648.jpg

These are organized by % Alcohol, guess the direction, Beer Connoisseur!

Posted in culture, pictures | Leave a comment

Shuttle Endeavour flies by us by Golden Gate today *twice*

20120921-191029.jpg

Goodbye Little machine that could and dream of my youth!

Posted in culture, pictures | Tagged , , , , , | Leave a comment

On to rafting adventure long weekend via Salt Lake

20120906-171006.jpg

Posted in pictures, vacation | Leave a comment

Luke Battling Darth — ASCII green

Luke Battling Darth -- ASCII!

luke battling darth
famous painting by ralph mcquarrie
to ascii by “jp2a” pkg and de pooh
(and now green/black — these things are important ;-)

Posted in pictures | Tagged , , | Leave a comment

convert yuvj420p to yuv420p (chrome playable!) mp4 video (eg: canon/nikon video)

hooray!

found a nice (video lossless, best i can tell) way to convert the video from cameras like my Canon ELPH SD1400,
which is *already* h.264 video + PCM mono audio

to a new mp4 container with aac audio. that part’s easy/cake w/ ffmpeg — but the trick to get the h.264
video part to play in chrome browser and/or with a flash plugin is to get the flagged “yuvj420p” colorspace pixels
to be considered “yuv420p”. it seems like the former is >= 8 bits-per-pixel and has a range wider than the 256 values;
while the later is 8 bit per pixel. ( brief info/notes/background )

at any rate, finally found this nice post:

https://blendervse.wordpress.com/2012/04/02/waiving-the-fullrange-flag/

which refers to this modified MP4Box/gpac tree, to switch the “fullrange” color-related flag off:
https://github.com/golgol7777/gpac

and then, voila! i have a nice little script where i can convert my canon ELPH videos to a html5 video tag and flash plugin compatible mp4:


#!/bin/bash -ex

IN=${1:?"Usage: [input video] [output video]"};
OUT=${2:?"Usage: [input video] [output video]"};

# make a hacked version of "mp4box" that can toggle a colorspace-related flag in our video!
if [ ! -e $HOME/scripts/mp4box ]; then
(git clone https://github.com/golgol7777/gpac.git && cd gpac) || \
( cd gpac && git reset --hard && git clean -f && git pull && git status );

./configure --enable-pic --static-mp4box --enable-static-bin
make -j4;

# bonus points: make a *static* binary so if we change linux/OS versions, dont hafta worry!
cd applications/mp4box;
gcc -o $HOME/scripts/mp4box -static main.o filedump.o fileimport.o live.o -L../../bin/gcc -lgpac_static -lm -lpthread -ldl -lz
fi

# demux
ffmpeg -y -i "$IN" -an -vcodec copy video.mp4;
ffmpeg -y -i "$IN" -vn -acodec copy audio.wav;

# convert yuvj420p to yuv420p the cheater way (for chrome and flash plugin playback!)
rm -fv tmp.mp4;
$HOME/scripts/mp4box -add video.mp4#:fullrange=off tmp.mp4

# convert wav audio to aac
ffmpeg -y -i tmp.mp4 -i audio.wav -acodec libfaac -ac 1 -ab 256k -vcodec copy t2.mp4;
qt-faststart t2.mp4 "$OUT";
rm -fv video.mp4 audio.wav t2.mp4 tmp.mp4;

Posted in video | Tagged , , , , , | Leave a comment

Luke Battling Darth — ASCII!

Luke Battling Darth -- ASCII!

luke battling darth
famous painting by ralph mcquarrie
to ascii by “jp2a” pkg and de pooh

Posted in pictures | Tagged , , | Leave a comment

fun bootie mashup dance mix

30 songs, 15 picked from 2011 Merry Xmash show Bootie did at DNA Lounge in San Francisco

Enjoy!

Posted in Uncategorized | Tagged , | Leave a comment

google maps upgrades to 8-bit “hi-res” today 8-)

Santa Monica never looked so beautiful!

Posted in pictures | Tagged | 1 Comment

deinterlacing 2323 telecine video into fields for visual analysis

Having some challenging fun working on trying to deinterlace some toughie clips
from my brother’s upcoming feature film.

His camera recorded in 24fps (24000/1001 to you fellow geeks 8-) and smartly
did a “2323″ writing/stretching of it to 60i (60 half-frames).
After correcting back to 24fps progressive most of his clips, he’s found ~10-20%
are not able to be put back together visually properly even with CineTools
and manually specifying the “cadence” and sequence starting frames, etc…

I started with code that I wrote to take a small segment of a video
and split the interlaced frames into 1/2 height “fields” and then drop them
down to grayscale to compare them all to each other to find the best matches
(to verify the cadence is right and/or the fields aren’t “off by 1″, etc..)

It uses mplayer and ImageMagick (“convert” and “compare”) for pretty high-quality
extraction of frames from the source video into the 1/2 height “fields”.

So I just do about 0.3 seconds to get 10 frames, and thus 20 1/2 frame fields for analyzing.
It will output the best matches of frames. For example:

php lacer.php good.mov 0.5 0.8

I then extended it into a web page (screenshot above, where I’m left-shifting one field by 4 pixels for visual inspection)
PHP script <== try it out online! (source)
that uses some CSS cleverness (clip property is your BFF!) to interlace together a pair of fields.
It supports:

  • field swapping (move one 1/2 image to be the 1st, 3rd, 5th, etc. lines — if it was
    previously the 2nd, 4th, 6th, etc. lines)
  • left and right shifting a field
  • pairing arbitrary fields
  • showing a “raw” 60i telecined sequence
  • showing the 60i sequence as a “deinterlaced” 24P sequence
Posted in video | Tagged , , , | Leave a comment

my town, 1947 style!

Our amazing next door neighbor, Reenie Raschke, the super talented photographer has lovingly chronicled our town in a black-and-white pictorial called “My Town Montclair“.

We saw her present slides and background from her book last night at our local indie bookstore. She passed around this gem of an original 60+ year old newspaper showing our downtown as it was!

20120210-211412.jpg

Posted in culture | Tagged , , , | Leave a comment

iphone and external mic sennheiser mke 400 can rule the galaxy!

20120121-005805.jpg

a very small galaxy

Posted in video | Tagged , , | Leave a comment

natively compiling ffmpeg, mplayer, mencoder on MacOS Lion (with x264!)

OK, I’ve revamped my script to compile these tools:
ffmpeg
ffrobe
qt-faststart
mplayer
mencoder

on MacOS Lion, using the heads of the trees, with direct encoding support for:
x264
vpx / WebM

http://www.archive.org/~tracey/downloads/macff.sh.txt

A nice recent update to ffmpeg is the ability to decode/read Apple ProRes, too!

Posted in video | Tagged , , , , | 1 Comment

camaro 0 to 60 test

2012 Camaro V6 Transformers Edition “Bumblebee”

Hunter and I had some fun out in the east east Bay and gorgeous farmland countryside seeing how my little ‘Bee can buzz!

Not super sophisticated Ms. Driver — but still lotsa fun and sorta exciting to poach a street for some two-camera iPhone pseudo-documentary…

Posted in video | Tagged , , | Leave a comment

Cute Scion IQ coming to states

Hunter and I hit the SF auto show before Thanksgiving.
Aside from the obvious super car perfections to like (eg: Ferrari 458 Italia) this was my favorite. I love little cutie-pie everything….
20111125-133955.jpg

Posted in pictures | Tagged | 1 Comment

bitchn camaro

i um, got a new toy. it actually *is* the transformers special edition. so if i wake up early some morning and surprise it still in its crimefighting autobot mode…

Posted in pictures | Tagged , | Leave a comment

Birthday Hike

20111103-172515.jpg

Posted in pictures | Tagged | Leave a comment

domain change

same great space, new shorter url

dumbbunny.org ==> dePooh.com

 

Posted in website | Leave a comment

Laundry for The Empire

20111027-185327.jpg

Should be a fun Halloween!

(they don’t come in black, as pictured 8-)

Posted in pictures | Tagged , | Leave a comment