- Timestamp:
- 06/09/08 21:09:55 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Trunk/Scripts/Audio_scripts/AudioSegmentation/AudioBook/Segments.pm
r2606 r2608 41 41 my $audioBook = $self->{'audiobookObject'}; 42 42 my $debug = $audioBook->getDebug; 43 43 44 44 45 $self->{'promptsWithTimes'} = $promptsWithTimes; … … 55 56 my $audioBook = $self->{'audiobookObject'}; 56 57 my $debug = $audioBook->getDebug; 57 58 58 my $chapter = $self->{'chapterObject'}; 59 my $missingWords = $chapter->getMissingWordsObject(); 59 60 my $Audio = $chapter->getchapterAudioObject(); 61 60 62 $Audio->createSegmentedAudio(); 61 63 if ($audioBook->getVerify_segments()) { … … 65 67 $self->{'promptsWithTimes'} = "error:need to verify segments (-v switch) to get prompts with time"; 66 68 } 69 70 if ($chapter->getMissingWordFound()) { 71 if ($audioBook->getVerify_out_of_vocabulary_pronunciations()) { 72 $missingWords->verifyMissingWordPronunciations(); 73 } 74 } 75 76 67 77 68 78 $self->{'segmentAudioObject'} = $Audio;