Skip to content

Commit

Permalink
Generate QR info script to work with ReproNim session structure from h…
Browse files Browse the repository at this point in the history
  • Loading branch information
vmdocua committed Jul 24, 2024
1 parent 40fc6cb commit 7837890
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Parsing/generate_qrinfo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ do
echo "Generating tmp *.mkv file $tmp_mkv_file..."
ffmpeg -i $file -an -c copy $tmp_mkv_file
./parse_wQR.py --log-level $LOG_LEVEL $tmp_mkv_file >$OUT_DIR/$base_name.qrinfo.jsonl 2>$OUT_DIR/$base_name.qrinfo.log
if [ -e "tmp_mkv_file" ]; then
echo "Deleting tmp *.mkv file: tmp_mkv_file"
rm "$out_file"
if [ -e "$tmp_mkv_file" ]; then
echo "Deleting tmp *.mkv file: $tmp_mkv_file"
rm "$tmp_mkv_file"
fi

counter=$((counter + 1))
Expand Down

0 comments on commit 7837890

Please sign in to comment.