1. Schemas
  • Semihuman API Documentation
  • end-points
    • Humanize text
      POST
    • Check AI content
      POST
    • AI Video Detection
      POST
  • Schemas
    • Schemas
      • AIDetectionResultDto
      • HumanizeDto
      • VideoDetectionResultDto
      • HumanizeOkDto
  1. Schemas

VideoDetectionResultDto

{
    "message": "Detection complete",
    "isHuman": 0,
    "fakePercentage": 100,
    "totalFrames": 8,
    "fakeFrames": 8,
    "realFrames": 0,
    "resultMessage": "The video is likely manipulated (100% fake frames)",
    "framesClassification": [
        {
            "frame": "frame_0000.jpg",
            "predicted_label": "fake",
            "probabilities": [
                [
                    0
                ]
            ]
        }
    ]
}
Built with