This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# IMPORTANT: make sure no animation is assigned | |
# to the rig before you run this script, | |
# otherwise linked animation data will be corrupted. | |
import bpy | |
# ---------------------------------- | |
# Mixamo left/right bone names start with 'Left'/'Right' | |
# Instead we apply Blender's standard .L/.R suffix | |
# and get rid of long suffix |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
for i in ./*.swf ; do | |
for j in `swfextract $i | grep -E PNGs.* -o | grep -E [0-9]+ -o` ; do | |
echo "$i -> extract png $j"; | |
swfextract -p "$j" "$i" -o "$i"_"$j".png | |
done | |
for j in `swfextract $i | grep -E JPEGs.* -o | grep -E [0-9]+ -o` ; do | |
echo "$i -> extract jpeg $j"; | |
swfextract -j "$j" "$i" -o "$i"_"$j".jpg | |
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
# ------------------------------ | |
# START CONFIGURATION SECTION | |
# | |
$launch_url = "http://www.imsglobal.org/developers/BLTI/tool.php"; | |
$key = "12345"; | |
$secret = "secret"; | |
$launch_data = array( |