Use lamejs CDN instead of npm package

ESM compatibility issues with lamejs npm package - load from CDN instead.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
b1rdmania
2026-01-01 12:25:07 +00:00
parent 6cc0938bbf
commit dd880c358d
+5 -4
View File
@@ -469,6 +469,7 @@
} }
} }
</style> </style>
<script src="https://cdn.jsdelivr.net/npm/lamejs@1.2.1/lame.min.js"></script>
</head> </head>
<body> <body>
<div class="container"> <div class="container">
@@ -538,7 +539,7 @@
import { SoundfontMIDIPlayer } from './src/synthesis/SoundfontMIDIPlayer.ts'; import { SoundfontMIDIPlayer } from './src/synthesis/SoundfontMIDIPlayer.ts';
import { MotifEngine } from './src/core/MotifEngine.ts'; import { MotifEngine } from './src/core/MotifEngine.ts';
import { unlockAudio } from './src/utils/audioUnlock.ts'; import { unlockAudio } from './src/utils/audioUnlock.ts';
import lamejs from 'lamejs'; // lamejs loaded via CDN script tag (ESM compatibility issues with npm version)
const NUM_BARS = 40; const NUM_BARS = 40;
const midiService = new MIDIService(); const midiService = new MIDIService();
@@ -799,9 +800,9 @@
shareHint.textContent = 'Encoding MP3…'; shareHint.textContent = 'Encoding MP3…';
// Use statically imported lamejs // Use lamejs from CDN (global)
const Mp3Encoder = lamejs.Mp3Encoder; const Mp3Encoder = window.lamejs?.Mp3Encoder;
if (!Mp3Encoder) throw new Error('MP3 encoder not available'); if (!Mp3Encoder) throw new Error('MP3 encoder not available - lamejs not loaded');
const channels = audioBuffer.numberOfChannels; const channels = audioBuffer.numberOfChannels;
const kbps = 128; const kbps = 128;