@arraypress/waveform-player 1.9.0 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/waveform-player.cjs +11 -1
- package/dist/waveform-player.cjs.map +2 -2
- package/dist/waveform-player.css +1 -1
- package/dist/waveform-player.esm.js +6 -6
- package/dist/waveform-player.esm.js.map +2 -2
- package/dist/waveform-player.js +11 -1
- package/dist/waveform-player.min.js +6 -6
- package/dist/waveform-player.min.js.map +2 -2
- package/index.d.ts +6 -0
- package/package.json +1 -1
- package/src/css/waveform-player.css +25 -4
- package/src/js/core.js +8 -1
- package/src/js/themes.js +5 -0
- package/src/js/utils.js +1 -0
package/dist/waveform-player.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.waveform-player{font-family:inherit;color:inherit;line-height:var(--waveform-line-height, 1.4)}.waveform-player *{box-sizing:border-box}.waveform-body{display:flex;flex-direction:column;gap:var(--waveform-body-gap, 8px)}.waveform-track{display:flex;align-items:center;gap:var(--waveform-track-gap, 12px);position:relative}.waveform-btn{width:36px;height:36px;min-width:36px;border-radius:50%;border:2px solid currentColor;background:transparent;color:inherit;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s ease;padding:0;opacity:.9;flex-shrink:0}.waveform-btn:hover:not(:disabled){opacity:1;transform:scale(1.05)}.waveform-btn:disabled{cursor:not-allowed;opacity:.3}.waveform-btn>*{display:flex;align-items:center;justify-content:center;width:100%;height:100%}.waveform-btn svg{width:16px;height:16px;fill:currentColor;display:block}.waveform-icon-play svg{margin-left:1px}.waveform-container{flex:1;position:relative;min-height:60px;cursor:pointer;min-width:0;width:100%}.waveform-container:focus-visible{outline:2px solid currentColor}.waveform-container canvas{display:block;width:100%;height:100%;max-width:100%;transition:opacity .3s ease;position:relative;z-index:1}.waveform-info{display:flex;align-items:center;gap:8px;font-size:13px;min-height:20px}.waveform-text{flex:1;display:flex;flex-direction:column;gap:2px;min-width:0}.waveform-title{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:500}.waveform-subtitle{font-size:11px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.waveform-time{font-size:11px;white-space:nowrap;flex-shrink:0}.waveform-bpm{font-size:11px;white-space:nowrap;flex-shrink:0;display:inline-flex;align-items:center;gap:4px}.waveform-loading{position:absolute;inset:0;background:#0000001a;z-index:10}.waveform-error{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:#0003;z-index:10}.waveform-error-text{font-size:12px;opacity:.7;text-align:center;padding:0 20px}.waveform-markers{position:absolute;inset:0;pointer-events:none;z-index:5}.waveform-marker{position:absolute;top:0;width:2px;height:100%;background:#ffffff80;border:none;padding:0;cursor:pointer;pointer-events:all;transition:all .2s}.waveform-marker:hover{width:4px;z-index:20}.waveform-marker.active{width:4px;background:currentColor;z-index:10}.waveform-marker-tooltip{position:absolute;bottom:calc(100% + 4px);left:50%;transform:translate(-50%);background:#000000e6;color:#fff;padding:4px 8px;border-radius:4px;font-size:11px;white-space:nowrap;pointer-events:none;opacity:0;transition:opacity .2s;z-index:1000}.waveform-marker:hover .waveform-marker-tooltip{opacity:1}.waveform-btn:focus-visible{outline:2px solid currentColor;outline-offset:2px}.waveform-marker:focus-visible{outline:2px solid currentColor;outline-offset:1px;width:4px}.waveform-speed{position:relative;flex-shrink:0}.speed-btn{background:transparent;border:1px solid rgba(255,255,255,.2);border-radius:4px;padding:4px 8px;color:inherit;font-size:11px;cursor:pointer;transition:all .2s;min-width:40px}.speed-btn:hover{background:#ffffff0d;border-color:#ffffff4d}.speed-value{font-weight:600}.speed-menu{position:absolute;bottom:100%;right:0;margin-bottom:4px;background:#000000f2;border:1px solid rgba(255,255,255,.2);border-radius:6px;padding:4px;z-index:100;min-width:60px}.speed-option{display:block;width:100%;background:transparent;border:none;color:#ffffffb3;padding:6px 12px;font-size:12px;cursor:pointer;transition:all .2s;text-align:left;border-radius:4px}.speed-option:hover{background:#ffffff1a;color:#fff}.speed-option.active{background:#
|
|
1
|
+
.waveform-player{font-family:inherit;color:inherit;line-height:var(--waveform-line-height, 1.4);--wfp-accent: #71717a}.waveform-player *{box-sizing:border-box}.waveform-body{display:flex;flex-direction:column;gap:var(--waveform-body-gap, 8px)}.waveform-track{display:flex;align-items:center;gap:var(--waveform-track-gap, 12px);position:relative}.waveform-btn{width:36px;height:36px;min-width:36px;border-radius:50%;border:2px solid currentColor;background:transparent;color:inherit;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s ease;padding:0;opacity:.9;flex-shrink:0}.waveform-btn:hover:not(:disabled){opacity:1;transform:scale(1.05)}.waveform-btn:disabled{cursor:not-allowed;opacity:.3}.waveform-btn>*{display:flex;align-items:center;justify-content:center;width:100%;height:100%}.waveform-btn svg{width:16px;height:16px;fill:currentColor;display:block}.waveform-icon-play svg{margin-left:1px}.waveform-container{flex:1;position:relative;min-height:60px;cursor:pointer;min-width:0;width:100%}.waveform-container:focus-visible{outline:2px solid currentColor}.waveform-container canvas{display:block;width:100%;height:100%;max-width:100%;transition:opacity .3s ease;position:relative;z-index:1}.waveform-info{display:flex;align-items:center;gap:8px;font-size:13px;min-height:20px}.waveform-text{flex:1;display:flex;flex-direction:column;gap:2px;min-width:0}.waveform-title{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:500}.waveform-subtitle{font-size:11px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.waveform-time{font-size:11px;white-space:nowrap;flex-shrink:0}.waveform-bpm{font-size:11px;white-space:nowrap;flex-shrink:0;display:inline-flex;align-items:center;gap:4px}.waveform-loading{position:absolute;inset:0;background:#0000001a;z-index:10}.waveform-error{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:#0003;z-index:10}.waveform-error-text{font-size:12px;opacity:.7;text-align:center;padding:0 20px}.waveform-markers{position:absolute;inset:0;pointer-events:none;z-index:5}.waveform-marker{position:absolute;top:0;width:2px;height:100%;background:#ffffff80;border:none;padding:0;cursor:pointer;pointer-events:all;transition:all .2s}.waveform-marker:hover{width:4px;z-index:20}.waveform-marker.active{width:4px;background:currentColor;z-index:10}.waveform-marker-tooltip{position:absolute;bottom:calc(100% + 4px);left:50%;transform:translate(-50%);background:#000000e6;color:#fff;padding:4px 8px;border-radius:4px;font-size:11px;white-space:nowrap;pointer-events:none;opacity:0;transition:opacity .2s;z-index:1000}.waveform-marker:hover .waveform-marker-tooltip{opacity:1}.waveform-btn:focus-visible{outline:2px solid currentColor;outline-offset:2px}.waveform-marker:focus-visible{outline:2px solid currentColor;outline-offset:1px;width:4px}.waveform-speed{position:relative;flex-shrink:0}.speed-btn{background:transparent;border:1px solid rgba(255,255,255,.2);border-radius:4px;padding:4px 8px;color:inherit;font-size:11px;cursor:pointer;transition:all .2s;min-width:40px}.speed-btn:hover{background:#ffffff0d;border-color:#ffffff4d}.speed-value{font-weight:600}.speed-menu{position:absolute;bottom:100%;right:0;margin-bottom:4px;background:#000000f2;border:1px solid rgba(255,255,255,.2);border-radius:6px;padding:4px;z-index:100;min-width:60px}.speed-option{display:block;width:100%;background:transparent;border:none;color:#ffffffb3;padding:6px 12px;font-size:12px;cursor:pointer;transition:all .2s;text-align:left;border-radius:4px}.speed-option:hover{background:#ffffff1a;color:#fff}.speed-option.active{background:#ffffff29;color:#fff;font-weight:600}.waveform-player.waveform-focused{outline:2px solid var(--wfp-accent);outline-offset:2px;border-radius:4px}.waveform-player:focus{outline:none}.waveform-player:focus-visible{outline:1px solid var(--wfp-accent);outline-offset:1px}.waveform-layout-preview .waveform-meta{display:none!important}.waveform-layout-preview .waveform-info{justify-content:center}.waveform-layout-preview .waveform-text{flex:0 1 auto;align-items:center;text-align:center}.waveform-player.waveform-focused{outline:none}.waveform-track.waveform-align-top{align-items:flex-start}.waveform-track.waveform-align-top .waveform-btn{margin-top:5px}.waveform-track.waveform-align-center{align-items:center}.waveform-track.waveform-align-bottom{align-items:flex-end}.waveform-track.waveform-align-bottom .waveform-btn{margin-bottom:5px}@media(max-width:480px){.waveform-btn{width:32px;height:32px;min-width:32px}.waveform-container{min-height:50px}.waveform-info{font-size:12px}.waveform-subtitle,.waveform-time,.waveform-bpm{font-size:10px}}@media(prefers-reduced-motion:reduce){.waveform-player *,.waveform-player *:before,.waveform-player *:after{transition-duration:.01ms!important;animation-duration:.01ms!important;animation-iteration-count:1!important}}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function A(e){return String(e??"").replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")}function _(e){if(typeof e!="string"||e==="")return!1;try{let t=new URL(e,"http://localhost/");return t.protocol==="http:"||t.protocol==="https:"}catch{return!1}}function w(e,t=0,i=1){return Math.max(t,Math.min(e,i))}function it(e){return e===void 0?void 0:e==="true"}function z(e){if(typeof e=="string"&&e.trim().startsWith("["))try{return JSON.parse(e)}catch{}return e}function L(e){let t={},i=(r,n=r)=>{let a=it(e.dataset[n]);a!==void 0&&(t[r]=a)},s=(r,n=r,a=!1)=>{let d=e.dataset[n];d&&(t[r]=a?parseFloat(d):parseInt(d,10))},o=(r,n=r)=>{let a=e.dataset[n];if(a)try{t[r]=JSON.parse(a)}catch(d){console.warn(`[WaveformPlayer] Invalid ${n} JSON:`,d)}};return e.dataset.src&&(t.url=e.dataset.src),e.dataset.url&&(t.url=e.dataset.url),s("height"),s("samples"),e.dataset.preload&&(t.preload=e.dataset.preload),e.dataset.audioMode&&(t.audioMode=e.dataset.audioMode),e.dataset.style&&(t.waveformStyle=e.dataset.style),e.dataset.waveformStyle&&(t.waveformStyle=e.dataset.waveformStyle),s("barWidth"),s("barSpacing"),s("barRadius"),e.dataset.buttonAlign&&(t.buttonAlign=e.dataset.buttonAlign),e.dataset.colorPreset&&(t.colorPreset=e.dataset.colorPreset),e.dataset.waveformColor&&(t.waveformColor=z(e.dataset.waveformColor)),e.dataset.progressColor&&(t.progressColor=z(e.dataset.progressColor)),e.dataset.buttonColor&&(t.buttonColor=e.dataset.buttonColor),e.dataset.buttonHoverColor&&(t.buttonHoverColor=e.dataset.buttonHoverColor),e.dataset.textColor&&(t.textColor=e.dataset.textColor),e.dataset.textSecondaryColor&&(t.textSecondaryColor=e.dataset.textSecondaryColor),e.dataset.backgroundColor&&(t.backgroundColor=e.dataset.backgroundColor),e.dataset.borderColor&&(t.borderColor=e.dataset.borderColor),e.dataset.color&&(t.waveformColor=e.dataset.color),e.dataset.theme&&(t.colorPreset=e.dataset.theme),i("autoplay"),i("showControls"),i("showInfo"),i("showTime"),i("showHoverTime"),i("showBPM","showBpm"),i("singlePlay"),i("playOnSeek"),e.dataset.title&&(t.title=e.dataset.title),e.dataset.subtitle&&(t.subtitle=e.dataset.subtitle),e.dataset.album&&(t.album=e.dataset.album),e.dataset.artwork&&(t.artwork=e.dataset.artwork),e.dataset.waveform&&(t.waveform=e.dataset.waveform),o("markers"),s("playbackRate","playbackRate",!0),i("showPlaybackSpeed"),o("playbackRates"),i("enableMediaSession"),i("showMarkers"),i("accessibleSeek"),e.dataset.seekLabel&&(t.seekLabel=e.dataset.seekLabel),e.dataset.errorText&&(t.errorText=e.dataset.errorText),e.dataset.playIcon&&(t.playIcon=e.dataset.playIcon),e.dataset.pauseIcon&&(t.pauseIcon=e.dataset.pauseIcon),t}function S(e){if(!e||isNaN(e)||e<0)return"0:00";let t=Math.floor(e/3600),i=Math.floor(e%3600/60),s=Math.floor(e%60);return t>0?`${t}:${i.toString().padStart(2,"0")}:${s.toString().padStart(2,"0")}`:`${i}:${s.toString().padStart(2,"0")}`}var st=0;function O(e){let t=e||"audio",i=5381;for(let s=0;s<t.length;s++)i=(i<<5)+i+t.charCodeAt(s)|0;return`wp_${(i>>>0).toString(36)}_${(st++).toString(36)}`}function x(e){if(!e)return"Audio";let t=e.split("/");return t[t.length-1].split(".")[0].replace(/[-_]/g," ").replace(/\b\w/g,o=>o.toUpperCase())}function q(e){let t=typeof e=="string"?e.match(/\d+/g):null;if(!t||t.length<3)return null;let[i,s,o]=t.map(Number);return(i*299+s*587+o*114)/1e3}function D(...e){let t={};for(let i of e)for(let s in i)i[s]!==null&&i[s]!==void 0&&(t[s]=i[s]);return t}function F(e,t){let i;return function(...o){let r=()=>{clearTimeout(i),e(...o)};clearTimeout(i),i=setTimeout(r,t)}}function T(e,t){if(e.length===t)return e;if(e.length===0||t===0)return[];let i=[];if(t>e.length){let s=(e.length-1)/(t-1);for(let o=0;o<t;o++){let r=o*s,n=Math.floor(r),a=Math.ceil(r),d=r-n;if(a>=e.length)i.push(e[e.length-1]);else if(n===a)i.push(e[n]);else{let l=e[n]*(1-d)+e[a]*d;i.push(l)}}}else{let s=e.length/t;for(let o=0;o<t;o++){let r=Math.floor(o*s),n=Math.floor((o+1)*s),a=0,d=0;for(let l=r;l<=n&&l<e.length;l++)e[l]>a&&(a=e[l]),d++;if(d===0){let l=Math.min(Math.round(o*s),e.length-1);a=e[l]}i.push(a)}}return i}function P(e,t,i){if(!Array.isArray(t))return t;if(t.length===1)return t[0];let s=e.createLinearGradient(0,0,0,i);return t.forEach((o,r)=>s.addColorStop(r/(t.length-1),o)),s}function E(e,t,i,s,o,r){if((Array.isArray(r)?r.some(a=>a>0):r>0)&&typeof e.roundRect=="function"){let a=Math.min(s/2,Math.abs(o)/2),d=l=>w(l,0,a);e.beginPath(),e.roundRect(t,i,s,o,Array.isArray(r)?r.map(d):d(r)),e.fill()}else e.fillRect(t,i,s,o)}function j(e,t){return(e.barRadius||0)*t}function ot(e,t){let i=j(e,t);return[i,i,0,0]}function U(e,t,i,s,o){let r=o/2;e.beginPath(),e.moveTo(t,s-r),e.lineTo(i-r,s-r),e.arc(i-r,s,r,-Math.PI/2,Math.PI/2),e.lineTo(t,s+r),e.arc(t,s,r,Math.PI/2,-Math.PI/2),e.closePath()}function R(e,t,i,s,o){let r=window.devicePixelRatio||1,n=o.barWidth*r,a=o.barSpacing*r,d=Math.floor(t.width/(n+a)),l=T(i,d),h=t.height,c=s*t.width,g=ot(o,r),b=P(e,o.color,h),p=P(e,o.progressColor,h);e.clearRect(0,0,t.width,t.height),e.fillStyle=b;for(let m=0;m<l.length;m++){let u=m*(n+a);if(u+n>t.width)break;let y=l[m]*h*.9,f=h-y;E(e,u,f,n,y,g)}e.save(),e.beginPath(),e.rect(0,0,c,h),e.clip(),e.fillStyle=p;for(let m=0;m<l.length;m++){let u=m*(n+a);if(u>c)break;let y=l[m]*h*.9,f=h-y;E(e,u,f,n,y,g)}e.restore()}function rt(e,t,i,s,o){let r=window.devicePixelRatio||1,n=o.barWidth*r,a=o.barSpacing*r,d=Math.floor(t.width/(n+a)),l=T(i,d),h=t.height,c=h/2,g=s*t.width,b=j(o,r),p=[b,b,0,0],m=[0,0,b,b],u=P(e,o.color,h),y=P(e,o.progressColor,h);e.clearRect(0,0,t.width,t.height),e.fillStyle=u;for(let f=0;f<l.length;f++){let v=f*(n+a);if(v+n>t.width)break;let k=l[f]*h*.45;E(e,v,c-k,n,k,p),E(e,v,c,n,k,m)}e.save(),e.beginPath(),e.rect(0,0,g,h),e.clip(),e.fillStyle=y;for(let f=0;f<l.length;f++){let v=f*(n+a);if(v>g)break;let k=l[f]*h*.45;E(e,v,c-k,n,k,p),E(e,v,c,n,k,m)}e.restore()}function at(e,t,i,s,o){let r=t.width,n=t.height,a=n/2,d=n*.35;e.clearRect(0,0,r,n);let l=(h,c,g=1,b=!1)=>{b&&(e.shadowBlur=12,e.shadowColor=h),e.strokeStyle=h,e.lineWidth=c,e.lineCap="round",e.lineJoin="round",e.beginPath(),e.moveTo(0,a);let p=[],m=Math.floor(i.length*g);for(let u=0;u<m;u++){let y=u/(i.length-1)*r,f=i[u],v=Math.sin(u*.1)*f,k=a+v*d;p.push({x:y,y:k})}for(let u=0;u<p.length-1;u++){let y=p[u].x+(p[u+1].x-p[u].x)*.5,f=p[u].y,v=p[u+1].x-(p[u+1].x-p[u].x)*.5,k=p[u+1].y;e.bezierCurveTo(y,f,v,k,p[u+1].x,p[u+1].y)}e.stroke(),b&&(e.shadowBlur=0)};e.strokeStyle="rgba(255, 255, 255, 0.03)",e.lineWidth=.5,e.beginPath(),e.moveTo(0,a),e.lineTo(r,a),e.stroke();for(let h=0;h<=10;h++){let c=r/10*h;e.beginPath(),e.moveTo(c,0),e.lineTo(c,n),e.stroke()}l(o.color,2,1,!1),s>0&&l(o.progressColor,3,s,!0)}function N(e,t,i,s,o){let r=window.devicePixelRatio||1,n=(o.barWidth||3)*r,a=(o.barSpacing||1)*r,d=Math.floor(t.width/(n+a)),l=T(i,d),h=t.height,c=4*r,g=2*r,b=s*t.width,p=h/2,m=P(e,o.color,h),u=P(e,o.progressColor,h);e.clearRect(0,0,t.width,t.height);for(let y=0;y<l.length;y++){let f=y*(n+a);if(f+n>t.width)break;let v=l[y]*h*.9,k=Math.floor(v/(c+g));e.fillStyle=f<b?u:m;for(let M=0;M<k;M++){let H=M*(c+g);e.fillRect(f,p-H-c,n,c),M>0&&e.fillRect(f,p+H,n,c)}}}function V(e,t,i,s,o){let r=window.devicePixelRatio||1,n=(o.barWidth||2)*r,a=(o.barSpacing||3)*r,d=Math.floor(t.width/(n+a)),l=T(i,d),h=t.height,c=Math.max(1.5*r,n/2),g=s*t.width,b=h/2,p=P(e,o.color,h),m=P(e,o.progressColor,h);e.clearRect(0,0,t.width,t.height);for(let u=0;u<l.length;u++){let y=u*(n+a)+n/2;if(y>t.width)break;let f=l[u]*h*.9;e.fillStyle=y<g?m:p,e.beginPath(),e.arc(y,b-f/2,c,0,Math.PI*2),e.fill(),e.beginPath(),e.arc(y,b+f/2,c,0,Math.PI*2),e.fill()}}function nt(e,t,i,s,o){let r=t.width,n=t.height,a=n/2,d=4,l=d/2;if(e.clearRect(0,0,r,n),e.fillStyle=o.color||"rgba(255, 255, 255, 0.2)",U(e,l,r,a,d),e.fill(),s>0){let h=Math.max(l*2,s*r);e.shadowBlur=8,e.shadowColor=o.progressColor,e.fillStyle=o.progressColor||"rgba(255, 255, 255, 0.9)",U(e,l,h,a,d),e.fill(),e.shadowBlur=0;let c=8,g=h;e.shadowBlur=4,e.shadowColor="rgba(0, 0, 0, 0.3)",e.shadowOffsetY=2,e.fillStyle="#ffffff",e.beginPath(),e.arc(g,a,c,0,Math.PI*2),e.fill(),e.shadowBlur=0,e.shadowOffsetY=0,e.fillStyle=o.progressColor||"rgba(255, 255, 255, 0.9)",e.beginPath(),e.arc(g,a,c*.4,0,Math.PI*2),e.fill()}}var lt={bars:R,bar:R,mirror:rt,line:at,blocks:N,block:N,dots:V,dot:V,seekbar:nt};function J(e,t,i,s,o){(lt[o.waveformStyle]||R)(e,t,i,s,o)}function Y(e){try{let t=e.getChannelData(0),i=e.sampleRate,s=ht(t,i);if(s.length<2)return 120;let o=[];for(let d=1;d<s.length;d++)o.push((s[d]-s[d-1])/i);let r={};o.forEach(d=>{let l=60/d,h=Math.round(l/3)*3;h>60&&h<200&&(r[h]=(r[h]||0)+1)});let n=0,a=120;for(let[d,l]of Object.entries(r))l>n&&(n=l,a=parseInt(d));return a<70&&r[a*2]?a*=2:a>160&&r[Math.round(a/2)]&&(a=Math.round(a/2)),a-1}catch(t){return console.warn("[WaveformPlayer] BPM detection failed:",t),null}}function ht(e,t){let o=[],r=0;for(let n=0;n<e.length-2048;n+=1024){let a=0;for(let h=n;h<n+2048;h++)a+=e[h]*e[h];a=a/2048;let d=a-r,l=r*1.8+.01;if(d>l&&a>.01){let h=o[o.length-1]||0,c=t*.15;n-h>c&&o.push(n)}r=a*.8+r*.2}return o}function dt(e,t=200){let i=e.length/t,s=~~(i/10)||1,o=e.numberOfChannels,r=[];for(let a=0;a<o;a++){let d=e.getChannelData(a);for(let l=0;l<t;l++){let h=~~(l*i),c=~~(h+i),g=0,b=0;for(let m=h;m<c;m+=s){let u=d[m];u>b&&(b=u),u<g&&(g=u)}let p=Math.max(Math.abs(b),Math.abs(g));(a===0||p>r[l])&&(r[l]=p)}}let n=Math.max(...r);return n>0?r.map(a=>a/n):r}async function B(e,t=200,i=!1){let s;try{let o=window.AudioContext||window.webkitAudioContext;s=new o;let n=await(await fetch(e)).arrayBuffer(),a=await s.decodeAudioData(n),d=dt(a,t);d=ut(d);let l=null;return i&&(l=Y(a)),{peaks:d,bpm:l}}finally{s&&s.close()}}function G(e=200){let t=[];for(let i=0;i<e;i++){let s=Math.random()*.5+.3,o=Math.sin(i/e*Math.PI*4)*.2;t.push(w(s+o,.1,1))}return t}function ut(e,t=.95){let i=Math.max(...e);if(i===0||i>t)return e;let s=t/i;return e.map(o=>o*s)}function K(e){let t=document.documentElement,i=document.body;return t.classList.contains(e)||t.classList.contains(`${e}-mode`)||t.classList.contains(`theme-${e}`)||t.getAttribute("data-theme")===e||t.getAttribute("data-color-scheme")===e||i.classList.contains(e)||i.classList.contains(`${e}-mode`)||i.getAttribute("data-theme")===e}function ct(){if(K("dark"))return"dark";if(K("light"))return"light";try{let e=getComputedStyle(document.body).backgroundColor,t=q(e);if(t!==null){if(t>128)return"light";if(t<128)return"dark"}}catch{}if(window.matchMedia){if(window.matchMedia("(prefers-color-scheme: dark)").matches)return"dark";if(window.matchMedia("(prefers-color-scheme: light)").matches)return"light"}return"dark"}var W={dark:{waveformColor:"rgba(255, 255, 255, 0.3)",progressColor:"rgba(255, 255, 255, 0.9)",buttonColor:"rgba(255, 255, 255, 0.9)",buttonHoverColor:"rgba(255, 255, 255, 1)",textColor:"#ffffff",textSecondaryColor:"rgba(255, 255, 255, 0.6)",backgroundColor:"rgba(255, 255, 255, 0.03)",borderColor:"rgba(255, 255, 255, 0.1)"},light:{waveformColor:"rgba(0, 0, 0, 0.2)",progressColor:"rgba(0, 0, 0, 0.8)",buttonColor:"rgba(0, 0, 0, 0.8)",buttonHoverColor:"rgba(0, 0, 0, 0.9)",textColor:"#333333",textSecondaryColor:"rgba(0, 0, 0, 0.6)",backgroundColor:"rgba(0, 0, 0, 0.02)",borderColor:"rgba(0, 0, 0, 0.1)"}};function Q(e){if(e&&W[e])return W[e];let t=ct();return W[t]}var Z={url:"",height:60,samples:200,preload:"metadata",audioMode:"self",playbackRate:1,showPlaybackSpeed:!1,playbackRates:[.5,.75,1,1.25,1.5,1.75,2],buttonAlign:"auto",waveformStyle:"mirror",barWidth:2,barSpacing:0,barRadius:0,colorPreset:null,waveformColor:null,progressColor:null,buttonColor:null,buttonHoverColor:null,textColor:null,textSecondaryColor:null,backgroundColor:null,borderColor:null,autoplay:!1,showControls:!0,showInfo:!0,showTime:!0,showHoverTime:!1,showBPM:!1,singlePlay:!0,playOnSeek:!0,enableMediaSession:!0,markers:[],showMarkers:!0,accessibleSeek:!0,seekLabel:null,title:null,subtitle:null,artwork:null,album:"",errorText:"Unable to load audio",playIcon:'<svg viewBox="0 0 24 24" width="16" height="16"><path d="M8 5v14l11-7z"/></svg>',pauseIcon:'<svg viewBox="0 0 24 24" width="16" height="16"><path d="M6 4h4v16H6zM14 4h4v16h-4z"/></svg>',onLoad:null,onPlay:null,onPause:null,onEnd:null,onError:null,onTimeUpdate:null},X={bars:{barWidth:3,barSpacing:1},mirror:{barWidth:2,barSpacing:0},line:{barWidth:2,barSpacing:0},blocks:{barWidth:4,barSpacing:2},dots:{barWidth:3,barSpacing:3},seekbar:{barWidth:1,barSpacing:0}};var tt=5,et=10,C=class e{static instances=new Map;static currentlyPlaying=null;constructor(t,i={}){if(this.container=typeof t=="string"?document.querySelector(t):t,!this.container)throw new Error("[WaveformPlayer] Container element not found");let s=L(this.container),o={...i};o.style&&!o.waveformStyle&&(o.waveformStyle=o.style),o.src&&!o.url&&(o.url=o.src),this.options=D(Z,s,o);let r=Q(this.options.colorPreset);for(let[a,d]of Object.entries(r))(this.options[a]===null||this.options[a]===void 0)&&(this.options[a]=d);let n=X[this.options.waveformStyle];n&&(s.barWidth===void 0&&i.barWidth===void 0&&(this.options.barWidth=n.barWidth),s.barSpacing===void 0&&i.barSpacing===void 0&&(this.options.barSpacing=n.barSpacing)),this.audio=null,this.canvas=null,this.ctx=null,this.waveformData=[],this.progress=0,this.isPlaying=!1,this.isLoading=!1,this.hasError=!1,this.updateTimer=null,this.resizeObserver=null,this._ac=new AbortController,this.id=this.container.id||O(this.options.url),e.instances.set(this.id,this),this.init(),setTimeout(()=>{this._emit("waveformplayer:ready",{player:this,url:this.options.url})},100)}_emit(t,i,s=!1){let o=new CustomEvent(t,{bubbles:!0,cancelable:s,detail:i});return this.container.dispatchEvent(o),o}_requestSeek(t){this._emit("waveformplayer:request-seek",{...this._buildTrackDetail(),percent:t},!0).defaultPrevented||(this.progress=t,this.drawWaveform?.())}init(){this.createDOM(),this.createAudio(),this.initPlaybackSpeed(),this.initKeyboardControls(),this.initSeekControl(),this.bindEvents(),this.setupResizeObserver(),requestAnimationFrame(()=>{this.resizeCanvas(),this.options.url&&this.load(this.options.url).then(()=>{this.options.autoplay&&this.play()?.catch(()=>{})}).catch(t=>{console.error("[WaveformPlayer] Failed to load audio:",t)})})}createDOM(){this.container.innerHTML="",this.container.className="waveform-player";let t=this.options.buttonAlign;t==="auto"&&(this.options.waveformStyle==="bars"?t="bottom":t="center");let i=this.options.showControls?`
|
|
1
|
+
function A(e){return String(e??"").replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")}function _(e){if(typeof e!="string"||e==="")return!1;try{let t=new URL(e,"http://localhost/");return t.protocol==="http:"||t.protocol==="https:"}catch{return!1}}function w(e,t=0,i=1){return Math.max(t,Math.min(e,i))}function it(e){return e===void 0?void 0:e==="true"}function z(e){if(typeof e=="string"&&e.trim().startsWith("["))try{return JSON.parse(e)}catch{}return e}function L(e){let t={},i=(r,n=r)=>{let a=it(e.dataset[n]);a!==void 0&&(t[r]=a)},s=(r,n=r,a=!1)=>{let d=e.dataset[n];d&&(t[r]=a?parseFloat(d):parseInt(d,10))},o=(r,n=r)=>{let a=e.dataset[n];if(a)try{t[r]=JSON.parse(a)}catch(d){console.warn(`[WaveformPlayer] Invalid ${n} JSON:`,d)}};return e.dataset.src&&(t.url=e.dataset.src),e.dataset.url&&(t.url=e.dataset.url),s("height"),s("samples"),e.dataset.preload&&(t.preload=e.dataset.preload),e.dataset.audioMode&&(t.audioMode=e.dataset.audioMode),e.dataset.style&&(t.waveformStyle=e.dataset.style),e.dataset.waveformStyle&&(t.waveformStyle=e.dataset.waveformStyle),s("barWidth"),s("barSpacing"),s("barRadius"),e.dataset.buttonAlign&&(t.buttonAlign=e.dataset.buttonAlign),e.dataset.layout&&(t.layout=e.dataset.layout),e.dataset.colorPreset&&(t.colorPreset=e.dataset.colorPreset),e.dataset.waveformColor&&(t.waveformColor=z(e.dataset.waveformColor)),e.dataset.progressColor&&(t.progressColor=z(e.dataset.progressColor)),e.dataset.buttonColor&&(t.buttonColor=e.dataset.buttonColor),e.dataset.buttonHoverColor&&(t.buttonHoverColor=e.dataset.buttonHoverColor),e.dataset.textColor&&(t.textColor=e.dataset.textColor),e.dataset.textSecondaryColor&&(t.textSecondaryColor=e.dataset.textSecondaryColor),e.dataset.backgroundColor&&(t.backgroundColor=e.dataset.backgroundColor),e.dataset.borderColor&&(t.borderColor=e.dataset.borderColor),e.dataset.color&&(t.waveformColor=e.dataset.color),e.dataset.theme&&(t.colorPreset=e.dataset.theme),i("autoplay"),i("showControls"),i("showInfo"),i("showTime"),i("showHoverTime"),i("showBPM","showBpm"),i("singlePlay"),i("playOnSeek"),e.dataset.title&&(t.title=e.dataset.title),e.dataset.subtitle&&(t.subtitle=e.dataset.subtitle),e.dataset.album&&(t.album=e.dataset.album),e.dataset.artwork&&(t.artwork=e.dataset.artwork),e.dataset.waveform&&(t.waveform=e.dataset.waveform),o("markers"),s("playbackRate","playbackRate",!0),i("showPlaybackSpeed"),o("playbackRates"),i("enableMediaSession"),i("showMarkers"),i("accessibleSeek"),e.dataset.seekLabel&&(t.seekLabel=e.dataset.seekLabel),e.dataset.errorText&&(t.errorText=e.dataset.errorText),e.dataset.playIcon&&(t.playIcon=e.dataset.playIcon),e.dataset.pauseIcon&&(t.pauseIcon=e.dataset.pauseIcon),t}function S(e){if(!e||isNaN(e)||e<0)return"0:00";let t=Math.floor(e/3600),i=Math.floor(e%3600/60),s=Math.floor(e%60);return t>0?`${t}:${i.toString().padStart(2,"0")}:${s.toString().padStart(2,"0")}`:`${i}:${s.toString().padStart(2,"0")}`}var st=0;function O(e){let t=e||"audio",i=5381;for(let s=0;s<t.length;s++)i=(i<<5)+i+t.charCodeAt(s)|0;return`wp_${(i>>>0).toString(36)}_${(st++).toString(36)}`}function x(e){if(!e)return"Audio";let t=e.split("/");return t[t.length-1].split(".")[0].replace(/[-_]/g," ").replace(/\b\w/g,o=>o.toUpperCase())}function q(e){let t=typeof e=="string"?e.match(/\d+/g):null;if(!t||t.length<3)return null;let[i,s,o]=t.map(Number);return(i*299+s*587+o*114)/1e3}function D(...e){let t={};for(let i of e)for(let s in i)i[s]!==null&&i[s]!==void 0&&(t[s]=i[s]);return t}function F(e,t){let i;return function(...o){let r=()=>{clearTimeout(i),e(...o)};clearTimeout(i),i=setTimeout(r,t)}}function T(e,t){if(e.length===t)return e;if(e.length===0||t===0)return[];let i=[];if(t>e.length){let s=(e.length-1)/(t-1);for(let o=0;o<t;o++){let r=o*s,n=Math.floor(r),a=Math.ceil(r),d=r-n;if(a>=e.length)i.push(e[e.length-1]);else if(n===a)i.push(e[n]);else{let l=e[n]*(1-d)+e[a]*d;i.push(l)}}}else{let s=e.length/t;for(let o=0;o<t;o++){let r=Math.floor(o*s),n=Math.floor((o+1)*s),a=0,d=0;for(let l=r;l<=n&&l<e.length;l++)e[l]>a&&(a=e[l]),d++;if(d===0){let l=Math.min(Math.round(o*s),e.length-1);a=e[l]}i.push(a)}}return i}function P(e,t,i){if(!Array.isArray(t))return t;if(t.length===1)return t[0];let s=e.createLinearGradient(0,0,0,i);return t.forEach((o,r)=>s.addColorStop(r/(t.length-1),o)),s}function E(e,t,i,s,o,r){if((Array.isArray(r)?r.some(a=>a>0):r>0)&&typeof e.roundRect=="function"){let a=Math.min(s/2,Math.abs(o)/2),d=l=>w(l,0,a);e.beginPath(),e.roundRect(t,i,s,o,Array.isArray(r)?r.map(d):d(r)),e.fill()}else e.fillRect(t,i,s,o)}function j(e,t){return(e.barRadius||0)*t}function ot(e,t){let i=j(e,t);return[i,i,0,0]}function U(e,t,i,s,o){let r=o/2;e.beginPath(),e.moveTo(t,s-r),e.lineTo(i-r,s-r),e.arc(i-r,s,r,-Math.PI/2,Math.PI/2),e.lineTo(t,s+r),e.arc(t,s,r,Math.PI/2,-Math.PI/2),e.closePath()}function R(e,t,i,s,o){let r=window.devicePixelRatio||1,n=o.barWidth*r,a=o.barSpacing*r,d=Math.floor(t.width/(n+a)),l=T(i,d),h=t.height,c=s*t.width,g=ot(o,r),b=P(e,o.color,h),p=P(e,o.progressColor,h);e.clearRect(0,0,t.width,t.height),e.fillStyle=b;for(let m=0;m<l.length;m++){let u=m*(n+a);if(u+n>t.width)break;let y=l[m]*h*.9,f=h-y;E(e,u,f,n,y,g)}e.save(),e.beginPath(),e.rect(0,0,c,h),e.clip(),e.fillStyle=p;for(let m=0;m<l.length;m++){let u=m*(n+a);if(u>c)break;let y=l[m]*h*.9,f=h-y;E(e,u,f,n,y,g)}e.restore()}function rt(e,t,i,s,o){let r=window.devicePixelRatio||1,n=o.barWidth*r,a=o.barSpacing*r,d=Math.floor(t.width/(n+a)),l=T(i,d),h=t.height,c=h/2,g=s*t.width,b=j(o,r),p=[b,b,0,0],m=[0,0,b,b],u=P(e,o.color,h),y=P(e,o.progressColor,h);e.clearRect(0,0,t.width,t.height),e.fillStyle=u;for(let f=0;f<l.length;f++){let v=f*(n+a);if(v+n>t.width)break;let k=l[f]*h*.45;E(e,v,c-k,n,k,p),E(e,v,c,n,k,m)}e.save(),e.beginPath(),e.rect(0,0,g,h),e.clip(),e.fillStyle=y;for(let f=0;f<l.length;f++){let v=f*(n+a);if(v>g)break;let k=l[f]*h*.45;E(e,v,c-k,n,k,p),E(e,v,c,n,k,m)}e.restore()}function at(e,t,i,s,o){let r=t.width,n=t.height,a=n/2,d=n*.35;e.clearRect(0,0,r,n);let l=(h,c,g=1,b=!1)=>{b&&(e.shadowBlur=12,e.shadowColor=h),e.strokeStyle=h,e.lineWidth=c,e.lineCap="round",e.lineJoin="round",e.beginPath(),e.moveTo(0,a);let p=[],m=Math.floor(i.length*g);for(let u=0;u<m;u++){let y=u/(i.length-1)*r,f=i[u],v=Math.sin(u*.1)*f,k=a+v*d;p.push({x:y,y:k})}for(let u=0;u<p.length-1;u++){let y=p[u].x+(p[u+1].x-p[u].x)*.5,f=p[u].y,v=p[u+1].x-(p[u+1].x-p[u].x)*.5,k=p[u+1].y;e.bezierCurveTo(y,f,v,k,p[u+1].x,p[u+1].y)}e.stroke(),b&&(e.shadowBlur=0)};e.strokeStyle="rgba(255, 255, 255, 0.03)",e.lineWidth=.5,e.beginPath(),e.moveTo(0,a),e.lineTo(r,a),e.stroke();for(let h=0;h<=10;h++){let c=r/10*h;e.beginPath(),e.moveTo(c,0),e.lineTo(c,n),e.stroke()}l(o.color,2,1,!1),s>0&&l(o.progressColor,3,s,!0)}function N(e,t,i,s,o){let r=window.devicePixelRatio||1,n=(o.barWidth||3)*r,a=(o.barSpacing||1)*r,d=Math.floor(t.width/(n+a)),l=T(i,d),h=t.height,c=4*r,g=2*r,b=s*t.width,p=h/2,m=P(e,o.color,h),u=P(e,o.progressColor,h);e.clearRect(0,0,t.width,t.height);for(let y=0;y<l.length;y++){let f=y*(n+a);if(f+n>t.width)break;let v=l[y]*h*.9,k=Math.floor(v/(c+g));e.fillStyle=f<b?u:m;for(let M=0;M<k;M++){let H=M*(c+g);e.fillRect(f,p-H-c,n,c),M>0&&e.fillRect(f,p+H,n,c)}}}function V(e,t,i,s,o){let r=window.devicePixelRatio||1,n=(o.barWidth||2)*r,a=(o.barSpacing||3)*r,d=Math.floor(t.width/(n+a)),l=T(i,d),h=t.height,c=Math.max(1.5*r,n/2),g=s*t.width,b=h/2,p=P(e,o.color,h),m=P(e,o.progressColor,h);e.clearRect(0,0,t.width,t.height);for(let u=0;u<l.length;u++){let y=u*(n+a)+n/2;if(y>t.width)break;let f=l[u]*h*.9;e.fillStyle=y<g?m:p,e.beginPath(),e.arc(y,b-f/2,c,0,Math.PI*2),e.fill(),e.beginPath(),e.arc(y,b+f/2,c,0,Math.PI*2),e.fill()}}function nt(e,t,i,s,o){let r=t.width,n=t.height,a=n/2,d=4,l=d/2;if(e.clearRect(0,0,r,n),e.fillStyle=o.color||"rgba(255, 255, 255, 0.2)",U(e,l,r,a,d),e.fill(),s>0){let h=Math.max(l*2,s*r);e.shadowBlur=8,e.shadowColor=o.progressColor,e.fillStyle=o.progressColor||"rgba(255, 255, 255, 0.9)",U(e,l,h,a,d),e.fill(),e.shadowBlur=0;let c=8,g=h;e.shadowBlur=4,e.shadowColor="rgba(0, 0, 0, 0.3)",e.shadowOffsetY=2,e.fillStyle="#ffffff",e.beginPath(),e.arc(g,a,c,0,Math.PI*2),e.fill(),e.shadowBlur=0,e.shadowOffsetY=0,e.fillStyle=o.progressColor||"rgba(255, 255, 255, 0.9)",e.beginPath(),e.arc(g,a,c*.4,0,Math.PI*2),e.fill()}}var lt={bars:R,bar:R,mirror:rt,line:at,blocks:N,block:N,dots:V,dot:V,seekbar:nt};function J(e,t,i,s,o){(lt[o.waveformStyle]||R)(e,t,i,s,o)}function Y(e){try{let t=e.getChannelData(0),i=e.sampleRate,s=ht(t,i);if(s.length<2)return 120;let o=[];for(let d=1;d<s.length;d++)o.push((s[d]-s[d-1])/i);let r={};o.forEach(d=>{let l=60/d,h=Math.round(l/3)*3;h>60&&h<200&&(r[h]=(r[h]||0)+1)});let n=0,a=120;for(let[d,l]of Object.entries(r))l>n&&(n=l,a=parseInt(d));return a<70&&r[a*2]?a*=2:a>160&&r[Math.round(a/2)]&&(a=Math.round(a/2)),a-1}catch(t){return console.warn("[WaveformPlayer] BPM detection failed:",t),null}}function ht(e,t){let o=[],r=0;for(let n=0;n<e.length-2048;n+=1024){let a=0;for(let h=n;h<n+2048;h++)a+=e[h]*e[h];a=a/2048;let d=a-r,l=r*1.8+.01;if(d>l&&a>.01){let h=o[o.length-1]||0,c=t*.15;n-h>c&&o.push(n)}r=a*.8+r*.2}return o}function dt(e,t=200){let i=e.length/t,s=~~(i/10)||1,o=e.numberOfChannels,r=[];for(let a=0;a<o;a++){let d=e.getChannelData(a);for(let l=0;l<t;l++){let h=~~(l*i),c=~~(h+i),g=0,b=0;for(let m=h;m<c;m+=s){let u=d[m];u>b&&(b=u),u<g&&(g=u)}let p=Math.max(Math.abs(b),Math.abs(g));(a===0||p>r[l])&&(r[l]=p)}}let n=Math.max(...r);return n>0?r.map(a=>a/n):r}async function B(e,t=200,i=!1){let s;try{let o=window.AudioContext||window.webkitAudioContext;s=new o;let n=await(await fetch(e)).arrayBuffer(),a=await s.decodeAudioData(n),d=dt(a,t);d=ut(d);let l=null;return i&&(l=Y(a)),{peaks:d,bpm:l}}finally{s&&s.close()}}function G(e=200){let t=[];for(let i=0;i<e;i++){let s=Math.random()*.5+.3,o=Math.sin(i/e*Math.PI*4)*.2;t.push(w(s+o,.1,1))}return t}function ut(e,t=.95){let i=Math.max(...e);if(i===0||i>t)return e;let s=t/i;return e.map(o=>o*s)}function K(e){let t=document.documentElement,i=document.body;return t.classList.contains(e)||t.classList.contains(`${e}-mode`)||t.classList.contains(`theme-${e}`)||t.getAttribute("data-theme")===e||t.getAttribute("data-color-scheme")===e||i.classList.contains(e)||i.classList.contains(`${e}-mode`)||i.getAttribute("data-theme")===e}function ct(){if(K("dark"))return"dark";if(K("light"))return"light";try{let e=getComputedStyle(document.body).backgroundColor,t=q(e);if(t!==null){if(t>128)return"light";if(t<128)return"dark"}}catch{}if(window.matchMedia){if(window.matchMedia("(prefers-color-scheme: dark)").matches)return"dark";if(window.matchMedia("(prefers-color-scheme: light)").matches)return"light"}return"dark"}var W={dark:{waveformColor:"rgba(255, 255, 255, 0.3)",progressColor:"rgba(255, 255, 255, 0.9)",buttonColor:"rgba(255, 255, 255, 0.9)",buttonHoverColor:"rgba(255, 255, 255, 1)",textColor:"#ffffff",textSecondaryColor:"rgba(255, 255, 255, 0.6)",backgroundColor:"rgba(255, 255, 255, 0.03)",borderColor:"rgba(255, 255, 255, 0.1)"},light:{waveformColor:"rgba(0, 0, 0, 0.2)",progressColor:"rgba(0, 0, 0, 0.8)",buttonColor:"rgba(0, 0, 0, 0.8)",buttonHoverColor:"rgba(0, 0, 0, 0.9)",textColor:"#333333",textSecondaryColor:"rgba(0, 0, 0, 0.6)",backgroundColor:"rgba(0, 0, 0, 0.02)",borderColor:"rgba(0, 0, 0, 0.1)"}};function Q(e){if(e&&W[e])return W[e];let t=ct();return W[t]}var Z={url:"",height:60,samples:200,preload:"metadata",audioMode:"self",playbackRate:1,showPlaybackSpeed:!1,playbackRates:[.5,.75,1,1.25,1.5,1.75,2],buttonAlign:"auto",layout:"default",waveformStyle:"mirror",barWidth:2,barSpacing:0,barRadius:0,colorPreset:null,waveformColor:null,progressColor:null,buttonColor:null,buttonHoverColor:null,textColor:null,textSecondaryColor:null,backgroundColor:null,borderColor:null,autoplay:!1,showControls:!0,showInfo:!0,showTime:!0,showHoverTime:!1,showBPM:!1,singlePlay:!0,playOnSeek:!0,enableMediaSession:!0,markers:[],showMarkers:!0,accessibleSeek:!0,seekLabel:null,title:null,subtitle:null,artwork:null,album:"",errorText:"Unable to load audio",playIcon:'<svg viewBox="0 0 24 24" width="16" height="16"><path d="M8 5v14l11-7z"/></svg>',pauseIcon:'<svg viewBox="0 0 24 24" width="16" height="16"><path d="M6 4h4v16H6zM14 4h4v16h-4z"/></svg>',onLoad:null,onPlay:null,onPause:null,onEnd:null,onError:null,onTimeUpdate:null},X={bars:{barWidth:3,barSpacing:1},mirror:{barWidth:2,barSpacing:0},line:{barWidth:2,barSpacing:0},blocks:{barWidth:4,barSpacing:2},dots:{barWidth:3,barSpacing:3},seekbar:{barWidth:1,barSpacing:0}};var tt=5,et=10,C=class e{static instances=new Map;static currentlyPlaying=null;constructor(t,i={}){if(this.container=typeof t=="string"?document.querySelector(t):t,!this.container)throw new Error("[WaveformPlayer] Container element not found");let s=L(this.container),o={...i};o.style&&!o.waveformStyle&&(o.waveformStyle=o.style),o.src&&!o.url&&(o.url=o.src),this.options=D(Z,s,o);let r=Q(this.options.colorPreset);for(let[a,d]of Object.entries(r))(this.options[a]===null||this.options[a]===void 0)&&(this.options[a]=d);let n=X[this.options.waveformStyle];n&&(s.barWidth===void 0&&i.barWidth===void 0&&(this.options.barWidth=n.barWidth),s.barSpacing===void 0&&i.barSpacing===void 0&&(this.options.barSpacing=n.barSpacing)),this.audio=null,this.canvas=null,this.ctx=null,this.waveformData=[],this.progress=0,this.isPlaying=!1,this.isLoading=!1,this.hasError=!1,this.updateTimer=null,this.resizeObserver=null,this._ac=new AbortController,this.id=this.container.id||O(this.options.url),e.instances.set(this.id,this),this.init(),setTimeout(()=>{this._emit("waveformplayer:ready",{player:this,url:this.options.url})},100)}_emit(t,i,s=!1){let o=new CustomEvent(t,{bubbles:!0,cancelable:s,detail:i});return this.container.dispatchEvent(o),o}_requestSeek(t){this._emit("waveformplayer:request-seek",{...this._buildTrackDetail(),percent:t},!0).defaultPrevented||(this.progress=t,this.drawWaveform?.())}init(){this.createDOM(),this.createAudio(),this.initPlaybackSpeed(),this.initKeyboardControls(),this.initSeekControl(),this.bindEvents(),this.setupResizeObserver(),requestAnimationFrame(()=>{this.resizeCanvas(),this.options.url&&this.load(this.options.url).then(()=>{this.options.autoplay&&this.play()?.catch(()=>{})}).catch(t=>{console.error("[WaveformPlayer] Failed to load audio:",t)})})}createDOM(){this.container.innerHTML="",this.container.className="waveform-player";let t=this.options.buttonAlign;t==="auto"&&(this.options.waveformStyle==="bars"?t="bottom":t="center"),this.options.layout==="preview"&&this.container.classList.add("waveform-layout-preview");let s=this.options.showControls?`
|
|
2
2
|
<button class="waveform-btn" aria-label="Play/Pause" style="
|
|
3
3
|
border-color: ${this.options.buttonColor};
|
|
4
4
|
color: ${this.options.buttonColor};
|
|
@@ -6,7 +6,7 @@ function A(e){return String(e??"").replace(/&/g,"&").replace(/</g,"<").re
|
|
|
6
6
|
<span class="waveform-icon-play">${this.options.playIcon}</span>
|
|
7
7
|
<span class="waveform-icon-pause" style="display:none;">${this.options.pauseIcon}</span>
|
|
8
8
|
</button>
|
|
9
|
-
`:"",
|
|
9
|
+
`:"",o=this.options.showInfo?`
|
|
10
10
|
<div class="waveform-info">
|
|
11
11
|
${this.options.artwork?`
|
|
12
12
|
<img class="waveform-artwork" src="${this.options.artwork}" alt="Album artwork" style="
|
|
@@ -21,7 +21,7 @@ function A(e){return String(e??"").replace(/&/g,"&").replace(/</g,"<").re
|
|
|
21
21
|
<span class="waveform-title" style="color: ${this.options.textColor};"></span>
|
|
22
22
|
${this.options.subtitle?`<span class="waveform-subtitle" style="color: ${this.options.textSecondaryColor};">${this.options.subtitle}</span>`:""}
|
|
23
23
|
</div>
|
|
24
|
-
<div style="display: flex; align-items: center; gap: 1rem;">
|
|
24
|
+
<div class="waveform-meta" style="display: flex; align-items: center; gap: 1rem;">
|
|
25
25
|
${this.options.showBPM?`
|
|
26
26
|
<span class="waveform-bpm" style="color: ${this.options.textSecondaryColor}; display: none;">
|
|
27
27
|
<span class="bpm-value">--</span> BPM
|
|
@@ -33,7 +33,7 @@ function A(e){return String(e??"").replace(/&/g,"&").replace(/</g,"<").re
|
|
|
33
33
|
<span class="speed-value">1x</span>
|
|
34
34
|
</button>
|
|
35
35
|
<div class="speed-menu" style="display: none;">
|
|
36
|
-
${this.options.playbackRates.map(
|
|
36
|
+
${this.options.playbackRates.map(r=>`<button class="speed-option" data-rate="${r}">${r}x</button>`).join("")}
|
|
37
37
|
</div>
|
|
38
38
|
</div>
|
|
39
39
|
`:""}
|
|
@@ -48,7 +48,7 @@ function A(e){return String(e??"").replace(/&/g,"&").replace(/</g,"<").re
|
|
|
48
48
|
<div class="waveform-player-inner">
|
|
49
49
|
<div class="waveform-body">
|
|
50
50
|
<div class="waveform-track waveform-align-${t}">
|
|
51
|
-
${
|
|
51
|
+
${s}
|
|
52
52
|
|
|
53
53
|
<div class="waveform-container">
|
|
54
54
|
<canvas></canvas>
|
|
@@ -60,7 +60,7 @@ function A(e){return String(e??"").replace(/&/g,"&").replace(/</g,"<").re
|
|
|
60
60
|
</div>
|
|
61
61
|
</div>
|
|
62
62
|
|
|
63
|
-
${
|
|
63
|
+
${o}
|
|
64
64
|
</div>
|
|
65
65
|
</div>
|
|
66
66
|
`,this.playBtn=this.container.querySelector(".waveform-btn"),this.canvas=this.container.querySelector("canvas"),this.ctx=this.canvas.getContext("2d"),this.titleEl=this.container.querySelector(".waveform-title"),this.subtitleEl=this.container.querySelector(".waveform-subtitle"),this.artworkEl=this.container.querySelector(".waveform-artwork"),this.currentTimeEl=this.container.querySelector(".time-current"),this.totalTimeEl=this.container.querySelector(".time-total"),this.bpmEl=this.container.querySelector(".waveform-bpm"),this.bpmValueEl=this.container.querySelector(".bpm-value"),this.loadingEl=this.container.querySelector(".waveform-loading"),this.errorEl=this.container.querySelector(".waveform-error"),this.markersContainer=this.container.querySelector(".waveform-markers"),this.speedBtn=this.container.querySelector(".speed-btn"),this.speedMenu=this.container.querySelector(".speed-menu"),this.resizeCanvas()}createAudio(){if(this.options.audioMode==="external"){this.audio=null;return}this.audio=new Audio,this.audio.preload=this.options.preload||"metadata",this.audio.crossOrigin="anonymous"}initPlaybackSpeed(){this.audio&&this.options.playbackRate&&this.options.playbackRate!==1&&(this.audio.playbackRate=this.options.playbackRate),this.options.showPlaybackSpeed&&this.initSpeedControls()}initSpeedControls(){let t=this.container.querySelector(".speed-btn"),i=this.container.querySelector(".speed-menu");!t||!i||(t.addEventListener("click",s=>{s.stopPropagation(),i.style.display=i.style.display==="none"?"block":"none"},{signal:this._ac.signal}),document.addEventListener("click",()=>{i.style.display="none"},{signal:this._ac.signal}),i.addEventListener("click",s=>{if(s.stopPropagation(),s.target.classList.contains("speed-option")){let o=parseFloat(s.target.dataset.rate);this.setPlaybackRate(o),i.style.display="none"}},{signal:this._ac.signal}),this.updateSpeedUI())}initKeyboardControls(){this.container.setAttribute("tabindex","-1"),this.container.addEventListener("click",()=>{e.getAllInstances().forEach(t=>{t!==this&&t.container.setAttribute("tabindex","-1")}),this.container.setAttribute("tabindex","0"),this.container.focus()},{signal:this._ac.signal}),this.container.addEventListener("keydown",t=>{if(document.activeElement!==this.container)return;let i=t.key,s=!!this.audio,o=s?this.audio.currentTime:0;if(s&&i>="0"&&i<="9"){t.preventDefault(),this.seekToPercent(parseInt(i)/10);return}let r={" ":()=>this.togglePlay()};s&&(r.ArrowLeft=()=>this.seekTo(w(o-5,0,this.audio.duration)),r.ArrowRight=()=>this.seekTo(w(o+5,0,this.audio.duration)),r.ArrowUp=()=>this.setVolume(w(this.audio.volume+.1)),r.ArrowDown=()=>this.setVolume(w(this.audio.volume-.1)),r.m=r.M=()=>this.audio.muted=!this.audio.muted),r[i]&&(t.preventDefault(),r[i]())},{signal:this._ac.signal})}initSeekControl(){this.options.accessibleSeek&&(this.seekEl=this.container.querySelector(".waveform-container"),this.seekEl&&(this.seekEl.setAttribute("role","slider"),this.seekEl.setAttribute("tabindex","0"),this.seekEl.setAttribute("aria-valuemin","0"),this.applySeekLabel(),this.updateSeekAccessibility(),this.seekEl.addEventListener("keydown",t=>{let i=this.getSeekDuration();if(!i)return;let s=this.getSeekCurrentTime(),o;switch(t.key){case"ArrowLeft":case"ArrowDown":o=s-tt;break;case"ArrowRight":case"ArrowUp":o=s+tt;break;case"PageDown":o=s-et;break;case"PageUp":o=s+et;break;case"Home":o=0;break;case"End":o=i;break;default:return}t.preventDefault(),t.stopPropagation(),this.seekToSeconds(o)},{signal:this._ac.signal})))}getSeekDuration(){return this.options.audioMode==="external"?this._extDuration||0:this.audio&&Number.isFinite(this.audio.duration)?this.audio.duration:0}getSeekCurrentTime(){return this.options.audioMode==="external"?this.progress*(this._extDuration||0):this.audio&&Number.isFinite(this.audio.currentTime)?this.audio.currentTime:0}seekToSeconds(t){let i=this.getSeekDuration();if(!i)return;let s=w(t,0,i);if(this.options.audioMode==="external"){this._requestSeek(s/i),this.updateSeekAccessibility();return}this.seekTo(s)}applySeekLabel(t=this.options.title){if(!this.seekEl)return;let i=this.options.seekLabel||t||"Seek";this.seekEl.setAttribute("aria-label",i)}updateSeekAccessibility(){if(!this.seekEl)return;let t=this.getSeekDuration(),i=Math.min(this.getSeekCurrentTime(),t);this.seekEl.setAttribute("aria-valuemax",String(Math.round(t))),this.seekEl.setAttribute("aria-valuenow",String(Math.round(i))),this.seekEl.setAttribute("aria-valuetext",`${S(i)} of ${S(t)}`)}initMediaSession(){!("mediaSession"in navigator)||!this.options.enableMediaSession||this.audio&&(navigator.mediaSession.metadata=new MediaMetadata({title:this.options.title||"Unknown Track",artist:this.options.subtitle||"",album:this.options.album||"",artwork:this.options.artwork?[{src:this.options.artwork,sizes:"512x512",type:"image/jpeg"}]:[]}),navigator.mediaSession.setActionHandler("play",()=>this.play()),navigator.mediaSession.setActionHandler("pause",()=>this.pause()),navigator.mediaSession.setActionHandler("seekbackward",()=>{this.seekTo(w(this.audio.currentTime-10,0,this.audio.duration))}),navigator.mediaSession.setActionHandler("seekforward",()=>{this.seekTo(w(this.audio.currentTime+10,0,this.audio.duration))}),navigator.mediaSession.setActionHandler("seekto",t=>{t.seekTime!==null&&this.seekTo(t.seekTime)}))}bindEvents(){this.playBtn&&this.playBtn.addEventListener("click",()=>this.togglePlay()),this.audio&&(this.audio.addEventListener("loadstart",()=>this.setLoading(!0)),this.audio.addEventListener("loadedmetadata",()=>this.onMetadataLoaded()),this.audio.addEventListener("canplay",()=>this.setLoading(!1)),this.audio.addEventListener("play",()=>this.onPlay()),this.audio.addEventListener("pause",()=>this.onPause()),this.audio.addEventListener("ended",()=>this.onEnded()),this.audio.addEventListener("error",t=>this.onError(t))),this.canvas.addEventListener("click",t=>this.handleCanvasClick(t)),this.resizeHandler=F(()=>this.resizeCanvas(),100),window.addEventListener("resize",this.resizeHandler)}setupResizeObserver(){"ResizeObserver"in window&&(this.resizeObserver=new ResizeObserver(()=>{this.resizeCanvas()}),this.canvas?.parentElement&&this.resizeObserver.observe(this.canvas.parentElement))}async load(t){try{this.setLoading(!0),this.progress=0,this.hasError=!1,this.audio&&(this.audio.src=t,await new Promise((s,o)=>{let r=()=>{this.audio.removeEventListener("loadedmetadata",r),this.audio.removeEventListener("error",n),s()},n=a=>{this.audio.removeEventListener("loadedmetadata",r),this.audio.removeEventListener("error",n),o(a)};this.audio.addEventListener("loadedmetadata",r),this.audio.addEventListener("error",n)}));let i=this.options.title||x(t);if(this.titleEl&&(this.titleEl.textContent=i),this.applySeekLabel(i),this.options.waveform)this.setWaveformData(this.options.waveform);else try{let s=await B(t,this.options.samples,this.options.showBPM);this.waveformData=s.peaks,s.bpm&&(this.detectedBPM=s.bpm,this.updateBPMDisplay())}catch(s){console.warn("[WaveformPlayer] Using placeholder waveform:",s),this.waveformData=G(this.options.samples)}this.drawWaveform(),this.renderMarkers(),this.initMediaSession(),this.options.onLoad&&this.options.onLoad(this)}catch(i){this.onError(i)}finally{this.setLoading(!1)}}async loadTrack(t,i=null,s=null,o={}){this.isPlaying&&this.pause(),this.audio&&(this.audio.src="",this.audio.load()),this.hasError=!1,this.errorEl&&(this.errorEl.style.display="none"),this.canvas&&(this.canvas.style.opacity="1"),this.playBtn&&(this.playBtn.disabled=!1),this.progress=0,this.waveformData=[],this.options=D(this.options,{url:t,title:i||this.options.title,subtitle:s||this.options.subtitle,...o}),o.preload&&this.audio&&(this.audio.preload=o.preload),this.subtitleEl&&(s?(this.subtitleEl.textContent=s,this.subtitleEl.style.display=""):s===""&&(this.subtitleEl.style.display="none")),o.artwork&&this.artworkEl&&(this.artworkEl.src=o.artwork),this.options.markers=o.markers||[],this.options.waveform=o.waveform||null,await this.load(t),o.autoplay!==!1&&this.play()?.catch(()=>{})}setWaveformData(t){if(typeof t=="string"&&t.trim().endsWith(".json")){fetch(t.trim()).then(i=>i.json()).then(i=>{this.waveformData=Array.isArray(i)?i:i.peaks||[],i.markers&&!this.options.markers?.length&&(this.options.markers=i.markers,this.renderMarkers()),this.drawWaveform()}).catch(()=>{});return}if(typeof t=="string")try{let i=JSON.parse(t);this.waveformData=Array.isArray(i)?i:[]}catch{this.waveformData=t.split(",").map(Number)}else this.waveformData=Array.isArray(t)?t:[];this.drawWaveform()}drawWaveform(){!this.ctx||this.waveformData.length===0||J(this.ctx,this.canvas,this.waveformData,this.progress,{...this.options,waveformStyle:this.options.waveformStyle||"bars",color:this.options.waveformColor,progressColor:this.options.progressColor})}resizeCanvas(){if(!this.canvas||this.isDestroying)return;let t=window.devicePixelRatio||1,i=this.canvas.parentElement.getBoundingClientRect();this.canvas.width=i.width*t,this.canvas.height=this.options.height*t,this.canvas.parentElement.style.height=this.options.height+"px",this.drawWaveform()}renderMarkers(){if(!this.markersContainer||(this.markersContainer.innerHTML="",!this.options.showMarkers||!this.options.markers?.length))return;let t=this.getSeekDuration();t&&this.options.markers.forEach((i,s)=>{if(i.time>t){console.warn(`[WaveformPlayer] Marker "${i.label}" at ${i.time}s exceeds audio duration of ${t}s`);return}let o=i.time/t*100,r=document.createElement("button");r.className="waveform-marker",r.style.left=`${o}%`,r.style.backgroundColor=i.color||"rgba(255, 255, 255, 0.5)",r.setAttribute("aria-label",i.label),r.setAttribute("data-time",i.time);let n=document.createElement("span");n.className="waveform-marker-tooltip",n.textContent=i.label,r.appendChild(n),r.addEventListener("click",a=>{a.stopPropagation(),this.seekTo(i.time),this.options.playOnSeek&&!this.isPlaying&&this.play()}),this.markersContainer.appendChild(r)})}setActiveMarker(t){if(!this.markersContainer)return;this.markersContainer.querySelectorAll(".waveform-marker").forEach((s,o)=>s.classList.toggle("active",o===t))}handleCanvasClick(t){let i=this.canvas.getBoundingClientRect(),s=t.clientX-i.left,o=w(s/i.width);if(this.options.audioMode==="external"){this._requestSeek(o);return}!this.audio||!this.audio.duration||this.seekToPercent(o)}setLoading(t){this.isLoading=t,this.loadingEl&&(this.loadingEl.style.display=t?"block":"none"),this.seekEl&&this.seekEl.setAttribute("aria-busy",t?"true":"false")}onMetadataLoaded(){this.isDestroying||(this.totalTimeEl&&(this.totalTimeEl.textContent=S(this.audio.duration)),this.renderMarkers(),this.updateSeekAccessibility())}setPlayButtonState(t){if(!this.playBtn)return;this.playBtn.classList.toggle("playing",t);let i=this.playBtn.querySelector(".waveform-icon-play"),s=this.playBtn.querySelector(".waveform-icon-pause");i&&(i.style.display=t?"none":"flex"),s&&(s.style.display=t?"flex":"none")}onPlay(){this.isDestroying||(this.isPlaying=!0,this.setPlayButtonState(!0),this.startSmoothUpdate(),this._emit("waveformplayer:play",{player:this,url:this.options.url}),this.options.onPlay&&this.options.onPlay(this))}onPause(){this.isDestroying||(this.isPlaying=!1,this.setPlayButtonState(!1),this.stopSmoothUpdate(),this._emit("waveformplayer:pause",{player:this,url:this.options.url}),this.options.onPause&&this.options.onPause(this))}onEnded(){if(this.isDestroying)return;let t=this.audio.duration;this.progress=0,this.audio.currentTime=0,this.drawWaveform(),this.currentTimeEl&&(this.currentTimeEl.textContent="0:00"),this._emit("waveformplayer:ended",{player:this,url:this.options.url,currentTime:t,duration:t}),this.onPause(),this.options.onEnd&&this.options.onEnd(this)}onError(t){this.isDestroying||(console.error("[WaveformPlayer] Audio error:",t),this.hasError=!0,this.setLoading(!1),this.errorEl&&(this.errorEl.style.display="flex"),this.canvas&&(this.canvas.style.opacity="0.2"),this.playBtn&&(this.playBtn.disabled=!0),this.options.onError&&this.options.onError(t,this))}startSmoothUpdate(){this.stopSmoothUpdate();let t=()=>{this.isPlaying&&this.audio&&this.audio.duration&&(this.updateProgress(),this.updateTimer=requestAnimationFrame(t))};this.updateTimer=requestAnimationFrame(t)}stopSmoothUpdate(){this.updateTimer&&(cancelAnimationFrame(this.updateTimer),this.updateTimer=null)}updateProgress(){if(!this.audio||!this.audio.duration)return;let t=this.audio.currentTime/this.audio.duration;Math.abs(t-this.progress)>.001&&(this.progress=t,this.drawWaveform()),this.currentTimeEl&&(this.currentTimeEl.textContent=S(this.audio.currentTime)),this._emit("waveformplayer:timeupdate",{player:this,currentTime:this.audio.currentTime,duration:this.audio.duration,progress:this.progress,url:this.options.url}),this.options.onTimeUpdate&&this.options.onTimeUpdate(this.audio.currentTime,this.audio.duration,this),this.updateSeekAccessibility()}updateBPMDisplay(){this.bpmEl&&this.bpmValueEl&&this.detectedBPM&&(this.bpmValueEl.textContent=Math.round(this.detectedBPM),this.bpmEl.style.display="inline-flex")}updateSpeedUI(){if(!this.audio)return;let t=this.container.querySelector(".speed-value");if(t){let i=this.audio.playbackRate;t.textContent=i===1?"1x":`${i}x`}this.container.querySelectorAll(".speed-option").forEach(i=>{i.classList.toggle("active",parseFloat(i.dataset.rate)===this.audio.playbackRate)})}play(){if(this.options.singlePlay&&e.currentlyPlaying&&e.currentlyPlaying!==this&&e.currentlyPlaying.pause(),this.options.audioMode==="external"){this._emit("waveformplayer:request-play",this._buildTrackDetail(),!0).defaultPrevented||(e.currentlyPlaying=this);return}return e.currentlyPlaying=this,this.audio.play()}pause(){if(e.currentlyPlaying===this&&(e.currentlyPlaying=null),this.options.audioMode==="external"){this._emit("waveformplayer:request-pause",this._buildTrackDetail(),!0);return}this.audio.pause()}_buildTrackDetail(){return{url:this.options.url,title:this.options.title,subtitle:this.options.subtitle,artist:this.options.artist||this.options.subtitle,artwork:this.options.artwork,markers:this.options.markers,waveform:this.options.waveform,id:this.id,player:this}}setPlayingState(t){let i=this.isPlaying;this.isPlaying=!!t,this.setPlayButtonState(this.isPlaying),this.isPlaying&&!i?(this.startSmoothUpdate?.(),this._emit("waveformplayer:play",{player:this,url:this.options.url}),this.options.onPlay&&this.options.onPlay(this)):!this.isPlaying&&i&&(this.stopSmoothUpdate?.(),this._emit("waveformplayer:pause",{player:this,url:this.options.url}),this.options.onPause&&this.options.onPause(this))}setProgress(t,i){!i||i<=0||(this.progress=w(t/i),this.currentTimeEl&&(this.currentTimeEl.textContent=S(t)),this._extDuration=i,this.totalTimeEl&&(!this.totalTimeEl.dataset._extSet||this.totalTimeEl.dataset._extDur!==String(i))&&(this.totalTimeEl.textContent=S(i),this.totalTimeEl.dataset._extSet="1",this.totalTimeEl.dataset._extDur=String(i)),this.drawWaveform?.(),this._emit("waveformplayer:timeupdate",{player:this,currentTime:t,duration:i,progress:this.progress,url:this.options.url}),this.options.onTimeUpdate&&this.options.onTimeUpdate(t,i,this),this.progress>=1?this._extEnded||(this._extEnded=!0,this._emit("waveformplayer:ended",{player:this,url:this.options.url,currentTime:i,duration:i}),this.options.onEnd&&this.options.onEnd(this)):this._extEnded=!1,this.updateSeekAccessibility())}togglePlay(){this.isPlaying?this.pause():this.play()}seekTo(t){this.audio&&this.audio.duration&&(this.audio.currentTime=w(t,0,this.audio.duration),this.updateProgress())}seekToPercent(t){this.audio&&this.audio.duration&&(this.audio.currentTime=this.audio.duration*w(t),this.updateProgress())}setVolume(t){let i=Number(t);this.audio&&Number.isFinite(i)&&(this.audio.volume=w(i))}setPlaybackRate(t){if(!this.audio)return;let i=w(t,.5,2);this.audio.playbackRate=i,this.options.playbackRate=i,this.updateSpeedUI()}destroy(){this.isDestroying=!0,this._emit("waveformplayer:destroy",{player:this,url:this.options.url}),this.pause(),this.stopSmoothUpdate(),this._ac?.abort(),this.resizeObserver&&(this.resizeObserver.disconnect(),this.resizeObserver=null),this.resizeHandler&&(window.removeEventListener("resize",this.resizeHandler),this.resizeHandler=null),e.instances.delete(this.id),e.currentlyPlaying===this&&(e.currentlyPlaying=null),this.audio&&(this.audio.pause(),this.audio.src="",this.audio.load(),this.audio=null),this.container.innerHTML="",this.canvas=null,this.ctx=null,this.playBtn=null,this.waveformData=[]}static getInstance(t){if(typeof t=="string"){let i=this.instances.get(t);if(i)return i;let s=document.getElementById(t);if(s)return Array.from(this.instances.values()).find(o=>o.container===s)}if(t instanceof HTMLElement)return Array.from(this.instances.values()).find(i=>i.container===t)}static getAllInstances(){return Array.from(this.instances.values())}static destroyAll(){this.instances.forEach(t=>t.destroy()),this.instances.clear()}static async generateWaveformData(t,i=200){try{return(await B(t,i)).peaks}catch(s){throw console.error("[WaveformPlayer] Failed to generate waveform:",s),s}}static getPeaksUrl(t){if(!t)return;let i=t.replace(/\.(mp3|wav|ogg|flac|m4a|aac)(\?[^#]*)?(#.*)?$/i,".json$2$3");return i===t?void 0:i}};C.utils={formatTime:S,extractTitleFromUrl:x,escapeHtml:A,isSafeHref:_,parseDataAttributes:L};var $=()=>typeof window<"u"&&typeof document<"u";function I(){if(!$())return;document.querySelectorAll("[data-waveform-player]").forEach(t=>{if(t.dataset.waveformInitialized!=="true")try{new C(t),t.dataset.waveformInitialized="true"}catch(i){console.error("[WaveformPlayer] Failed to initialize:",i,t)}})}$()&&(document.readyState==="loading"?document.addEventListener("DOMContentLoaded",I):I());C.init=I;$()&&(window.WaveformPlayer=C);var Lt=C;export{C as WaveformPlayer,Lt as default};
|