Hi,
I would love to be able to automatically generate videos within activepieces.
It should be doable with the API (even according to the folks over at Pipio).
Open to paying someone to make it so I can send over a text - and I get a videofile out.
Thank you.
You will have to use 2 HTTP pieces and initiate a POST to generate the videoId, then a GET to get the URL of the new video that was generated. It doesn’t give you the actual video, only the URL.
Thank you. I’m just confused what to put in the URL.
I get that the Post request should look something like this (just with my API key inserted).
curl -X POST
-H ‘Authorization: Key ${API_Key}’
-H ‘Content-Type: application/json’ https://generate.pipio.ai/single-clip
-d ‘{
“actorId”: “7528735effb7cde8cd5474dc110905c2”,
“voiceId”: “b2c11ebef1e47591f75bceef56635435”,
“script”: “Hello, world!”,
“transparent”: true
}’
__
Also what should be the URL and other stuff in the GET request.