ffmpeg是視頻開發最常用到的開源軟件,ffmpeg功能強大,用途廣泛,提供幾乎所有你能夠想到的與視頻開發相關的操作,許多商業軟件都以ffmpeg為基礎進行開發定製。
FFmpeg: FFmpeg is a free and open-source project consisting of a vast software suite of libraries and programs fo
介紹/info
auto compress img by tinypng when used webpack or vue
This plugin can record the compression and will not recompress the file if it is not updated
適用於vue和webpack的tinypng插件,支持調整圖片尺寸
能夠根據記
計算字符串的實際長度,雙字節字符(包括漢字在內)長度計2,ASCII字符計1
方法1:使用match:
export function getByteLenMatch(data) {
let result = 0;
for (let s of data) {
result += s.match(/[^\\x00-\\xff]/ig) == null ? 1 : 2;
}
r