Represents information about music attribution for clips, including details about the audio used in the clip, such as the artist, song name, and audio handling settings.

interface ClipsMusicAttributionInfo {
    artist_name: string;
    audio_id: string;
    should_mute_audio: boolean;
    should_mute_audio_reason: string;
    song_name: string;
    uses_original_audio: boolean;
}

Properties

artist_name: string

The name of the artist whose music is attributed in the clip.

audio_id: string

The unique identifier of the audio track associated with the clip. This can be used to look up additional metadata about the audio.

should_mute_audio: boolean

Indicates whether the audio in the clip should be muted. This might occur due to copyright or platform restrictions.

should_mute_audio_reason: string

The reason why the audio should be muted, if applicable. For example, it could be a copyright issue or content policy restriction.

song_name: string

The name of the song used in the clip.

uses_original_audio: boolean

Indicates whether the clip uses original audio. If true, the audio is original and not sourced from an external track.