File size: 946 Bytes
8e6f2c8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/*
app.post("/run/:model", async (req, res) => {
    const { model } = req.params;
    const url = req.query.url;

    const path = await audioContent(
        "https://pub-dbcf9f0bd3af47ca9d40971179ee62de.r2.dev/02f6edc0-1f7b-4272-bd17-f05335104725/audio.mp3"
    );
    if (!path) {
        return res.status(500).json({ error: "Failed to download audio file" });
    }
    try {
        const audioBytes = fs.readFileSync(path);
        const audioBase64 = Buffer.from(audioBytes).toString("base64");
        const inputData = { audio: audioBase64 };
        const response = await axios.post(`${API_BASE_URL}${model}`, inputData, { headers });
        return res.json(response.data);
    } catch (error) {
        console.error("Error making API request:", error.message);
        return res.status(500).json({ error: error.message });
    } finally {
        if (fs.existsSync(path)) {
            fs.unlinkSync(path);
        }
    }
});
*/