But there seems to be something else amiss. I am not getting reliable results with 1.5.0 onwards.
I'm currently playing with makemkvcon and "Requiem for a Dream Region 1, BD+" (which I know to be good) and I'm getting different results when I do exactly the same thing a few times in a row. I'll reply to this post when I have more information.
This is what I'm running right now:
Code: Select all
#!/bin/sh
cd ~/hd/makemkv
dst=../../tmp/mkv
for i in 1.5.0 1.5.1 1.5.2; do
cd makemkv_v${i}_beta_bin
sudo make -f makefile.linux install
cd ..
cd makemkv_v${i}_beta_oss
sudo make -f makefile.linux install
cd ..
for j in `seq 1 10`; do
LOG=log${i}_${j}.txt
killall makemkvcon
rm -f $dst/*
eject /dev/scd0
sleep 1
eject -t /dev/scd0
sleep 15
/usr/bin/time makemkvcon mkv -r --decrypt --progress=-same --messages=-stdout --directio=true disc:0 all $dst >$LOG 2>&1
ls -nl $dst/* >>$LOG 2>&1
sha1sum $dst/* >>$LOG 2>&1
done
done