video-dubbing / Wav2Lip /evaluation /scores_LSE /calculate_scores_real_videos.sh
artificialguybr's picture
Upload 69 files
9d72f44
raw
history blame
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