We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was trying to make a request to the api using nodejs express but it does not return anything and it times out my code:
mport express from 'express'; import axios from 'axios'; import { TextEncoder } from 'util'; import fs from 'fs'; import path from 'path'; const ENDPOINT = 'https://tiktok-tts.weilnet.workers.dev'; const text = 'hello baby'; const voice = "en_us_ghostface" axios({ method: 'post', url: `${ENDPOINT}/api/generation`, headers: { 'Content-Type': 'application/json', }, data: { text: text, voice: voice, }, }) .then((response) => { // Handle successful response response.data.pipe(fs.createWriteStream('audio.mp3')); }) .catch((error) => { // Handle error console.error(error); });
The text was updated successfully, but these errors were encountered:
This example worked:
import axios from "axios"; import fs from "fs"; const ENDPOINT = "https://tiktok-tts.weilnet.workers.dev"; const text = "hello baby"; const voice = "en_us_ghostface"; axios({ method: "post", url: `${ENDPOINT}/api/generation`, data: { text, voice }, headers: { "Content-Type": "application/json", }, }) .then((response) => { const { data } = response.data; const buffer = Buffer.from(data, "base64"); fs.writeFileSync("./audio.mp3", buffer); }) .catch((error) => { console.error(error); });
Sorry, something went wrong.
No branches or pull requests
I was trying to make a request to the api using nodejs express but it does not return anything and it times out
my code:
The text was updated successfully, but these errors were encountered: