voxforge.org
VoxForge Dev

Changeset 2271

Show
Ignore:
Timestamp:
08/24/07 14:44:30 (1 year ago)
Author:
kmaclean
Message:

Flac audio processing updates

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Trunk/Scripts/Metrics_scripts/UserMetrics.pm

    r2270 r2271  
    2828use File::Size; 
    2929use File::Util; 
     30use File::Basename; 
    3031use Audio::Wav; 
    3132use Audio::FLAC::Header; 
  • Trunk/Scripts/Mirroring_scripts/RunDaily.pl

    r2270 r2271  
    7171### Main 
    7272#################################################################### 
    73 UserSubmission::Main(\%parms) || die "UserSubmissions error: $?"; 
    74 Repository::Main(\%parms) || die "Repository error: $?"; 
    75 AcousticModel::Create(\%parms) || die "UserSubmissions error: $?"; 
     73UserSubmission::Main(\%parms) || confess "UserSubmissions error: $?"; 
     74Repository::Main(\%parms) || confess "Repository error: $?"; 
     75AcousticModel::Create(\%parms) || confess "UserSubmissions error: $?"; 
    7676 
    77 NightlyTest::Process(\%parms) || die "UserSubmissions error: $?"; 
    78 TarFiles::Create($parms) || die "UserSubmissions error: $?"; 
    79 UserMetrics::Process(\%parms) || die "UserSubmissions error: $?"; 
    80 Rsync() || die "UserSubmissions error: $?"; 
     77NightlyTest::Process(\%parms) || confess "UserSubmissions error: $?"; 
     78TarFiles::Create($parms) || confess "UserSubmissions error: $?"; 
     79UserMetrics::Process(\%parms) || confess "UserSubmissions error: $?"; 
     80Rsync() || confess "UserSubmissions error: $?"; 
    8181 
    8282print STDOUT "!!!!!!run_daily completed\n"; 
     
    8787sub Rsync { 
    8888        # Mirror files to VoxForge repository 
    89         $command = ("rsync -r -v -t /data/svn-tarfiles/SpeechCorpus/Trunk -e ssh user\@voxforge1\.org\:downloads/SpeechCorpus --stats"); print "***$command\n";system($command) == 0 or die "system $command failed: $?";   
    90         $command = ("rsync -r -v -t /data/svn-tarfiles/Main/Trunk -e ssh user\@voxforge1\.org\:downloads/Main --stats"); print "***$command\n";system($command) == 0 or die "system $command failed: $?";   
    91         $command = ("rsync -r -v -t /data/svn-tarfiles/Main/Tags -e ssh user\@voxforge1\.org\:downloads/Main --stats"); print "***$command\n";  system($command) == 0 or die "system $command failed: $?";  
    92         $command = ("rsync -r -v -t /data/svn-tarfiles/Nightly_Builds -e ssh user\@voxforge1\.org\:downloads --stats"); print "***$command\n";  system($command) == 0 or die "system $command failed: $?";  
    93 # !!!!!! 
    94         $command = ("rsync -r -v -t /data/svn-tarfiles/Russian/Trunk -e ssh user\@voxforge1\.org\:downloads/Russian --stats"); print "***$command\n";   system($command) == 0 or die "system $command failed: $?";  
    95 # !!!!!! 
     89        $command = ("rsync -r -v -t /data/svn-tarfiles/SpeechCorpus/Trunk -e ssh user\@voxforge1\.org\:downloads/SpeechCorpus --stats"); print "***$command\n";system($command) == 0 or confess "system $command failed: $?";   
     90        $command = ("rsync -r -v -t /data/svn-tarfiles/Main/Trunk -e ssh user\@voxforge1\.org\:downloads/Main --stats"); print "***$command\n";system($command) == 0 or confess "system $command failed: $?";   
     91        $command = ("rsync -r -v -t /data/svn-tarfiles/Main/Tags -e ssh user\@voxforge1\.org\:downloads/Main --stats"); print "***$command\n";  system($command) == 0 or confess "system $command failed: $?";  
     92        $command = ("rsync -r -v -t /data/svn-tarfiles/Nightly_Builds -e ssh user\@voxforge1\.org\:downloads --stats"); print "***$command\n";  system($command) == 0 or confess "system $command failed: $?";  
     93        $command = ("rsync -r -v -t /data/svn-tarfiles/Russian/Trunk -e ssh user\@voxforge1\.org\:downloads/Russian --stats"); print "***$command\n";   system($command) == 0 or confess "system $command failed: $?";  
    9694} 
    97951;