Created
April 20, 2021 19:18
-
-
Save dmthomas/c218da5a6f622b84c6b961350184d3e3 to your computer and use it in GitHub Desktop.
Revisions
-
dmthomas created this gist
Apr 20, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ #I broke the audio out separately because it's the same stream regardless of which video resolution you choose. #Audio for all ffmpeg -i https://p-events-delivery.akamaized.net/2503gakrdvgbtjurznurjjqymkcddibq/vod_7cmxCio8T7ZZkbTQAXsL24ej7cqN6z27/audio_english_128/prog_index.m3u8 -c copy "Apple Special Event, April 2021 temp.aac" #h264 1080p ffmpeg -i https://p-events-delivery.akamaized.net/2503gakrdvgbtjurznurjjqymkcddibq/vod_7cmxCio8T7ZZkbTQAXsL24ej7cqN6z27/SDR_avc_1080p_8500/prog_index.m3u8 -c copy "Apple Special Event, April 2021 (1080p) temp.mp4" ffmpeg -i "Apple Special Event, April 2021 (1080p) temp.mp4" -i "Apple Special Event, April 2021 temp.aac" -c copy "Apple Special Event, April 2021 (1080p).mp4" #h265 1080p ffmpeg -i https://p-events-delivery.akamaized.net/2503gakrdvgbtjurznurjjqymkcddibq/vod_7cmxCio8T7ZZkbTQAXsL24ej7cqN6z27/SDR_hvc_1080p_7000/prog_index.m3u8 -c copy "Apple Special Event, April 2021 (1080p) temp.mp4" ffmpeg -i "Apple Special Event, April 2021 (1080p) temp.mp4" -i "Apple Special Event, April 2021 temp.aac" -c copy "Apple Special Event, April 2021 (1080p).mp4" #h265 1440p ffmpeg -i https://p-events-delivery.akamaized.net/2503gakrdvgbtjurznurjjqymkcddibq/vod_7cmxCio8T7ZZkbTQAXsL24ej7cqN6z27/SDR_hvc_1440p_8100/prog_index.m3u8 -c copy "Apple Special Event, April 2021 (1440p) temp.mp4" ffmpeg -i "Apple Special Event, April 2021 (1440p) temp.mp4" -i "Apple Special Event, April 2021 temp.aac" -c copy "Apple Special Event, April 2021 (1440p).mp4" #h265 2160p ffmpeg -i https://p-events-delivery.akamaized.net/2503gakrdvgbtjurznurjjqymkcddibq/vod_7cmxCio8T7ZZkbTQAXsL24ej7cqN6z27/SDR_hvc_2160p_16800/prog_index.m3u8 -c copy "Apple Special Event, April 2021 (2160p) temp.mp4" ffmpeg -i "Apple Special Event, April 2021 (2160p) temp.mp4" -i "Apple Special Event, April 2021 temp.aac" -c copy "Apple Special Event, April 2021 (2160p).mp4"