从语音合成到方言研究:手把手教你用MFA对齐自己的音频数据集(附TextGrid分析技巧)
2026/6/10 12:09:38
function openWechatLoginWindow(url: any) { const wechatLoginUrl = url // 弹框宽高 let width = 600 let height = 500 // 弹框居中 let top = (window.screen.height - 30 - height) / 2 let left = (window.screen.width - 30 - width) / 2 let openWin: any = window.open( wechatLoginUrl, '', 'width=' + width + ',height=' + height + ',top=' + top + ',left=' + left + ',toolbar=no, status=no, menubar=no, resizable=yes, scrollbars=yes' ) }