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 9### usage 10 111. upload a voice memo or record one. 122. it will automatically be converted to a video. 133. (optional) add an account to enable bluesky integration. 14 15### running 16 17#### with nix 18 19- build the project: `nix build .#memos` 20- enter the dev shell: `nix develop` 21 22#### manually 23 24you'll need deno. 25 26```bash 27deno install && panda codegen 28deno task dev # or deno task build 29```