Free and open-source project management and issue tracking tool.
Trigger when a new media asset has been uploaded to the Shotstack API. See the documentation here.
Generate a timeline with layers and assets for a new video project. See the documentation here.
Initiate rendering of a video using a timeline created in Shotstack API. See the documentation here.
Add media assets like images, audio, or video to the Shotstack API for use in video projects. See the documentation here.
The Redmine API allows for integration with the Redmine project management tool, enabling the automation of tasks like issue tracking, project management, and time tracking. Using Pipedream, you can create workflows that trigger on specific Redmine events or perform actions in Redmine based on triggers from other apps. By harnessing the Redmine API on Pipedream, you can connect Redmine with a multitude of other apps and services to streamline your project management processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
redmine: {
type: "app",
app: "redmine",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.redmine.$auth.hostname}/my/account.json`,
headers: {
"Content-Type": `application/json`,
"X-Redmine-API-Key": `${this.redmine.$auth.api_key}`,
},
})
},
})
The Shotstack API is a video editing platform that allows you to automate the creation and production of videos. With it, you can edit clips, add transitions, overlays, and backgrounds, and even include music in your videos. Integrating Shotstack with Pipedream can supercharge your workflow by automating the video creation process. You can trigger video edits in response to various events, manage assets, or even kick off rendering jobs based on data from other apps and services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
shotstack: {
type: "app",
app: "shotstack",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.shotstack.io/ingest/${this.shotstack.$auth.version}/sources`,
headers: {
"x-api-key": `${this.shotstack.$auth.api_key}`,
},
})
},
})