Seperate MP3's into Vocals / drums / bass / piano / other

FREEMIUM
Por Philipp Sponsel | Actualizada il y a 10 jours | Artificial Intelligence/Machine Learning
Popularidad

8.2 / 10

Latencia

578ms

Nivel de servicio

100%

Health Check

8%

Volver a todas las conversaciones

Upload Success, but Job Not found

Rapid account: Ga 2006467270
ga2006467270
il y a un mois

hello, I had already spend two day working on this api, and I don’t know why that I can’t work on my side, I use Node.js create a ESMODULE server, and use fetch to upload the file.
I had try every thing I can and I record a video about what I currently stuck on,
I can upload the file , and I’m sure that I upload the correct file to the server, but the result is not what I expected, pls take a look and leave some common, thanks!

ps: the mp3 file I use in the video works fine when I manually use it on rapidapi, but I can’t use it neither “upload in javscript” or use “localPath in NodeJS”

https://drive.google.com/file/d/1i_RduXQzm6TvfZrWRFmCYKUGMmuxlqku/view?usp=sharing

Rapid account: Info N Yoe I 8 QKZ
info-nYoeI8QKZ Commented il y a 10 jours

Hello Customers!

i have investigated the Issue and this seems unfortunatley to be a problem on RapidAPI’s end. I have already contacted them and i am waiting for an solution!

I will update this conversation as soon as i get new updates.

Thank you very much for your understanding and paicence,

Best Wishes
Philipp Sponsel

Rapid account: Abdullahgoldline
abdullahgoldline Commented il y a 12 jours

Hello, I just purchased your product. I am also facing similar problem of getting 404 error when using c# code, but everything works fine from the rapidapi.com website.

My code:

            RestClient client = new RestClient("https://seperate-mp3-s-into-vocals-drums-bass-piano-other.p.rapidapi.com");

            string audioFile = @"FileDirectoryPath\output-audio_normal.mp3";
            string boundary = "---011000010111000001101001";
            FileInfo fileToUpload = new FileInfo(filePath);
            string jobCode = "";
            var request = new RestRequest("/cu/new_job", Method.PUT);
            request.AddHeader("x-rapidapi-key", "myKey");
            request.AddHeader("x-rapidapi-host", "seperate-mp3-s-into-vocals-drums-bass-piano-other.p.rapidapi.com");
            request.AddHeader("Content-Type", "multipart/form-data; boundary=" + boundary);
            request.AddParameter("multipart/form-data; boundary=" + boundary, "--" + boundary + "\r\nContent-Disposition: form-data; name=\"mp3\"; filename=\"" + fileToUpload.Name + "\"\r\nContent-Type: audio/mpeg\r\n\r\n\r\n--" + boundary
                + "\r\nContent-Disposition: form-data; name=\"instructions\"\r\n\r\n{ \"stems\": 4 }\r\n--" + boundary 
                + "--\r\n\r\n", ParameterType.RequestBody);
            request.AddFile("mp3", @fileToUpload.FullName, "audio/mpeg");

            var response = client.Execute<Dictionary<string, object>>(request);

I get back success and I get my code. The problem is when I use this code to download, I get 404 error.

Please help

Únase a la conversación, añada un comentario a continuación:

Inicie sesió/Regístrese para publicar nuevos comentarios