Universal_Video_Translator / evaluation /scores_LSE /calculate_scores_real_videos.sh
ATP
Add application file
8746ace
raw
history blame contribute delete
No virus
294 Bytes
rm all_scores.txt
yourfilenames=`ls $1`
for eachfile in $yourfilenames
do
python run_pipeline.py --videofile $1/$eachfile --reference wav2lip --data_dir tmp_dir
python calculate_scores_real_videos.py --videofile $1/$eachfile --reference wav2lip --data_dir tmp_dir >> all_scores.txt
done