Advertisement
Guest User

Untitled

a guest
Dec 25th, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. NUM=1;
  2. cat mimi-combined-lines.ass | grep Dialog | cut -d, -f2| sed -e 's/^0/00/' -e 's/^1/01/' | while read i; do
  3. echo $i $NUM;
  4. ffmpeg -loglevel quiet -ss "$i" -i title00.mkv -f image2 -vframes 1 $NUM.jpg;
  5. NUM=$((NUM+1));
  6. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement