Live data from Hacker News

Viewing profile — sohamrj

sohamrj

HN member
Joined
Mon, Jan 05, 2026, 1:23 AM UTC
HN karma
170
Public activity
25 items

About sohamrj

No profile information was provided.

Recent public activity

  1. story
  2. comment
    Comment #48462704

    Does this work reliably? Don't ChatGPT, Gemini, etc. change up their DOMs frequently and use bot detection to prevent this exact use case?

  3. story
  4. story
  5. story
  6. comment
    Comment #47587873

    Last week, I posted SentrySearch, a CLI for semantic video search using Gemini's embedding API. The #1 request was local model support. Turns out Qwen3-VL-Embedding can natively em…

  7. story
  8. story
    Show HN: Local video search with Qwen3-VL: no API, runs on Apple Silicon, GPUs

    Last week, I posted SentrySearch, a CLI for semantic video search using Gemini's embedding API. The #1 request was local model support. Turns out Qwen3-VL-Embedding can natively em…

  9. comment
    Comment #47517675

    ur not wrong

  10. comment
    Comment #47512341

    haha no i'm driving the tesla and that clip is from the left repeater camera (teslas record from all around the car)

  11. comment
    Comment #47512061

    you're right that the code uses ffmpeg to downsample the chunks to 5fps before sending them, but that's only a local/bandwidth optimization, not what the api actually processes. re…

  12. comment
    Comment #47510466

    yea, it's so events on a chunk boundary still get captured in at least one chunk. i haven't had the chance to do formal benchmarks on overlap vs. no-overlap yet. the 5s default is …

  13. comment
    Comment #47510383

    dashcam is just one of the use cases and the one i tested on. but this could theoretically work with any kind of video footage like home security footage

  14. comment
    Comment #47508356

    Yeah, this is a great idea, I’ve actually been thinking about exactly this as the next logical step. SentrySearch already returns precise in/out timestamps for any natural-language…

  15. comment
    Comment #47508195

    I've found I have to be very specific to get the clip I'm searching for. For example, "car cuts me off" just returned a clip of a car driving past my blindspot. But, "car with bike…

  16. comment
    Comment #47507205

    Thanks! Yeah that would be pretty cool, but continuous indexing would be pretty expensive now, because the model's in public preview and there are no local alternatives afaik. This…

  17. comment
    Comment #47507132

    Totally valid concern. Right now the cost ($2.50/hr) and latency make continuous real-time indexing impractical, but that won't always be the case. This is one of the reasons I'd w…

  18. comment
    Comment #47506358

    Not aware of any that do native video-to-vector embedding the way Gemini Embedding 2 does. There are CLIP-based models (like VideoCLIP) that embed frames individually, but they don…

  19. comment
    Comment #47506303

    Yes to both. The embedding is over raw video frames, so anything visible (text, signs, captions) gets captured in the vector. And Gemini Embedding 2 extracts the audio track and em…

  20. comment
    Comment #47505572

    dashcam and home security footage are the 2 main ones i can think of. a bit expensive right now so it's not as practical at scale. but once the embedding model comes out of public …

  21. comment
    Comment #47505369

    as of now, no threshold but that is planned in the future. for example, for now if i search "cybertruck" in my indexed dashcam footage, i don't have any cybertrucks in my footage, …

  22. comment
    Comment #47505271

    gemini embedding 2 converts straight video to vectors. in this case, dashcam clips don't have audio to transcribe and even if they did, it would be useless in the search

  23. story
    Show HN: Gemini can now natively embed video, so I built sub-second video search

    Gemini Embedding 2 can project raw video directly into a 768-dimensional vector space alongside text. No transcription, no frame captioning, no intermediate text. A query like "gre…

  24. story
  25. story
    Show HN: SentrySearch – Semantic search over dashcam footage

    I built a semantic search CLI for dashcam footage using Gemini Embedding 2's native video embedding. The interesting part: Gemini Embedding 2 projects raw mp4 video directly into t…