Opus · Arazzo Workflow

OpusClip — clip a video and publish to social

Version 1.0.0

Clip a video, generate social copy, and publish a clip to a connected social account.

1 workflow 1 source API 1 provider
View Spec View on GitHub CompanyFrontier TechVideoAIVideo EditingShort-Form VideoContent CreationSocial MediaMediaAgentsArazzoWorkflows

Provider

opus

Workflows

clipAndPublish
Create a clip project, list clips, list social accounts, generate social copy, and publish.
5 steps inputs: videoUrl
1
createProject
ClipProjectController_createClipProject
2
listClips
ExportableClipController_queryExportableClips
3
listSocialAccounts
SocialAccountController_getSocialAccounts
4
generateSocialCopy
SocialCopyJobController_createSocialCopyJob
5
publishPost
PostTaskController_createPostTask

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: OpusClip — clip a video and publish to social
  version: 1.0.0
  summary: Clip a video, generate social copy, and publish a clip to a connected social account.
sourceDescriptions:
- name: opus
  url: ../openapi/opus-openapi-original.json
  type: openapi
workflows:
- workflowId: clipAndPublish
  summary: Create a clip project, list clips, list social accounts, generate social copy, and publish.
  inputs:
    type: object
    properties:
      videoUrl:
        type: string
        default: https://www.youtube.com/watch?v=tEXaoozFRes
  steps:
  - stepId: createProject
    operationId: ClipProjectController_createClipProject
    requestBody:
      contentType: application/json
      payload:
        videoUrl: $inputs.videoUrl
    outputs:
      projectId: $response.body#/id
  - stepId: listClips
    operationId: ExportableClipController_queryExportableClips
    parameters:
    - name: q
      in: query
      value: findByProjectId
    - name: projectId
      in: query
      value: $steps.createProject.outputs.projectId
  - stepId: listSocialAccounts
    operationId: SocialAccountController_getSocialAccounts
  - stepId: generateSocialCopy
    operationId: SocialCopyJobController_createSocialCopyJob
    outputs:
      jobId: $response.body#/jobId
  - stepId: publishPost
    operationId: PostTaskController_createPostTask