From a033c91a9196e47aebb717c25546319258a2f852 Mon Sep 17 00:00:00 2001 From: Tsachi Shlidor Date: Wed, 21 Feb 2024 15:33:53 +0200 Subject: [PATCH] fix: av1 support (#557) --- src/plugins/cloudinary/common.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/cloudinary/common.js b/src/plugins/cloudinary/common.js index 29d1b894..0a6bbe75 100644 --- a/src/plugins/cloudinary/common.js +++ b/src/plugins/cloudinary/common.js @@ -106,7 +106,8 @@ const codecShorthandTrans = short => { const transTable = { h265: 'hev1.1.6.L93.B0', vp9: 'vp09.00.50.08', - h264: 'avc1.42E01E' + h264: 'avc1.42E01E', + av1: 'av01.0.05M.08' }; return transTable[short] ? transTable[short] : short; };