jackz

jackz / Bulk Steam Clip Extract

Last active 5 hours ago

Like 0

Run in steam's clips folder https://github.com/darkwater/steam-clip-exporter

bulk_steam_extract.sh Raw
1#!/bin/bash
2
3#https://github.com/darkwater/steam-clip-exporter
4EXTRACT_PATH=~/git/steam-clip-exporter/
5set -e
6
7mkdir _output
8for dir in clip_*; do
9 $EXTRACT_PATH "$dir"
10 mv "$dir/output.mp4" "_output/$dir.mp4"
11 rm -r "$dir"
12done