We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
现使用的ts-ebm在read elm时对于时间戳的字符串判断错误, 应 Timecode -> Timestamp, 导致duration计算为0不起作用,最新的ts-ebml已经修复了 或者直接修改 node_modules\fix-webm-metainfo\node_modules\ts-ebml\lib\EBMLReader.js 内大概 190行和193行的 elm.type === "u" && elm.name === "Timecode" 和 elm.type === "u" && elm.name === "TimecodeScale" 为 (elm.type === "u" && (elm.name === "Timecode" || elm.name === "Timestamp")) 和 (elm.type === "u" && (elm.name === "TimecodeScale" || elm.name === "TimestampScale")) 重新编译即可
The text was updated successfully, but these errors were encountered:
欢迎提pr
Sorry, something went wrong.
No branches or pull requests
现使用的ts-ebm在read elm时对于时间戳的字符串判断错误, 应 Timecode -> Timestamp, 导致duration计算为0不起作用,最新的ts-ebml已经修复了
或者直接修改 node_modules\fix-webm-metainfo\node_modules\ts-ebml\lib\EBMLReader.js 内大概
190行和193行的
elm.type === "u" && elm.name === "Timecode"
和
elm.type === "u" && elm.name === "TimecodeScale"
为
(elm.type === "u" && (elm.name === "Timecode" || elm.name === "Timestamp"))
和
(elm.type === "u" && (elm.name === "TimecodeScale" || elm.name === "TimestampScale"))
重新编译即可
The text was updated successfully, but these errors were encountered: