HackerTrans
トップ新着トレンドコメント過去質問紹介求人

ldenoue

237 カルマ登録 17 年前
Building web, iOS and macOS apps at https://www.appblit.com

投稿

Show HN: PDF reflow in the browser with local AI model

appblit.com
6 ポイント·投稿者 ldenoue·5 日前·4 コメント

Show HN: Pocket TTS running in (mobile) Safari

ldenoue.github.io
1 ポイント·投稿者 ldenoue·2 か月前·0 コメント

Show HN: YouTube and Apple Podcast Transcripts

appblit.com
1 ポイント·投稿者 ldenoue·3 か月前·0 コメント

Show HN: VoiceView – Instant Audio Overviews (web, YouTube, pdf, X articles)

voiceview.app
1 ポイント·投稿者 ldenoue·4 か月前·1 コメント

ShowHN: YouReadTube

youreadtube.com
5 ポイント·投稿者 ldenoue·7 か月前·6 コメント

コメント

ldenoue
·5 日前·議論
Not yet. for now this one from Alessandro works well: https://huggingface.co/Armaggheddon/yolo26-document-layout

Converted to ONNX of course, and also CoreML for the iOS app. I haven't yet tried on Android. Does it work for you if you have an Android phone?
ldenoue
·5 日前·議論
this app runs entirely in your browser. thanks to Codex, it now uses a YOLO detector using ONNX to detect regions in each rendered PDF page image (text, pictures, formulas, tables). based on this analysis, PDF Reflow then cuts out TEXT regions into tiny little word images and adds back the original text from the PDF (when available) so you can still select and find text in the reflowed HTML render.

Hope you find this useful. The original version used heuristics, but frankly it was breaking on many more PDF that I'd want to admint.

This new AI-based version that uses a YOLO detector trained specifically on Doc Layout dataset seems to do a very very good job.
ldenoue
·26 日前·議論
Cooking a local AI version of PDF Reflow to show PDFs on mobile and keep all the look and feel (font, formulas, pictures, tables) yet formatted for a smaller screen.

It’s using a local YOLO detector trained specifically on detection pdf page regions.

https://www.appblit.com/pdfreflow

The old version works and has many users who love it to read scientific papers, but its heuristics based and was in my opinion failing on edge cases that this new AI approach solves.
ldenoue
·3 か月前·議論
I created QuickScre because I wanted a no editing way of recording polished screen recordings for Slack etc. Free to try https://www.appblit.com/quickscreen
ldenoue
·3 か月前·議論
I recently released QuickScreen give it a try for free https://www.appblit.com/quickscreen and one time purchase for $7.99 lifetime
ldenoue
·4 か月前·議論
I grew tired of endless YouTube videos, X articles or web articles. So this app lets you open any link and you instantly get an AI summary + brief about the content.

(It's free up to 20 articles because there are real costs: I use Gemini to summarize the pages you open)

AI voices run locally on your iPhone/iPad (web extension version coming soon).

When you find something useful, you can share the overviews online (free hosting), e.g. https://voiceview.app/a/2J49UnwK

Hope this helps cut the noise and help folks save time.

Laurent
ldenoue
·7 か月前·議論
It doesn't have to be. You can configure your bot to great the user. E.g. "Aleksandra is not available at the moment, but I'm her AI assistant to help you book a table. How may I help you?"

So you're telling the caller that it is an AI, and yet you can have a pleasant background audio experience.
ldenoue
·7 か月前·議論
I don't but I should open source this code. I was trying to sell to OEM though, that's why. Are you interested in licensing it?
ldenoue
·7 か月前·議論
I am not using speech to speech APIs like OpenAI, but it would be easy to swap the STT + LLM + TTS to using Realtime (or Gemini Live API for that matter).

OpenAI realtime voices are really bad though, so you can also configure your session to accept AUDIO and output TEXT, and then use any TTS provider (like ElevenLabs or InWord.ai, my favorite for cost) so generate the audio.
ldenoue
·7 か月前·議論
Check out something like LayerCode (Cloudflare based).

Or PipeCat Cloud / LiveKit cloud (I think they charge 1 cent per minute?)
ldenoue
·7 か月前·議論
Yes DO let you handle long lived websocket connections. I think this is unique to Cloudflare. AWS or Google Cloud don't seem to offer these things (statefulness basically).

Same with TTS: some like Deepgram and ElevenLabs let you stream the LLM text (or chunks per sentence) over their websocket API, making your Voice AI bot really really low latency.
ldenoue
·7 か月前·議論
I built a voice AI stack and background noise can be really helpful to a restaurant AI for example. Italian background music or cafe background is part of the brand. It’s not meant to make the caller believe this is not a bot but only to make the AI call on brand.
ldenoue
·7 か月前·議論
The problem with PipeCat and LiveKit (the 2 major stacks for building voice ai) is the deployment at scale.

That’s why I created a stack entirely in Cloudflare workers and durable objects in JavaScript.

Providers like AssemblyAI and Deepgram now integrate VAD in their realtime API so our voice AI only need networking (no CPU anymore).
ldenoue
·7 か月前·議論
I developed a stack on Cloudflare workers where latency is super low and it is cheap to run at scale thanks to Cloudflare pricing.

Runs at around 50 cents per hour using AssemblyAI or Deepgram as the STT, Gemini Flash as LLM and InWorld.ai as the TTS (for me it’s on par with ElevenLabs and super fast)
ldenoue
·7 か月前·議論
Would be useful to get a preview of the code
ldenoue
·7 か月前·議論
Which browser and computer ?
ldenoue
·7 か月前·議論
YouReadTube is the new name because it’s easier to remember and also insert “read” on any YouTube link
ldenoue
·7 か月前·議論
In browser transcript beautification using a mix of small models (Bert, all-MiniLM-L6-v2 and T5) for restoring punctuation, finding chapter splits and generating the headers.