CoolFace
Apppublic

Daddy66969/darconia-drone-identification

sourceHugging Facebsd-3-clauseupdated 6mo agoView on Hugging Face
0likes
App README

Darconia — Drone Audio Identification API (Private)

Upload audio → identify the specific drone model by its acoustic signature.

Currently identifies 32 drone models including DJI Mavic, Phantom, Mini, Matrice, Autel EVO, Yuneec Typhoon, Syma, and more.

API Usage (from Lovable or any frontend)

javascript
// Upload audio file to the API
const formData = new FormData();
formData.append("files", audioFile);

const uploadResponse = await fetch("https://YOUR-SPACE.hf.space/upload", {
  method: "POST",
  body: formData
});
const [filePath] = await uploadResponse.json();

// Call the identify endpoint
const response = await fetch("https://YOUR-SPACE.hf.space/api/identify", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({ data: [filePath] })
});
const result = await response.json();
// result.data[0] contains the identification result

Response Format

json
{
  "identified": true,
  "drone_model": "DJI Mavic2pro",
  "confidence": 0.9543,
  "top_matches": [
    {"drone_model": "DJI Mavic2pro", "confidence": 0.9543},
    {"drone_model": "DJI Phantom4", "confidence": 0.7601},
    {"drone_model": "DJI Mavic2s", "confidence": 0.7234},
    {"drone_model": "DJI Mini3 pro", "confidence": 0.7012},
    {"drone_model": "DJI Mavic Air2", "confidence": 0.6891}
  ],
  "audio_duration_seconds": 5.0,
  "total_reference_drones": 32,
  "model": "MIT/ast-finetuned-audioset-10-10-0.4593"
}

Identified Drone Models

Autel Evo II, DJI Avata, DJI FPV, DJI Matrice 200, DJI Matrice 200 V2, DJI Matrice 600p, DJI Mavic 2 Pro, DJI Mavic 2S, DJI Mavic Air 2, DJI Mavic Mini 1, DJI Mavic Mini 2, DJI Mini 3, DJI Mini 3 Pro, DJI Neo, DJI Phantom 2, DJI Phantom 4, DJI Tello, DJI Tello TT, David Tricopter, Hasakee Q11, Holystone HS210, Hover X1, PhenoBee, Swellpro Splash 3+, Syma X20, Syma X20P, Syma X26, Syma X5SW, Syma X5UW, Syma X8SW, UDI U46, Yuneec Typhoon H Plus