Created
March 8, 2022 17:42
-
-
Save dmthomas/65ef85040465786e4add698c19168ec2 to your computer and use it in GitHub Desktop.
Apple Special Event Oct 2021 1080p, 1440p, 2160p
This file contains 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 characters
#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/1001azawzugclrwbvehhawhkerzwfetq/vod_main_QXfNLMWGxcNjjtymsofuJLttKvwNuuVE/audio_main_en_2ch_aac_128/prog_index.m3u8 -c copy "Apple Special Event, October 2021 temp.aac" | |
#h264 1080p | |
ffmpeg -i https://p-events-delivery.akamaized.net/1001azawzugclrwbvehhawhkerzwfetq/vod_main_QXfNLMWGxcNjjtymsofuJLttKvwNuuVE/sdr_avc_1080p_8500/prog_index.m3u8 -c copy "Apple Special Event, October 2021 (1080p) temp.mp4" | |
ffmpeg -i "Apple Special Event, October 2021 (1080p) temp.mp4" -i "Apple Special Event, October 2021 temp.aac" -c copy "Apple Special Event, October 2021 (1080p).mp4" | |
#h265 1080p | |
ffmpeg -i https://p-events-delivery.akamaized.net/1001azawzugclrwbvehhawhkerzwfetq/vod_main_QXfNLMWGxcNjjtymsofuJLttKvwNuuVE/sdr_hvc_1080p_7000/prog_index.m3u8 -c copy "Apple Special Event, October 2021 (1080p) temp.mp4" | |
ffmpeg -i "Apple Special Event, October 2021 (1080p) temp.mp4" -i "Apple Special Event, October 2021 temp.aac" -c copy "Apple Special Event, October 2021 (1080p).mp4" | |
#h265 1440p | |
ffmpeg -i https://p-events-delivery.akamaized.net/1001azawzugclrwbvehhawhkerzwfetq/vod_main_QXfNLMWGxcNjjtymsofuJLttKvwNuuVE/sdr_hvc_1440p_8100/prog_index.m3u8 -c copy "Apple Special Event, October 2021 (1440p) temp.mp4" | |
ffmpeg -i "Apple Special Event, October 2021 (1440p) temp.mp4" -i "Apple Special Event, October 2021 temp.aac" -c copy "Apple Special Event, October 2021 (1440p).mp4" | |
#h265 2160p | |
ffmpeg -i https://p-events-delivery.akamaized.net/1001azawzugclrwbvehhawhkerzwfetq/vod_main_QXfNLMWGxcNjjtymsofuJLttKvwNuuVE/sdr_hvc_2160p_16800/prog_index.m3u8 -c copy "Apple Special Event, October 2021 (2160p) temp.mp4" | |
ffmpeg -i "Apple Special Event, October 2021 (2160p) temp.mp4" -i "Apple Special Event, October 2021 temp.aac" -c copy "Apple Special Event, October 2021 (2160p).mp4" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment