Skip to content

Instantly share code, notes, and snippets.

Downloads all the free Mixamo Animations

Step 1

Go to https://www.mixamo.com/store/#/search?page=1, make sure you're logged in.

Step 2

open up chrome console by pressing F12 on your keyboard on the Mixamo webpage. Click on the "Console" tab in the new window (developer console).

Step 3

Paste in "DownloadMixamoByJakeCattrall.js" into the console input and return. It'll starting downloading from that page and until the last page.

function trigger(el, eventType) {
if (typeof eventType === 'string' && typeof el[eventType] === 'function') {
el[eventType]();
} else {
const event =
eventType === 'string'
? new Event(eventType, {bubbles: true})
: eventType;
el.dispatchEvent(event);
}
}
function fetchList() {
return document.querySelectorAll(".product-results-holder .product-animation")
}
const wait = (ms) => new Promise(resolve => setTimeout(resolve, ms));
const nextPage = async () => {
var lastButton = document.querySelectorAll(".pagination.pagination-sm li:last-child a")
trigger(lastButton[0], "click")
await wait(5000)
}
const start = async () => {
list = fetchList()
for (var i = 0; i <= list.length; i++) {
if (i >= list.length) {
await nextPage()
list = fetchList()
if (list.length == 0) {
return alert("Done!")
}
i = 0
window.scrollTo(0, document.body.scrollHeight);
}
trigger(list[i], "click")
await wait(5000)
var download = document.querySelectorAll(".product-preview-holder .editor.row.row-no-gutter > div.editor-sidebar.col-xs-4 button")[0]
trigger(download, "click")
await wait(800)
var download2 = document.querySelectorAll(".modal-footer .btn-primary")[0]
trigger(download2, "click")
await wait(8000)
console.log(`Completed item ${i} of ${list.length - 1}`)
}
}
start()
@kenorb
Copy link

kenorb commented Feb 7, 2023

Code to select options:

(() => { var select = document.querySelectorAll("select.input-sm.form-control")[4]; select.value = 2; select.dispatchEvent(new Event('change', {bubbles: true})); })();
(() => { var select = document.querySelectorAll("select.input-sm.form-control")[3]; select.value = 24; select.dispatchEvent(new Event('change', {bubbles: true})); })();

@shrinktofit
Copy link

Thank you author, for other ones who want instead the characters, simply modify:

 function fetchList() {
-    return document.querySelectorAll(".product-results-holder .product-animation")
+    return document.querySelectorAll(".product-results-holder .product-character")
 }

@DaveInchy
Copy link

DaveInchy commented Sep 27, 2023

function trigger(el, eventType) {
  if (typeof eventType === 'string' && typeof el[eventType] === 'function') {
    el[eventType]();
  } else {
    const event =
      eventType === 'string'
        ? new Event(eventType, {bubbles: true})
        : eventType;
    el.dispatchEvent(event);
  }
}

function fetchList() {
    if (window.location.href.includes(`Character`)) {
        return document.querySelectorAll(".product-results-holder .product-character")

    } else {
        return document.querySelectorAll(".product-results-holder .product-animation")

    }
}

const wait = (ms) => new Promise(resolve => setTimeout(resolve, ms));

const nextPage = async () => {
  var lastButton = document.querySelectorAll(".pagination.pagination-sm li:last-child a")
  trigger(lastButton[0], "click")
  await wait(5000)
}

const start = async () => {
    var list = fetchList();

    for (var i = 0; i <= list.length; i++) {
      if (i >= list.length) {
        await nextPage()
        list = fetchList()
        if (list.length == 0) {
          return alert("Done!")
        }
        i = 0
        window.scrollTo(0, document.body.scrollHeight);
      }

      trigger(list[i], "click")
      await wait(5000)

      var inplace = document.querySelectorAll(`#site > div:nth-child(5) > div > div > div.product-preview-holder.col-sm-6 > div > div.editor.row.row-no-gutter > div.editor-sidebar.col-xs-4 > div.sidebar-list > div > div > div.animation-settings-list > div > label > input[name="inplace"]`)[0]
      if (inplace) {
          trigger(inplace, "click")
          await wait(800)
      }

      var download = document.querySelectorAll(".product-preview-holder .editor.row.row-no-gutter > div.editor-sidebar.col-xs-4 button")[0]
      if (download) {
        trigger(download, "click")
        await wait(1000)
      }

      (() => { var select = document.querySelectorAll("select.input-sm.form-control")[4]; select.value = 2; select.dispatchEvent(new Event('change', { bubbles: true })); })();
      (() => { var select = document.querySelectorAll("select.input-sm.form-control")[3]; select.value = 24; select.dispatchEvent(new Event('change', { bubbles: true })); })();

      var download2 = document.querySelectorAll(".modal-footer .btn-primary")[0]
      trigger(download2, "click")
      await wait(8000)

      console.log(`Completed item ${i} of ${list.length - 1}`)
    }
}

