| 1 | #!/bin/bash |
| 2 | |
| 3 | #https://github.com/darkwater/steam-clip-exporter |
| 4 | EXTRACT_PATH=~/git/steam-clip-exporter/ |
| 5 | set -e |
| 6 | |
| 7 | mkdir _output |
| 8 | for dir in clip_*; do |
| 9 | $EXTRACT_PATH "$dir" |
| 10 | cp "$dir/output.mp4" "_output/$dir.mp4" |
| 11 | rm -r "$dir" |
| 12 | done |
jackz / Bulk Steam Clip Extract
Last active 3 hours ago
Requires https://github.com/darkwater/steam-clip-exporter - Build & run in Steam/clips folder, outputs files in Steam/exports
Revision fe1e752aa1d966e3cb5fcfcfac016c6800b0c710