TABLE OF CONTENTS
- Context
- Installing Media Encoder
- Installing AME Pulse-IT agent
- AME Pulse-IT agent commands available
- Sample workflow
- Using another transcoder
Context
You may have source file using proprietary codecs that are not managed by FFMPEG. In order to build validation proxies you may want to use Adobe Media Encoder.
Installing Media Encoder
This is out of the scope of this Tech note. Please refer to Adobe documentation.
Installing AME Pulse-IT agent
For each Agent, copy and double-click on Embrace AME_local_Agent.msi file and follow the instructions
AME Pulse-IT agent commands available
The AME Pulse-IT agent publish 2 web services command: Transcode and Get Job Info.
The Transcode command
POST Method
URL: 'localhost:8007'
Payload
{ "job":"transcodeItem", "data":{ "input_path":input_path, "AME_preset_path":AME_preset_path, "output_path":output_path } }
Parameter | Description |
---|---|
input_path | source path to the file to transcode |
AME_preset_path | Path to the transcode definition preset |
output_path | Destination for the transcoded file |
Callback on_success
AME_job_data = response
The GetJobInfos command
GET Method
URL: 'localhost:8007'
{ "job":"getJobInfos", "data":{ "jobID" : AME_job_data["jobID"] } }
Parameter | Description |
---|---|
jobID | ID of the transcode job to monitor |
Sample workflow
This sample workflow demonstrates the use of AME as an external transcoder.
Using another transcoder
You may use FFMPEG encoder to create proxies. Found how with this article: Creating proxy using FFMPEG
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article