Skip to content

Commit 08b365e

Browse files
author
minhnq
committed
docs: update readme, policy
1 parent 6faa7fc commit 08b365e

3 files changed

Lines changed: 8 additions & 1 deletion

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Free online developer tools. No signup required, 100% client-side processing for
1616
| **Image Uploader** | Upload images and get shareable links | S3/R2 |
1717
| **File Transfer** | Share any file with expiring download links | S3/R2 |
1818
| **Time Capsule** | Lock files until a future date | S3/R2 |
19+
| **Speech to Text** | Transcribe audio with word-level timestamps and seek | Server (Deepgram) |
1920
| **ANeko Builder** | Create custom skins for ANeko Reborn Android app | Client-side |
2021
| **Anonymous Chat** | Real-time public chat with random usernames | PostgreSQL |
2122

@@ -109,6 +110,9 @@ S3_ACCESS_KEY=
109110
S3_SECRET_KEY=
110111
S3_BUCKET=
111112
113+
# Deepgram API Key (for Speech to Text)
114+
DEEPGRAM_API_KEY=
115+
112116
# Server Port
113117
PORT=3001
114118
```

src/app/layout.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const lexendMega = Lexend_Mega({
1111

1212
const siteConfig = {
1313
name: "DevTools",
14-
description: "Free online developer tools: Subdomain Scanner, OTP Generator, Base64 Converter, JSON Server, Webhook Tester, Image Uploader, File Transfer, Time Capsule, ANeko Builder, and Community Chat. No signup required.",
14+
description: "Free online developer tools: Subdomain Scanner, OTP Generator, Base64 Converter, JSON Server, Webhook Tester, Image Uploader, File Transfer, Time Capsule, Speech to Text, ANeko Builder, and Community Chat. No signup required.",
1515
url: process.env.NEXT_PUBLIC_BASE_URL || "http://localhost:3000",
1616
};
1717

@@ -35,6 +35,8 @@ export const metadata: Metadata = {
3535
"file transfer",
3636
"file sharing",
3737
"time capsule",
38+
"speech to text",
39+
"audio transcription",
3840
"ANeko skin builder",
3941
"free online tools",
4042
"privacy tools",

src/app/policy/page.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ export default function PolicyPage() {
4646
<li><strong>Time Capsule:</strong> Files and messages are encrypted and stored on our servers until the unlock date. After unlocking, data may be deleted after a period of inactivity.</li>
4747
<li><strong>ANeko Builder:</strong> All skin editing happens 100% locally in your browser. We do not upload or store any of your skin files.</li>
4848
<li><strong>Anonymous Chat:</strong> Messages are stored in our database and kept for a limited time. Random usernames are generated and saved in your browser for session continuity. Chat is public and visible to all users.</li>
49+
<li><strong>Speech to Text:</strong> Audio files you upload are temporarily stored on our servers for transcription using Deepgram API. Audio and transcripts are automatically deleted after 1 hour. We do not use your audio for any other purpose.</li>
4950
</ul>
5051

5152
<h3>2. Analytics</h3>

0 commit comments

Comments
 (0)