The Amara Editor is an award-winning caption and subtitle editor that’s free to use! It’s fun and easy to learn, and encourages collaboration.
Go to siteThe Amara API enables you to build a wide variety of applications and tools that work with subtitles and captions. Here are just a few examples:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
amara: {
type: "app",
app: "amara",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://amara.org/api/users/teams/`,
headers: {
"X-api-key": `${this.amara.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})
Emit new event when subtitles have been published. See the docs here
Emit new event when subtitles have been unpublished. See the docs here
Emit new event when a video has been made primary. See the docs here
Amara uses API keys for authentication. When you connect your Amara account, Pipedream securely stores the keys so you can easily authenticate to Amara APIs in both code and no-code steps.
In order to get an API Key, create a user on the Amara website, then go to the account page. At the bottom of the page you will find a "Generate new key" button.