Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Save Automatically?

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <audio id="audio" controls>
  Your browser does not support the audio element.</audio>
<br />
<input multiple="true" type="file" accept="audio/*" id="fileupload">
<ul id="fileList" class="drag-sort-enable">
</ul>

<div id="analyserOut">
</div>
              
            
!

CSS

              
                .drag-sort-active {
  opacity: 0;
}

              
            
!

JS

              
                window.onload = () => {
  function getFileListIds() {
    const fileListUl = document.getElementById("fileList");
    let children = fileListUl.childNodes;
    let ids = [];
    children.forEach((child) => ids.push(child.id));
    return ids.map(Number);
  }

  const audioElement = document.getElementById("audio");

  audioElement.onended = function () {
    playNext();
  };
  const fileElement = document.getElementById("fileupload");
  const fileListUl = document.getElementById("fileList");
  let loadFileList;
  let playList = [];
  let nowPlayingLoadOrderIndex = 0;

  const analyserDiv = document.getElementById("analyserOut");
  let audioCtx;
  let source;
  let analyser;

  function playFile(file) {
    audioElement.src = URL.createObjectURL(file);
    audioElement.load();
    audioElement.play();
  }

  function playFileViaLoadIndex(i) {
    let file = loadFileList[i];
    nowPlayingLoadOrderIndex = i;
    for (let j = 0; j < loadFileList.length; j++) {
      document.getElementById(`${j}`).style.color = "black";
    }
    document.getElementById(`${i}`).style.color = "green";
    playFile(file);
  }

  function playNext() {
    let currPlayingIndex = playList.findIndex(
      (item) => item.loadOrder === nowPlayingLoadOrderIndex
    );

    if (loadFileList && currPlayingIndex < loadFileList.length - 1) {
      let nextFile = playList[currPlayingIndex + 1];
      const nextIndex = nextFile.loadOrder;
      playFileViaLoadIndex(nextIndex);
    } else if (!!loadFileList) {
      let nextFile = playList[0];
      const nextIndex = nextFile.loadOrder;
      playFileViaLoadIndex(nextIndex);
    }
  }

  fileElement.onchange = function () {
    loadFileList = this.files;
    let fl = loadFileList.length;
    let i = 0;
    fileListUl.innerHTML = "";

    while (i < fl) {
      // localize file var in the loop
      let file = loadFileList[i];
      let fileName = file.name;
      playList.push({
        loadOrder: i,
        fileName
      });

      const newListItem = document.createElement("li");
      newListItem.id = `${i}`;
      const newContent = document.createTextNode(fileName);
      newListItem.appendChild(newContent);
      fileListUl.appendChild(newListItem);

      i++;
    }
    enableDragSort("drag-sort-enable");

    audioCtx = new AudioContext();
    if (!source) source = audioCtx.createMediaElementSource(audioElement);
    if (!analyser) analyser = audioCtx.createAnalyser();

    playFileViaLoadIndex(0);

    source.connect(analyser);
    analyser.connect(audioCtx.destination);
    analyser.fftSize = 32;
    var bufferLength = analyser.frequencyBinCount;
    var dataArray = new Uint8Array(bufferLength);

    function log() {
      window.requestAnimationFrame(log);
      analyser.getByteFrequencyData(dataArray);
      const output = [];
      dataArray.forEach((number) => {
        output.push(`<div>${Array(number).fill("-").join("")}</div>`);
      });
      analyserDiv.innerHTML = output.join("");
    }
    log();
  };

  // from https://codepen.io/fitri/pen/VbrZQm
  function enableDragSort(listClass) {
    const sortableLists = document.getElementsByClassName(listClass);
    Array.prototype.map.call(sortableLists, (list) => {
      enableDragList(list);
    });
  }

  function enableDragList(list) {
    Array.prototype.map.call(list.children, (item) => {
      enableDragItem(item);
      enableDoubleClickItem(item);
    });
  }

  function enableDoubleClickItem(item) {
    item.ondblclick = handleDblClick;
  }

  function handleDblClick(item) {
    const loadIndexId = Number(item.target.id);
    playFileViaLoadIndex(loadIndexId);
  }

  function enableDragItem(item) {
    item.setAttribute("draggable", true);
    item.ondrag = handleDrag;
    item.ondragover = (e) => e.preventDefault();
    item.ondragend = handleDrop;
  }

  function handleDrag(item) {
    const selectedItem = item.target,
      list = selectedItem.parentNode,
      x = event.clientX,
      y = event.clientY;

    selectedItem.classList.add("drag-sort-active");
    let swapItem =
      document.elementFromPoint(x, y) === null
        ? selectedItem
        : document.elementFromPoint(x, y);

    if (list === swapItem.parentNode) {
      swapItem =
        swapItem !== selectedItem.nextSibling ? swapItem : swapItem.nextSibling;
      list.insertBefore(selectedItem, swapItem);
    }
  }

  function handleDrop(item) {
    item.target.classList.remove("drag-sort-active");
    let ids = getFileListIds();
    let newPlayList = ids.map((id) =>
      playList.find((item) => item.loadOrder === id)
    );
    playList = newPlayList;
  }
};

              
            
!
999px

Console