'default', 'version' => '2012-09-25', 'region' => $region, 'default_caching_config' => $tmp_path, ]); $pipeline_id = '1234567890112-abcdefg'; $S3_file = 'folder/filename.txt'; // HLS Presets that will be used to create an adaptive bitrate playlist. $hls_64k_audio_preset_id = '1351620000001-200071'; $hls_0400k_preset_id = '1351620000001-200050'; $hls_0600k_preset_id = '1351620000001-200040'; $hls_1000k_preset_id = '1351620000001-200030'; $hls_1500k_preset_id = '1351620000001-200020'; $hls_2000k_preset_id = '1351620000001-200010'; $hls_presets = [ 'hlsAudio' => $hls_64k_audio_preset_id, 'hls0400k' => $hls_0400k_preset_id, 'hls0600k' => $hls_0600k_preset_id, 'hls1000k' => $hls_1000k_preset_id, 'hls1500k' => $hls_1500k_preset_id, 'hls2000k' => $hls_2000k_preset_id, ]; // HLS Segment duration that will be targeted. $segment_duration = '2'; $outputs = []; foreach ($hls_presets as $prefix => $preset_id) { $outputs[] = [ 'Key' => $prefix . '_' . $S3_file, 'PresetId' => $preset_id, 'SegmentDuration' => $segment_duration, ]; }; // All outputs will have this prefix prepended to their output key. $output_key_prefix = 'elastic-transcoder-samples/output/'; $playlist = [ 'Name' => 'hls_' . $S3_file, 'Format' => 'HLSv3', 'OutputKeys' => array_map(function ($x) { return $x['Key']; }, $outputs) ]; // Create the job. try { $create_job_result = $transcoder_client->createJob([ 'PipelineId' => $pipeline_id, 'Input' => ['Key' => $S3_file], 'Outputs' => $outputs, 'OutputKeyPrefix' => $output_key_prefix, 'Playlists' => [ $playlist ], ]); var_dump($create_job_result["Job"]); } catch (AwsException $e) { // output error message if fails echo $e->getMessage() . "\n"; } // snippet-end:[elastictranscoder.php.create_hls_job.main] // snippet-end:[elastictranscoder.php.create_hls_job.complete]