zhoulixiang
zhoulixiang
> Can you use `ffprobe` (part of ffmpeg) to scan the audio file and paste output here? The result is as follow: ``` ffprobe version 5.0 Copyright (c) 2007-2022 the...
> > Wavesurfer.js version(s): 5.0.2 > > Always test with latest version(s). Sorry, I have upgraded it to version 6.0.2, but the problem is still present.
> can you convert it to wav using ffmpeg and see if that makes a difference. Yes, it is normal when converting it to `.wav` file, according to my observation,...
> Ok, so it's a browser issue, not sure how wavesurfer.js can be improved here. But if I get the duration of the audio through the `` tag of the...
目前还不支持,可以输出为数组格式,再自己手动 `Array.join()` 去掉,例如: ```js pinyin('赵钱孙李额', { pattern: 'first', toneType: 'none', type: 'array' }).join(''); // ['zqsle'] ```
> updateClassComponent已经reconcileChildren一次,performUnitOfWork还有reconcileChildren 你好,感谢提问。`performUnitOfWork` 中的 `reconcileChildren` 执行条件如下: ```js let children = workInProgress.element?.props?.children; let type = workInProgress.element?.type; if (typeof type === 'function') { // 当前 fiber 对应 React 组件时,对其 return 迭代 if...
> > ### Version > > 2.7.7 > > ### Steps to reproduce > > 打包 @vue/[email protected] 时报node模块不存在 > > ### What is expected? > > 打包 @vue/[email protected] 时不报错 >...
在 taro 配置中修改 `designWidth` 为函数式: ```js config = { designWidth(input) { if (input.file.replace(/\\+/g, "/").indexOf("taro-ui/dist") > -1) { return 750; } return 375; }, } ``` 但是要注意的一点是,所有引入的 `taro-ui` 的样式文件需要通过在 `.js` 文件中...
在 taro 配置中修改 `designWidth` 为函数式,亲测有效: ```js config = { designWidth(input) { if (input.file.replace(/\\+/g, "/").indexOf("taro-ui/dist") > -1) { return 750; } return 375; }, } ``` 但是要注意的一点是,所有引入的 `taro-ui` 的样式文件需要通过在 `.js` 文件中...
`cancel` is an event so you should use ``. However, react dosen't support `cancel` for `input[type="file"]`, I add a PR #27897 for this.