HackerLangs
TopNewTrendsCommentsPastAskShowJobs

meerab

no profile record

Submissions

[untitled]

1 points·by meerab·2 mesi fa·0 comments

Ask HN: How to generate flipbook-style animations from video?

2 points·by meerab·8 mesi fa·2 comments

comments

meerab
·25 giorni fa·discuss
[dead]
meerab
·mese scorso·discuss
Read 'The lean startup' - it has shaped the way I think about building products!

With big companies with large budgets bulldozing smaller players - any advice on finding a niche that is worth pursuing?
meerab
·3 mesi fa·discuss
Congrats on shipping this!

I went down the same path for videotobe.com, fully client-side with ffmpeg.wasm, and it fell over on longer videos. The memory ceiling and encode times pushed me to a cloud processing pipeline.

You've managed to solve both, the WebCodecs plus Pixi plus ffmpeg.wasm split looks like the right decomposition in hindsight.I processed 3+ hrs of media using VidStudio and it held up. Nicely done!
meerab
·4 mesi fa·discuss
You stop paying for ads and the product link disappears. Reason why founders tend to go for reddit is because it gets indexed by Google and LLMs and the link gets 'preserved'.

What is your experience in stickiness of users after acquisition via Ad? Given crack down by reddit mods for posting links - I am considering just buying ads.
meerab
·4 mesi fa·discuss
We run a similar setup in production at VideoToBe – FFmpeg inside Cloudflare Containers with R2 mounted as a local filesystem via FUSE (tigrisfs).

On the debate about Cloudflare vs Fly vs spot instances – for bursty, infrequent workloads that already use R2 for storage, Containers are a natural fit.

The container accesses R2 over Cloudflare's internal network, so files never hit the public internet.

Check out our implementation - https://videotobe.com/blog/how-we-process-video-with-cloudfl...

(The main difference is we don't use Cloudflare Queues in conjunction with Cloudflare Containers. You can set max_instances to your desired settings to process parallel requests.)
meerab
·4 mesi fa·discuss
Spot on. This tweet will go down in history — right next to Jack's first tweet. We all understand businesses require difficult decisions. This is one of the best layoff letters I've seen. Short, honest, and human.
meerab
·5 mesi fa·discuss
This is a greatly researched article, and the site is just awesome!

Kanchipuram Saree has a rich history, and I learned so much more by reading this article.

I am intrigued by the Kanchipuram saree and have dreamed about owning one. The digital ledger is a unique idea – if authenticity is established, it would be easy to invest in this as art piece.
meerab
·5 mesi fa·discuss
I'm working on VideoToBe — a audio and video Transcription service with an AI chat layer. Whisper for transcription, then you can chat with your recordings instead of rewatching.

Also building simple tools for simple task such as converting audio-to-video to post on youtube and more for business users who find Premiere/Final Cut overkill for basic tasks. videotobe.com
meerab
·7 mesi fa·discuss
VideoToBe.com - Transcription & Chat for Audio/Video (board meetings, lecture notes, churches summons etc.)

Started as Pay-per-use service (upload the file and receive an email with transcript). Now we also offer subscription based service for media library, AI summaries, chat Q&A, insights/highlights.

Makes between $200 to $600 per month.

https://videotobe.com

Tips for sub growth in transcription space?
meerab
·7 mesi fa·discuss
It is up now!
meerab
·7 mesi fa·discuss
Please don’t get a dog just because you’re having an existential crisis. Dogs are lifelong responsibilities.
meerab
·8 mesi fa·discuss
Thank you! It certainly looks like Rotoscoping.

And EbSynth looks amazing! I wonder what model/tech will track the moment so well!
meerab
·9 mesi fa·discuss
I use a two-pass approach - first pass with ASR (OpenAI Whisper) and second pass with an LLM. I ask users to provide context upfront and use that as the "initial_prompt" parameter in Whisper: https://github.com/openai/whisper/discussions/963#discussion...

Gemini might have similar capabilities for custom vocabulary, though I'm not certain about their specific implementation. The two-pass ASR+LLM approach could work with Gemini's output as well.
meerab
·9 mesi fa·discuss
Working on https://videotobe.com a audio/video transcription service. VideoToBe started as a user friendly Whisper wrapper — but is evolving into a full pipeline that extracts, summarizes, and structures insights from multimedia content.
meerab
·9 mesi fa·discuss
I created transcript for it for anyone wanting to read instead of listen!

https://videotobe.com/play/youtube/hS1YqcewH0c
meerab
·10 mesi fa·discuss
My actual time breakdown as a solo developer:

10% Daily time to learn about various AI tools and improve my workflow.

20% Procrastination (this might be way more than what I'm willing to accept. But this is HN, I want to appear smart )

20% Writing detailed description of features and breaking down task lists, writing acceptance tests.

20% AI Coding (Claude Code)

20% Testing + Production
meerab
·10 mesi fa·discuss
Personal opinion:

Claude code is more user friendly than cursor with its CLI like interface. The file modifications are easy to view and it automatically runs psql, cd, ls , grep command. Output of the commands is shown in more user friendly fashion. Agents and MCPs are easy to organized and used.
meerab
·10 mesi fa·discuss
Yes. /init will initialize the project and save initial project information and preference.

Ask Claude to update the preference and document the moment you realize that claude has deviated away from the path.
meerab
·10 mesi fa·discuss
I am working on VideoToBe.com - and my stack is NextJS, Postgresql and FastAPI.

Claude code is amazing at producing code for this stack. It does excellent job at outputting ffmpeg, curl commands, linux shell script etc.

I have written detailed project plan and feature plan in MarkDown - and Claude has no trouble understanding the instructions.

I am curious - what is your usecase?
meerab
·10 mesi fa·discuss
I have barely written any code since my switch to Claude Code! It's the best thing since sliced bread!

Here's what works for me:

- Detailed claude.md containing overall information about the project.

- Anytime Claude chooses a different route that's not my preferred route - ask my preference to be saved in global memory.

- Detailed planning documentation for each feature - Describe high-level functionality.

- As I develop the feature, add documentation with database schema, sample records, sample JSON responses, API endpoints used, test scripts.

- MCP, MCP, MCP! Playwright is a game changer

The more context you give upfront, the less back-and-forth you need. It's been absolutely transformative for my productivity.

Thank you Claude Code team!