Pan's Labyrinth, 2006 - ★★★★½

This is the third or the fourth time I watched this movie. It's the first movie by Guillermo del Toro I've seen, and it's masterpiece.
A fairy tale fit for grownups, you won' find a happy ending here (well, kind of, depending on your angle) - it's full of magic and symbolism. There's not much to say about this movie that won't spoil the magic of watching it for the first time, so I won't attempt to do so. Go watch it.
Happy Thanksgiving everyone! 🦃😁
Not a lot going on at work today, so I decided to borrow one of our old Windows machines and set it up as a remote workstation. Installed all the Office updates, synced Edge, RSAT, PowersShell 7.1, other good stuff. Now to document everything… But first, a nap. 😴
Now I really want to play this game. Want to wait for them to patch it first, I’m hearing it has too many bugs.
Christmas brain washing needs to stop.
I can’t block stores from blasting Christmas music into my ears or prevent game studios from updating a game with a patch that forces me to watch a Christmas-related intro clip.
I don’t even celebrate it. It’s not December yet. What happened to TG. Go away 😡
The flow of followers on Bluesky doesn’t stop. It’s about to double from the start of the week. Just wish I knew how to turn off now follower notifications on my Android.
greatly reduce video file sizes
For my personal journal videos (which I call jvids for short), the quality is not important since it’s just me talking. I could just get rid of the video, but it doesn’t feel as “real.”
A 10-minute HD video recording on an iPhone can take close to a gig. This method compresses the videos to around 50MB MP4 files, even more if I want to. I use the iPhone directly or as a Continuity Camera with my Mac and Photobooth, but you can use a webcam or whatever other means you’d like.
Run ffmpeg like so1:
ffmpeg -i input.mov -filter:v scale=640:-1 -crf 30 -c:a copy .\output.mp4
Where:
-filter:v: we’re telling FFMPEG the next option is going to be a video filter
scale=640:1: the video filter - this tells FFMPEG to give me the width of 640 pixels, and it will figure out the right ratio for height. This greatly helps reducing the size, but noticeably lowering the quality. For my own talking head, this is fine.
-CRF 30: this is the compression ffmpeg uses, from 0 to 51. The default (if you don’t specify CRF) is 20 for the default codec. I want to shrink it a bit further, so I go for 30.
-c:a copy as for the audio codec, no compression and no conversion, use as is, make a copy
Gotcha:
1 Notice that 640, while being a nice resolution, doesn’t work well for videos recorded on phones. To quickly get something that works, divide the width by 2 and use that number; it will still reduce it greatly.
Big city lights 📷
This spot is calling my name 📷
I think my Apple Watch is making me tired.
I usually wake up at around 5:30-6:00 in the morning, and if my watch says I slept under 6 hours, I get tired immediately as if by a spell and think “actually, I’m quite tired.” This is all psychological.