From a72d3c8de13a7f008a0ea233fb41c11f35a91e24 Mon Sep 17 00:00:00 2001 From: David LaPalomento Date: Wed, 6 Mar 2024 13:48:44 -0500 Subject: [PATCH] id3.org is gone? Update ID3 header overview link to a web archive one since id3.org looks gone. --- lib/aac/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/aac/utils.js b/lib/aac/utils.js index f95758f9..3f1af311 100644 --- a/lib/aac/utils.js +++ b/lib/aac/utils.js @@ -140,7 +140,7 @@ var parseAacTimestamp = function(packet) { } // parse one or more ID3 frames - // http://id3.org/id3v2.3.0#ID3v2_frame_overview + // https://web.archive.org/web/20220912050912/https://id3.org/id3v2.3.0#ID3v2_frame_overview do { // determine the number of bytes in this frame frameSize = parseSyncSafeInteger(packet.subarray(frameStart + 4, frameStart + 8));