diff --git a/assets/img/equaliser-animated.gif b/assets/img/equaliser-animated.gif new file mode 100644 index 0000000..27285ed Binary files /dev/null and b/assets/img/equaliser-animated.gif differ diff --git a/assets/js/player/data.js b/assets/js/player/data.js new file mode 100644 index 0000000..a8f68b1 --- /dev/null +++ b/assets/js/player/data.js @@ -0,0 +1 @@ +export default Array.from(document.querySelectorAll(".listitem")).map(t=>({title:t.getAttribute("data-title"),artist:t.getAttribute("data-artist"),cover:t.getAttribute("data-cover"),file:t.getAttribute("data-file")})); \ No newline at end of file diff --git a/assets/js/player/elements.js b/assets/js/player/elements.js new file mode 100644 index 0000000..db9e72c --- /dev/null +++ b/assets/js/player/elements.js @@ -0,0 +1 @@ +import*as utils from"./utils.js";export default{get(){this.cover=document.querySelector("#track-cover"),this.title=document.querySelector("#track-title"),this.artist=document.querySelector("#track-artist"),this.playPauseButton=document.querySelector("#play-pause"),this.nextButton=document.querySelector("#next"),this.previousButton=document.querySelector("#previous"),this.volumeButton=document.querySelector("#volume"),this.volumeControl=document.querySelector("#volume-control"),this.seekbar=document.querySelector("#seekbar"),this.currentDuration=document.querySelector("#current-duration"),this.totalDuration=document.querySelector("#total-duration"),this.downloadButton=document.querySelector("#download"),this.collection=document.querySelectorAll(".listitem"),this.playIcon='',this.pauseIcon='',this.mutedIcon='',this.soundIcon=''},createAudioElement(t){this.audio=new Audio(t)},actions(){this.playPauseButton.onclick=(()=>this.togglePlayPause()),this.audio.onended=(()=>this.next()),this.volumeButton.onclick=(()=>this.toggleMute()),this.volumeControl.onchange=(()=>this.setVolume(this.volumeControl.value)),this.seekbar.onchange=(()=>this.setSeekbar(this.seekbar.value)),this.seekbar.max=this.audio.duration,this.totalDuration.innerText=utils.convertTo12HourFormat(this.audio.duration),this.audio.ontimeupdate=(()=>this.timeUpdate()),this.nextButton.onclick=(()=>this.next()),this.previousButton.onclick=(()=>this.back()),this.collection.forEach((t,e)=>t.onclick=(()=>this.swap(e))),"mediaSession"in navigator&&(navigator.mediaSession.setActionHandler("play",()=>this.togglePlayPause()),navigator.mediaSession.setActionHandler("pause",()=>this.togglePlayPause()),navigator.mediaSession.setActionHandler("nexttrack",()=>this.next()),navigator.mediaSession.setActionHandler("previoustrack",()=>this.back()),navigator.mediaSession.setActionHandler("seekto",t=>{t.seekTime&&"number"==typeof t.seekTime&&this.setSeekbar(t.seekTime)}))}}; \ No newline at end of file diff --git a/assets/js/player/index.js b/assets/js/player/index.js new file mode 100644 index 0000000..27d8e72 --- /dev/null +++ b/assets/js/player/index.js @@ -0,0 +1 @@ +import player from"./player.js";window.addEventListener("load",()=>{player.start()}); \ No newline at end of file diff --git a/assets/js/player/player.js b/assets/js/player/player.js new file mode 100644 index 0000000..c1f8909 --- /dev/null +++ b/assets/js/player/player.js @@ -0,0 +1 @@ +import audios from"./data.js";import elements from"./elements.js";import*as utils from"./utils.js";export default{audioData:audios,currentPlaying:utils.currentIndex(),currentAudio:{},isPlaying:!1,savedMuted:!1,savedVolume:1,start(){elements.get.call(this),this.update(),this.volumeControl.value=100},play(){this.isPlaying=!0,this.audio.play(),this.playPauseButton.innerHTML=this.pauseIcon},pause(){this.isPlaying=!1,this.audio.pause(),this.playPauseButton.innerHTML=this.playIcon},togglePlayPause(){this.isPlaying?this.pause():this.play()},swap(t){this.currentPlaying=t,this.pause(),this.update(),this.play()},next(){let t=this.currentPlaying+1;t===this.audioData.length&&(t=0),this.swap(t)},back(){let t=this.currentPlaying-1;-1===t&&(t=this.audioData.length-1),this.swap(t)},toggleMute(){this.audio.muted=!this.audio.muted,this.savedMuted=this.audio.muted,this.volumeButton.innerHTML=this.audio.muted?this.mutedIcon:this.soundIcon},setVolume(t){this.savedVolume=t/100,this.audio.volume=this.savedVolume},setSeekbar(t){this.audio.muted=!0,this.audio.currentTime=t},timeUpdate(){const t=this.audio.currentTime,i=utils.convertTo12HourFormat(t);Math.ceil(this.seekbar.value)!=Math.ceil(t)&&(this.seekbar.value=t),this.currentDuration.innerText!==i&&(this.currentDuration.innerText=i),this.savedMuted||this.seekbar.dragging||(this.audio.muted=!1),"mediaSession"in navigator&&"setPositionState"in navigator.mediaSession&&navigator.mediaSession.setPositionState({duration:this.audio.duration||0,playbackRate:this.audio.playbackRate||1,position:this.audio.currentTime||0})},update(){(this.currentPlaying<0||this.currentPlaying>this.audioData.length)&&(this.currentPlaying=0),this.currentAudio=this.audioData[this.currentPlaying],this.cover.src=utils.imageURL(this.currentAudio.cover),this.title.innerText=this.currentAudio.title,this.artist.innerText=this.currentAudio.artist,"mediaSession"in navigator&&(navigator.mediaSession.metadata=new MediaMetadata({title:this.currentAudio.title,artist:this.currentAudio.artist,artwork:[{src:this.cover.src,sizes:"512x512",type:"image/webp"}]}));const t=utils.audioURL(this.currentAudio.file);elements.createAudioElement.call(this,t),this.downloadButton.href=t,this.downloadButton.download=utils.generateFilename(this.currentAudio.file,this.currentAudio.artist,this.currentAudio.title),window.location.hash=this.currentPlaying+1,document.title=this.currentAudio.title+" | xmp3",this.audio.onloadeddata=(()=>{elements.actions.call(this),this.audio.muted=this.savedMuted,this.audio.volume=this.savedVolume})}}; \ No newline at end of file diff --git a/assets/js/player/utils.js b/assets/js/player/utils.js new file mode 100644 index 0000000..26a1332 --- /dev/null +++ b/assets/js/player/utils.js @@ -0,0 +1 @@ +export function URL(t="/"){return"https://xmp3.github.io"+t};export function imageURL(t){return t.startsWith("https://")?t:URL("/image/"+t)};export function audioURL(t){return t.startsWith("https://")?t:URL("/audio/"+t)};export function currentIndex(){return window.location.hash.slice(1)-1||0};export function convertTo12HourFormat(t){const n=t=>("0"+Math.floor(t)).slice(-2);return n(t/60)+":"+n(t%60)};export function generateFilename(t,...n){const o=t=>t.split(".").pop();return n.join(" - ")+"."+o(t)}; \ No newline at end of file diff --git a/assets/js/progressbar/index.js b/assets/js/progressbar/index.js new file mode 100644 index 0000000..470e8f7 --- /dev/null +++ b/assets/js/progressbar/index.js @@ -0,0 +1 @@ +import ProgressBar from"./progressbar.js";document.addEventListener("DOMContentLoaded",()=>{document.querySelectorAll(".progressbar-container").forEach(r=>new ProgressBar(r))}); \ No newline at end of file diff --git a/assets/js/progressbar/progressbar.js b/assets/js/progressbar/progressbar.js new file mode 100644 index 0000000..489706a --- /dev/null +++ b/assets/js/progressbar/progressbar.js @@ -0,0 +1 @@ +export default class{constructor(t){this.progressbar=t,this.properties={},this.dragging=!1,this.defineAttributes(),this.defineProperties(),this.addEventListeners()}defineAttributes(){this.attributes={min:0,max:1,step:.1,value:0},Object.keys(this.attributes).forEach(t=>this[t]=+this.progressbar.getAttribute("data-"+t)||this.attributes[t])}defineProperties(){this.properties.dragging={get:()=>this.dragging},this.properties.min={get:()=>this.min,set:t=>this.min=+t},this.properties.max={get:()=>this.max,set:t=>this.max=+t},this.properties.step={get:()=>this.step,set:t=>this.step=+t},this.properties.value={get:()=>this.value,set:t=>this.update(t)},this.properties.onchange={set:t=>this.onchange=t},Object.keys(this.properties).forEach(t=>Object.defineProperty(this.progressbar,t,this.properties[t]))}addEventListeners(){this.progressbar.addEventListener("mousedown",this.onMouseDown.bind(this)),document.addEventListener("mousemove",this.onMouseMove.bind(this)),document.addEventListener("mouseup",this.onMouseUp.bind(this)),document.addEventListener("mouseleave",this.onMouseUp.bind(this)),this.progressbar.addEventListener("touchstart",this.onTouchStart.bind(this)),document.addEventListener("touchmove",this.onTouchMove.bind(this)),document.addEventListener("touchend",this.onTouchEnd.bind(this)),document.addEventListener("touchcancel",this.onTouchEnd.bind(this))}eventHandler(t){"function"==typeof this[t]&&this[t]()}eventChange(t){const e=this.progressbar.getBoundingClientRect();let s=t-e.left,i=(s=Math.max(0,Math.min(s,e.width)))/e.width*(this.max-this.min)+this.min;this.progressbar.value=Math.round(i/this.step)*this.step,this.eventHandler("onchange")}onMouseDown(t){this.dragging=!0,this.eventChange(t.clientX)}onMouseMove(t){this.dragging&&this.eventChange(t.clientX)}onMouseUp(){this.dragging=!1}onTouchStart(t){this.dragging=!0,this.eventChange(t.touches[0].clientX)}onTouchMove(t){this.dragging&&this.eventChange(t.touches[0].clientX)}onTouchEnd(){this.dragging=!1}update(t){this.value=+t;const e=this.value/this.max*100;this.progressbar.style.setProperty("--progressbar-transform",e+"%")}}; \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..f627fca --- /dev/null +++ b/index.html @@ -0,0 +1 @@ + Redirecting... | xmp3 diff --git a/xmp3/adele/index.html b/xmp3/adele/index.html new file mode 100644 index 0000000..0da459d --- /dev/null +++ b/xmp3/adele/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/akon/index.html b/xmp3/akon/index.html new file mode 100644 index 0000000..bb6f343 --- /dev/null +++ b/xmp3/akon/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/alok/index.html b/xmp3/alok/index.html new file mode 100644 index 0000000..4a197f2 --- /dev/null +++ b/xmp3/alok/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/alphaville/index.html b/xmp3/alphaville/index.html new file mode 100644 index 0000000..af28578 --- /dev/null +++ b/xmp3/alphaville/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/arctic_monkeys/index.html b/xmp3/arctic_monkeys/index.html new file mode 100644 index 0000000..0f7e0fb --- /dev/null +++ b/xmp3/arctic_monkeys/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/avicii/index.html b/xmp3/avicii/index.html new file mode 100644 index 0000000..0c07d51 --- /dev/null +++ b/xmp3/avicii/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/bee_gees/index.html b/xmp3/bee_gees/index.html new file mode 100644 index 0000000..856480f --- /dev/null +++ b/xmp3/bee_gees/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/bon_jovi/index.html b/xmp3/bon_jovi/index.html new file mode 100644 index 0000000..a971b78 --- /dev/null +++ b/xmp3/bon_jovi/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/bruno_mars/index.html b/xmp3/bruno_mars/index.html new file mode 100644 index 0000000..70ffc71 --- /dev/null +++ b/xmp3/bruno_mars/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/bryan_adams/index.html b/xmp3/bryan_adams/index.html new file mode 100644 index 0000000..06ebd37 --- /dev/null +++ b/xmp3/bryan_adams/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/calvin_harris/index.html b/xmp3/calvin_harris/index.html new file mode 100644 index 0000000..65fca37 --- /dev/null +++ b/xmp3/calvin_harris/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/coldplay/index.html b/xmp3/coldplay/index.html new file mode 100644 index 0000000..056ecf9 --- /dev/null +++ b/xmp3/coldplay/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/cristiano_araujo/index.html b/xmp3/cristiano_araujo/index.html new file mode 100644 index 0000000..bd37459 --- /dev/null +++ b/xmp3/cristiano_araujo/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/cyndi_lauper/index.html b/xmp3/cyndi_lauper/index.html new file mode 100644 index 0000000..9dbfc8a --- /dev/null +++ b/xmp3/cyndi_lauper/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/djavan/index.html b/xmp3/djavan/index.html new file mode 100644 index 0000000..d55a467 --- /dev/null +++ b/xmp3/djavan/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/ed_sheeran/index.html b/xmp3/ed_sheeran/index.html new file mode 100644 index 0000000..d09ceb5 --- /dev/null +++ b/xmp3/ed_sheeran/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/eminem/index.html b/xmp3/eminem/index.html new file mode 100644 index 0000000..86edddc --- /dev/null +++ b/xmp3/eminem/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/europe/index.html b/xmp3/europe/index.html new file mode 100644 index 0000000..72d21c8 --- /dev/null +++ b/xmp3/europe/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/evanescence/index.html b/xmp3/evanescence/index.html new file mode 100644 index 0000000..a00138e --- /dev/null +++ b/xmp3/evanescence/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/george_michael/index.html b/xmp3/george_michael/index.html new file mode 100644 index 0000000..724aa2b --- /dev/null +++ b/xmp3/george_michael/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/gotye/index.html b/xmp3/gotye/index.html new file mode 100644 index 0000000..9f02ed3 --- /dev/null +++ b/xmp3/gotye/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/guilherme_arantes/index.html b/xmp3/guilherme_arantes/index.html new file mode 100644 index 0000000..b092fc4 --- /dev/null +++ b/xmp3/guilherme_arantes/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/guns_n_roses/index.html b/xmp3/guns_n_roses/index.html new file mode 100644 index 0000000..caf7479 --- /dev/null +++ b/xmp3/guns_n_roses/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/gusttavo_lima/index.html b/xmp3/gusttavo_lima/index.html new file mode 100644 index 0000000..c070d7c --- /dev/null +++ b/xmp3/gusttavo_lima/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/harry_styles/index.html b/xmp3/harry_styles/index.html new file mode 100644 index 0000000..48b7b98 --- /dev/null +++ b/xmp3/harry_styles/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/imagine_dragons/index.html b/xmp3/imagine_dragons/index.html new file mode 100644 index 0000000..265e7d9 --- /dev/null +++ b/xmp3/imagine_dragons/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/index.html b/xmp3/index.html new file mode 100644 index 0000000..75e5484 --- /dev/null +++ b/xmp3/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
diff --git a/xmp3/jorge_vercillo/index.html b/xmp3/jorge_vercillo/index.html new file mode 100644 index 0000000..2c69217 --- /dev/null +++ b/xmp3/jorge_vercillo/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/justin_bieber/index.html b/xmp3/justin_bieber/index.html new file mode 100644 index 0000000..61db208 --- /dev/null +++ b/xmp3/justin_bieber/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/justin_timberlake/index.html b/xmp3/justin_timberlake/index.html new file mode 100644 index 0000000..5950d2a --- /dev/null +++ b/xmp3/justin_timberlake/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/keane/index.html b/xmp3/keane/index.html new file mode 100644 index 0000000..2fc4bb5 --- /dev/null +++ b/xmp3/keane/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/lagum/index.html b/xmp3/lagum/index.html new file mode 100644 index 0000000..d026a24 --- /dev/null +++ b/xmp3/lagum/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/legiao_urbana/index.html b/xmp3/legiao_urbana/index.html new file mode 100644 index 0000000..0bcfad3 --- /dev/null +++ b/xmp3/legiao_urbana/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/lewis_capaldi/index.html b/xmp3/lewis_capaldi/index.html new file mode 100644 index 0000000..ff89824 --- /dev/null +++ b/xmp3/lewis_capaldi/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/linkin_park/index.html b/xmp3/linkin_park/index.html new file mode 100644 index 0000000..321150b --- /dev/null +++ b/xmp3/linkin_park/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/lionel_richie/index.html b/xmp3/lionel_richie/index.html new file mode 100644 index 0000000..36f841f --- /dev/null +++ b/xmp3/lionel_richie/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/luan_santana/index.html b/xmp3/luan_santana/index.html new file mode 100644 index 0000000..027d4bf --- /dev/null +++ b/xmp3/luan_santana/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/maroon_5/index.html b/xmp3/maroon_5/index.html new file mode 100644 index 0000000..11310f2 --- /dev/null +++ b/xmp3/maroon_5/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/marshmello/index.html b/xmp3/marshmello/index.html new file mode 100644 index 0000000..1b3ae3d --- /dev/null +++ b/xmp3/marshmello/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/michael_jackson/index.html b/xmp3/michael_jackson/index.html new file mode 100644 index 0000000..88b8217 --- /dev/null +++ b/xmp3/michael_jackson/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/nirvana/index.html b/xmp3/nirvana/index.html new file mode 100644 index 0000000..c597962 --- /dev/null +++ b/xmp3/nirvana/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/nocopyrightsounds/index.html b/xmp3/nocopyrightsounds/index.html new file mode 100644 index 0000000..666583d --- /dev/null +++ b/xmp3/nocopyrightsounds/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/paul_young/index.html b/xmp3/paul_young/index.html new file mode 100644 index 0000000..dd69671 --- /dev/null +++ b/xmp3/paul_young/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/queen/index.html b/xmp3/queen/index.html new file mode 100644 index 0000000..a0f659b --- /dev/null +++ b/xmp3/queen/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/radiohead/index.html b/xmp3/radiohead/index.html new file mode 100644 index 0000000..eb42333 --- /dev/null +++ b/xmp3/radiohead/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/renato_russo/index.html b/xmp3/renato_russo/index.html new file mode 100644 index 0000000..d60cb03 --- /dev/null +++ b/xmp3/renato_russo/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/rick_astley/index.html b/xmp3/rick_astley/index.html new file mode 100644 index 0000000..b14e68e --- /dev/null +++ b/xmp3/rick_astley/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/rick_james/index.html b/xmp3/rick_james/index.html new file mode 100644 index 0000000..f8eba38 --- /dev/null +++ b/xmp3/rick_james/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/roxette/index.html b/xmp3/roxette/index.html new file mode 100644 index 0000000..db39edd --- /dev/null +++ b/xmp3/roxette/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/sean_kingston/index.html b/xmp3/sean_kingston/index.html new file mode 100644 index 0000000..2e54961 --- /dev/null +++ b/xmp3/sean_kingston/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/spandau_ballet/index.html b/xmp3/spandau_ballet/index.html new file mode 100644 index 0000000..3f7578a --- /dev/null +++ b/xmp3/spandau_ballet/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/stevie_wonder/index.html b/xmp3/stevie_wonder/index.html new file mode 100644 index 0000000..5dea8bf --- /dev/null +++ b/xmp3/stevie_wonder/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/survivor/index.html b/xmp3/survivor/index.html new file mode 100644 index 0000000..0455af4 --- /dev/null +++ b/xmp3/survivor/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/tears_for_fears/index.html b/xmp3/tears_for_fears/index.html new file mode 100644 index 0000000..25cdb07 --- /dev/null +++ b/xmp3/tears_for_fears/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/the_beatles/index.html b/xmp3/the_beatles/index.html new file mode 100644 index 0000000..ea3312e --- /dev/null +++ b/xmp3/the_beatles/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/the_chainsmokers/index.html b/xmp3/the_chainsmokers/index.html new file mode 100644 index 0000000..e9dc74a --- /dev/null +++ b/xmp3/the_chainsmokers/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/the_jackson_5/index.html b/xmp3/the_jackson_5/index.html new file mode 100644 index 0000000..12dc36b --- /dev/null +++ b/xmp3/the_jackson_5/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/the_jacksons/index.html b/xmp3/the_jacksons/index.html new file mode 100644 index 0000000..02043a4 --- /dev/null +++ b/xmp3/the_jacksons/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/the_neighbourhood/index.html b/xmp3/the_neighbourhood/index.html new file mode 100644 index 0000000..99a2054 --- /dev/null +++ b/xmp3/the_neighbourhood/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/the_outfield/index.html b/xmp3/the_outfield/index.html new file mode 100644 index 0000000..ad13959 --- /dev/null +++ b/xmp3/the_outfield/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/the_weeknd/index.html b/xmp3/the_weeknd/index.html new file mode 100644 index 0000000..b9e198c --- /dev/null +++ b/xmp3/the_weeknd/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/twenty_one_pilots/index.html b/xmp3/twenty_one_pilots/index.html new file mode 100644 index 0000000..262563a --- /dev/null +++ b/xmp3/twenty_one_pilots/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00
diff --git a/xmp3/usa_for_africa/index.html b/xmp3/usa_for_africa/index.html new file mode 100644 index 0000000..2a88b30 --- /dev/null +++ b/xmp3/usa_for_africa/index.html @@ -0,0 +1 @@ + xmp3 | xmp3
Title
Artist
00:00 00:00