start()

@bakrhaso
Copy link

bakrhaso commented Mar 23, 2025

Features:

  • Added options at the top to control animation options more easily (default is no skin, 24 FPS, none-uniform keyframe reduction)
  • Added toggle for including skin

Fixes:

  • Stop properly once it reaches the end
  • Work with characters (previous version tried making selections in dropdowns that don't exist for characters)
var animIncludeSkin = false;
// can be 24, 30, 60
var animFps = 24;
// 0 = none, 1 = uniform, 2 = non-uniform
var animKeyFrameReduction = 2;

function trigger(el, eventType) {
  if (typeof eventType === "string" && typeof el[eventType] === "function") {
    el[eventType]();
  } else {
    const event =
      eventType === "string"
        ? new Event(eventType, { bubbles: true })
        : eventType;
    el.dispatchEvent(event);
  }
}

function fetchList() {
  if (window.location.href.includes(`Character`)) {
    return document.querySelectorAll(
      ".product-results-holder .product-character",
    );
  } else {
    return document.querySelectorAll(
      ".product-results-holder .product-animation",
    );
  }
}

const wait = (ms) => new Promise((resolve) => setTimeout(resolve, ms));

const nextPage = async () => {
  var lastButton = document.querySelectorAll(
    ".pagination.pagination-sm li:last-child a",
  );
  console.info("trigger next page click");
  trigger(lastButton[0], "click");
  await wait(5000);
};

const start = async () => {
  var list = fetchList();

  for (var i = 0; i <= list.length; i++) {
    if (i >= list.length) {
      
      // if this is null, then we are on the last page and we are done
      if (document.querySelector(".pagination .fa-angle-right")  == null) {
        return alert("Done!");
      }
      
      await nextPage();
      list = fetchList();
      if (list.length == 0) {
        return alert("Done!");
      }
      i = 0;
      window.scrollTo(0, document.body.scrollHeight);
    }

    console.info("trigger anim/character click");
    trigger(list[i], "click");
    await wait(5000);

    var inplace = document.querySelectorAll(
      `#site > div:nth-child(5) > div > div > div.product-preview-holder.col-sm-6 > div > div.editor.row.row-no-gutter > div.editor-sidebar.col-xs-4 > div.sidebar-list > div > div > div.animation-settings-list > div > label > input[name="inplace"]`,
    )[0];
    if (inplace) {
      console.info("trigger inplace click");
      trigger(inplace, "click");
      await wait(800);
    }

    var download = document.querySelectorAll(
      ".product-preview-holder .editor.row.row-no-gutter > div.editor-sidebar.col-xs-4 button",
    )[0];
    if (download) {
      console.info("trigger first download button click");
      trigger(download, "click");
      await wait(1000);
    }

    if (!window.location.href.includes(`Character`)) {
      (() => {
        var select = document.querySelectorAll(
          "select.input-sm.form-control",
        )[2];
        select.value = animIncludeSkin;
        select.dispatchEvent(new Event("change", { bubbles: true }));
      })();
      (() => {
        var select = document.querySelectorAll(
          "select.input-sm.form-control",
        )[3];
        select.value = animFps;
        select.dispatchEvent(new Event("change", { bubbles: true }));
      })();
      (() => {
        var select = document.querySelectorAll(
          "select.input-sm.form-control",
        )[4];
        select.value = animKeyFrameReduction;
        select.dispatchEvent(new Event("change", { bubbles: true }));
      })();
    }

    var download2 = document.querySelectorAll(".modal-footer .btn-primary")[0];
    console.info("trigger actual download click");
    trigger(download2, "click");

    // wait longer when downloading charactesr since they are bigger than animations
    if (window.location.href.includes(`Character`)) {
      await wait(16000);
    } else {
      await wait(8000);
    }

    console.log(`Completed item ${i} of ${list.length - 1}`);
  }
};

start();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment