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.
This has been quite a week… 📷
Raining all day with temperatures of 39-38. It is not a good day to walk between several offices and move a bunch of computers and equipment. Much rather stay in and play video games.
I’m starting to get a few more followers from Bluesky. It’s not even a tiny fraction of the interaction on Mastodon, but it’s enough to make me update my About section there and point people to Microblog 😛