Rebrand PodcastYes -> Podcast Distribution AI (podcastdistributionai.com)

This commit is contained in:
Leon Serfaty
2026-06-20 20:12:43 -04:00
parent 3ad90f076f
commit 4fb2645db1
38 changed files with 94 additions and 93 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ export async function stitchMp3(
): Promise<{ data: Buffer; durationSec: number | null }> {
if (segments.length === 0) throw new Error("No audio segments to stitch");
const dir = await fs.mkdtemp(path.join(os.tmpdir(), "podcastyes-"));
const dir = await fs.mkdtemp(path.join(os.tmpdir(), "podcast-distribution-ai-"));
try {
const files: string[] = [];
for (let i = 0; i < segments.length; i++) {