-
Notifications
You must be signed in to change notification settings - Fork 108
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
Move index.html to another directory will not work #1
Comments
If you move index.html you'll have to change the 2 paths to the
|
yes, I did and the recording / stop seems work ok; but after stop, it does not show the recording list like the other. Test move to a number of different places all show the same result, it seem the only place it work is in the default directory. I insert analert('createDownloadLink'); as first line in createDownloadLink, and it never come here if the index.html has moved. I test it on Firefox as I dont have access to https for test it in Chrome. |
i have the same problem too。 <script src="{{ url_for('static',filename='js/WebAudioRecorder.min.js') }}"></script> <script src="{{ url_for('static',filename='js/app.js') }}"></script> After starting the flask program app.py, the following error occurred and the recording could not be performed. getUserMedia() success, stream created, initializing WebAudioRecorder... |
I solved this problem. Just need to change the path in the app.js file, "/js"⇒"/static/js" |
Yeah he is right! I also changed the workerDir in app.js from "js/" to "static/main/js/" |
This can be closed. :) |
Download and test all just fine but when index.html is copied to another directory, with intention to modify, it will not show play back audio control?
How to overcome this problem?
My application is to use it to record lots of very short Taiwanese dialect on a database as a blob and hopefully can be played back for learner.
The text was updated successfully, but these errors were encountered: