-
Notifications
You must be signed in to change notification settings - Fork 200
New issue
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
wav转mp3的时候lampjs报"ReferenceError: MPEGMode is not defined" #91
Comments
Same error here.... |
src/js/Lame.js 135 gfp.mode = MPEGMode.NOT_SET; <= 此处的MPEGMode未引用,头部少了var MPEGMode = require('./MPEGMode') |
I still have the same error, any fix? |
The same error I get also. After temporarily inserting the import of MPEGMode above, I get this error: runtime-core.esm-bundler.js:218 Uncaught ReferenceError: Lame is not defined Any thoughts? |
Hey @tderflinger, I found this Repo which fixes it without manually intervening, but it's dirty of course: If you wanna do it manually, you have to import a few other things, this comment worked for me: Also, this repo might do what you want with less boilerplate, it has lamejs bundled into it and doesn't suffer from this problem: |
Thanks for the links, @wug-ge :) |
when i saw the github's version 1.2.1, the missing require declarations is fixed. |
I use the v1.2.0 and it works. |
So i got into the same Problem that when i use lamejs = require('lamejs) i get the error: MPGEG Mode is not defined. So i tried using the 1.2.0 Version but i dont use Bootstrap so i get an Bootstrap error with LAME not defined. In the end my solution after 3 hours of fidgeting diffrent libraries: Than import lamejs in your component or serice: Thats it. |
For those still looking for a solution |
use lamejs to instead of
it's working for me |
在vue 里使用lampjs1.21版本 wav转 MP3报错
The text was updated successfully, but these errors were encountered: