Spaces:
Running
Running
File size: 1,767 Bytes
afb9f5f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Audio - ClosedToOpen</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav class="navbar">
<div class="nav-content">
<h1 class="nav-title">ClosedToOpen</h1>
<p class="nav-subtitle">how to stop relying on proprietary APIs for AI and start living freely</p>
</div>
</nav>
<main class="main-content">
<div class="breadcrumb">
<a href="index.html">β Back to Migration Guides</a>
</div>
<section class="topic-header">
<h1 class="topic-title">Audio</h1>
<p class="topic-description">Process and generate audio content with open-source models instead of proprietary APIs</p>
</section>
<section class="recipes-section">
<h2 class="section-title">Recipes</h2>
<div class="recipes-grid">
<div class="recipe-card">
<h3>Whisper API β Whisper.cpp</h3>
<p>Replace OpenAI's Whisper API with local Whisper implementation for speech-to-text</p>
<div class="recipe-status">Coming Soon</div>
</div>
<div class="recipe-card">
<h3>Text-to-Speech β Bark</h3>
<p>Generate natural speech using Bark instead of proprietary TTS services</p>
<div class="recipe-status">Coming Soon</div>
</div>
<div class="recipe-card">
<h3>Audio Classification</h3>
<p>Classify audio content using open-source models</p>
<div class="recipe-status">Coming Soon</div>
</div>
<div class="recipe-card">
<h3>Music Generation</h3>
<p>Generate music and audio content with open models</p>
<div class="recipe-status">Coming Soon</div>
</div>
</div>
</section>
</main>
</body>
</html>
|