Last post, mad respect to g3gg0 for the help....
Do the following ...
1. Download mlv_dump.osx
2. Open a Terminal
3. Go to the folder where you downloaded mlv_dump.osx (extract if needed) and type: sudo mv ./mlv_dump.osx /usr/bin/mlv_dump
4. Type sudo chmod +x /usr/bin/mlv_dump
5. Make a file in the folder where you've moved the MLV files, save as recursive.sh, with contents:
for FILE in `ls -A1 *.MLV *.mlv 2>/dev/null`; do
BASE=`echo $FILE | cut -d "." -f1`;
mkdir $BASE;
mv ./$FILE ./$BASE
cd ./$BASE
/usr/bin/mlv_dump --dng -o frame_ $FILE
/usr/bin/mlv_dump -m -o meta.mlv $FILE
/usr/bin/mlv_dump -v meta.mlv >$FILE.txt
rm ./meta.mlv
rm ./meta.mlv.wav
cd ..
done
6. Run recursive.sh from the Terminal.
This will extract all the frames from the MLV files and extract MLV metadata into a TXT file.
7. Profit!