/ Published in: Bash
Expand |
Embed | Plain Text
#!/bin/sh for f in *.flv; do echo "Processing $f" ffmpeg -i "$f" -target ntsc-dvd "${f%.flv}.mpg"
You need to login to post a comment.
#!/bin/sh for f in *.flv; do echo "Processing $f" ffmpeg -i "$f" -target ntsc-dvd "${f%.flv}.mpg"
You need to login to post a comment.