Skip to content

Commit

Permalink
fix: av1 support (#557)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsi authored Feb 21, 2024
1 parent e4a373d commit a033c91
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/plugins/cloudinary/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down

0 comments on commit a033c91

Please sign in to comment.