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 provides programmatic access to Amara’s community-driven subtitle creation and translation services. With this API, you can automate subtitle workflows, streamline video content translation, and integrate with other services to create efficient localization processes. The API allows you to manage videos, subtitles, and teams, offering a doorway to effortlessly scaling your video content to reach global audiences.
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`,
},
})
},
})
Automated Subtitle Generation Workflow: By integrating the Amara API with transcription services like Google Speech-to-Text on Pipedream, you can create a workflow that automatically transcribes spoken language in videos, submits the transcript to Amara for subtitling, and then retrieves and stores the subtitles once they’re ready.
Subtitle Sync and Translation Pipeline: Utilize the Amara API in a Pipedream workflow that monitors your content management system (CMS) for new video uploads. Once a new video is detected, the workflow can automatically upload the video to Amara, trigger the subtitle creation process, and, upon completion, push those subtitles through a translation service like DeepL or Google Translate, then update the CMS with the translated subtitles for various language versions of the video.
Team Collaboration Booster: Create a Pipedream workflow that taps into the Amara API to oversee your subtitle translation projects. Automatically assign tasks to team members based on availability and expertise, notify translators when a new video is ready for their language skills, and track progress through to completion, all while keeping everyone in sync with notifications through communication platforms like Slack or Microsoft Teams.
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.