ACRCloud
Visit WebsiteConsole
  • Introduction
  • Get Started
  • Console Tutorials
    • Recognize Music
    • Recognize Custom Content
    • Broadcast Monitoring for Music
    • Broadcast Monitoring for Custom Content
    • Detect Live & Timeshift TV Channels
    • Recognize Custom Content Offline
    • Recognize Live Channels and Custom Content
    • Find Potential Detections in Unknown Content Filter
  • SDK REFERENCE
    • Mobile SDK
      • iOS
      • Android
      • Unity
    • Backend SDK
      • Python
      • PHP
      • Go
      • Java
      • C/C++
      • C#
    • Error Codes
  • API Reference
    • Identification API
    • Console API
      • Access Token
      • Buckets
        • Audio Files
        • Live Channels
        • Dedup Files
      • Base Projects
      • OfflineDBs
      • BM Projects
        • Custom Streams Projects
          • Streams
          • Streams Results
          • Streams State
          • Recordings
          • Analytics
          • User Reports
        • Broadcast Database Projects
          • Channels
          • Channels Results
          • Channels State
          • Recordings
          • Analytics
          • User Reports
      • File Scanning
        • FsFiles
      • UCF Projects
        • BM Streams
        • UCF Results
    • Metadata API
  • Tools
    • Audio File Fingerprinting Tool
    • Local Monitoring Tool
    • Live Channel Fingerprinting Tool
    • File Scan Tool
  • Metadata
    • Music
    • Music (Broadcast Monitoring with Broadcast Database)
    • Custom Files
    • Live Channels
    • Humming
  • FAQ
    • Definition of Terms
  • Service Usage
Powered by GitBook
On this page
  1. API Reference
  2. Console API
  3. BM Projects
  4. Broadcast Database Projects

Recordings

Please make sure that your channels have enabled Timemap before getting the recording.

Get the recording of the results.

GET https://api-v2.acrcloud.com/api/bm-bd-projects/:pid/channels/:channel_id/recordings

This endpoint allows you to get the recordings of the results of your channels.

Path Parameters

Name
Type
Description

pid

number

The project id.

channel_id

number

The channel id.

Query Parameters

Name
Type
Description

timestamp_utc

string

The start time of the recording, the format is YYYYmmddHHMMSS (for example 20210101120809).

played_duration

integer

The duration of the recording(seconds).

record_before

integer

How many seconds of recording to add forward(default 0).

record_after

integer

How many seconds of recording to add backwards(default 0).

Headers

Name
Type
Description

Authorization

string

Bearer token

Accept

string

*/*

{    "message": "The recording is not available."    }
curl --location --request GET 'https://api-v2.acrcloud.com/api/bm-bd-projects/100079/channels/100123/recordings?timestamp_utc=20210601121314&played_duration=30' \
--header 'Accept: */*' \
--header 'Authorization: Bearer {your token}'

Last updated 1 year ago