plugNmeet JS SDK - v2.2.0
    Preparing search index...

    Type Alias TranscodingTask

    TranscodingTask: Message<"plugnmeet.TranscodingTask"> & {
        recordingId: string;
        roomId: string;
        roomSid: string;
        roomTableId: string;
        recorderId: string;
        taskDetails:
            | { value: TranscodingTaskPostRecording; case: "postRecording" }
            | { value: TranscodingTaskMergeRecordings; case: "mergeRecordings" }
            | { case: undefined; value?: undefined };
    }

    TranscodingTask will be the job for the transcoding worker.

    Type Declaration

    • recordingId: string

      from field: string recording_id = 1;

    • roomId: string

      from field: string room_id = 2;

    • roomSid: string

      from field: string room_sid = 3;

    • roomTableId: string

      from field: int64 room_table_id = 4 [jstype = JS_STRING];

    • recorderId: string

      ID of the original recorder that captured the file

      from field: string recorder_id = 5;

    • taskDetails:
          | { value: TranscodingTaskPostRecording; case: "postRecording" }
          | { value: TranscodingTaskMergeRecordings; case: "mergeRecordings" }
          | { case: undefined; value?: undefined }

      from oneof plugnmeet.TranscodingTask.task_details

    from message plugnmeet.TranscodingTask