- Newest
- Most votes
- Most comments
Hi, AWS Elemental MediaConvert can convert in parallel to several resolutions: see https://docs.aws.amazon.com/mediaconvert/latest/ug/outputs-file-ABR.html
To create such a job: see https://docs.aws.amazon.com/mediaconvert/latest/ug/setting-up-a-job.html
Best,
Didier
Hi Murat, thanks for your question. If you are looking to offer videos for streaming, you may want to consider using an Adaptive Bit Rate (ABR) protocol, such as HLS or DASH. ABRs will created multiple versions of the video, at different resolutions and bitrates, that are synced together. Video players on web and mobile devices can then jump between different ABR renditions, based on their connection bandwidth. AWS MediaConvert can create ABR assets from video files, such as MP4s for on-demand based streaming. You can view two VOD file based solutions here. Both are focused on the creation and delivery of the ABR assets. Other functions, such as user authentication and access may be added to them. https://aws.amazon.com/solutions/implementations/video-on-demand-on-aws/
If you application needs to support delivery of live streams, then you may need to use AWS MediaLive, which can transcode live video signals into the ABR protocol. Here is a link to live streaming example solutions. Again, this focuses on video processing and not other possible system functions. https://aws.amazon.com/solutions/implementations/live-streaming-on-aws/
To address the part of your question about URL parameters: AWS MediaPackage provides manifest filtering to return a customized manifest filtered by passed parameters such as video_height, codec, bitrate, etc. This mirrors what you were doing with the image URL. Note, all the target resolutions must be present in the transcoded manifest in advance - they are not converted on the fly. You could transcode the asset once at perhaps 8 sizes, then select the closest size. A Lambda function could be used to do the manifest filtering if your player or web page cannot do it.
Another alternative is to use a video player object that accepts a scaling factor on playback, so you can always retrieve a 1080 rendition and scale/crop in the player.
See more on manifest filtering at https://docs.aws.amazon.com/mediapackage/latest/ug/manifest-filtering.html
Relevant content
- AWS OFFICIALUpdated a year ago
