Last active 4 hours ago
steam
Run in steam's clips folder https://github.com/darkwater/steam-clip-exporter
0
0
1
| 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 | mv "$dir/output.mp4" "_output/$dir.mp4" |