Maestra

Automatic, fast, accurate transcription and captioning for journalists, students, podcasters. Audio to text in minutes.

Integrate the Maestra API with the Supabase API

Setup the Maestra API trigger to run a workflow which integrates with the Supabase API. Pipedream's integration platform allows you to integrate Maestra and Supabase remarkably fast. Free for developers.

Delete Row with Supabase API on New File Added from Maestra API
Maestra + Supabase
 
Try it
Insert Row with Supabase API on New File Added from Maestra API
Maestra + Supabase
 
Try it
Remote Procedure Call with Supabase API on New File Added from Maestra API
Maestra + Supabase
 
Try it
Select Row with Supabase API on New File Added from Maestra API
Maestra + Supabase
 
Try it
Translate File with Maestra API on New Row Added from Supabase API
Supabase + Maestra
 
Try it
New File Added from the Maestra API

Emit new event when a new file is added to a project in Maestra. See the documentation

 
Try it
New Row Added from the Supabase API

Emit new event for every new row added in a table. See documentation here

 
Try it
New Webhook Event (Instant) from the Supabase API

Emit new event for every insert, update, or delete operation in a table. This source requires user configuration using the Supabase website. More information in the README. Also see documentation here

 
Try it
Delete Row with the Supabase API

Deletes row(s) in a database. See the docs here

 
Try it
Translate File with the Maestra API

Translates an existing file in the Maestra system. See the documentation

 
Try it
Insert Row with the Supabase API

Inserts a new row into a database. See the docs here

 
Try it
Upload File with the Maestra API

Initiates a new file upload to Maestra. See the documentation

 
Try it
Remote Procedure Call with the Supabase API

Call a Postgres function in a database. See the docs here

 
Try it

Overview of Maestra

The Maestra API lets you automate the transcription, captioning, and voiceover of videos and audios, crucial for creating accessible and localized content. With Pipedream, you can build workflows that trigger on various events to streamline media processing, integrate with other services, and manage content efficiently. Pipedream's serverless platform offers a code-free way to connect the Maestra API with hundreds of other apps, enabling you to create custom automation without the heavy lifting.

Connect Maestra

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    maestra: {
      type: "app",
      app: "maestra",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.maestra.$auth.base_url}/api/getCredits`,
      headers: {
        "apiKey": `${this.maestra.$auth.api_key}`,
      },
    })
  },
})

Overview of Supabase

Supabase is a real-time backend-as-a-service that provides developers with a suite of tools to quickly build and scale their applications. It offers database storage, authentication, instant APIs, and real-time subscriptions. With the Supabase API, you can perform CRUD operations on your database, manage users, and listen to database changes in real time. When integrated with Pipedream, you can automate workflows that react to these database events, synchronize data across multiple services, or streamline user management processes.

Connect Supabase

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    supabase: {
      type: "app",
      app: "supabase",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.supabase.$auth.subdomain}.supabase.co/rest/v1/`,
      headers: {
        Authorization: `Bearer ${this.supabase.$auth.service_key}`,
        "apikey": `${this.supabase.$auth.service_key}`,
      },
    })
  },
})