creates video voice memos from audio clips; with bluesky integration.
trill.ptr.pet
1## trill
2
3a webapp that converts voice memos into videos, ready for posting on bluesky (or perhaps elsewhere!).
4it lets you upload audio files or record directly from the microphone, and automatically generates a
5video using your profile picture.
6
7built with [solidjs](https://solidjs.com) and vite. uses [park-ui](https://park-ui.com) for components and [atcute](https://tangled.org/mary.my.id/atcute) for atproto interactions.
8
9see [trill.ptr.pet](https://trill.ptr.pet) for a hosted instance.
10
11### usage
12
131. upload a voice memo or record one.
142. it will automatically be converted to a video.
153. (optional) add an account to enable bluesky integration.
16
17### running
18
19#### with nix
20
21- build the project: `nix build .#memos`
22- enter the dev shell: `nix develop`
23
24#### manually
25
26you'll need deno.
27
28```bash
29deno install && panda codegen
30deno task dev # or deno task build
31```