Create video templates in After Effects, make them editable online by anyone. You control the creative, let your team control the content.
Create a document transcription task. See the documentation
Create an image annotation task. See the documentation
Create a text annotation task. See the documentation
The MoDeck API offers an interface for managing playlists and videos within their platform, providing endpoints for various operations like retrieving video details, updating playlists, or managing users. Integrating MoDeck with Pipedream allows you to automate interactions with your MoDeck data, such as syncing playlists, updating video statuses, or triggering actions based on video analytics. With Pipedream's serverless platform, you can build powerful workflows that react to events in real-time, schedule tasks, and connect MoDeck with hundreds of other services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
modeck: {
type: "app",
app: "modeck",
}
},
async run({steps, $}) {
const data = {
"apiKey": `${this.modeck.$auth.api_key}`,
}
return await axios($, {
method: "POST",
url: `https://api.modeck.io/listdecks`,
data,
})
},
})
Scale AI offers an API to automate and streamline data labeling for machine learning applications, providing access to a global workforce and sophisticated tools. With Scale AI's API on Pipedream, you can integrate scalable data annotation workflows directly into your apps. Trigger tasks, manage datasets, and receive annotated data, all within Pipedream's serverless platform. This enables seamless automation of labeling tasks, integration with machine learning pipelines, and real-time updates on annotations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
scale_ai: {
type: "app",
app: "scale_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.scale.com/v1/teams`,
headers: {
"Accept": `application/json`,
},
auth: {
username: `${this.scale_ai.$auth.api_key}`,
password: ``,
},
})
},
})