This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # This script recurses through the file heirarchy, converting .MOD video files into .mp4 files with ffmpeg. | |
| # usage: cd into the directory that you want to perform this script, then run "./convert.sh ." | |
| MODext=MOD | |
| MP4ext=mp4 | |
| # walk through a directory recusively, | |
| recurse_dir() { |