rst6616 wrote:
> Robin, it is v2.7
> Let me know if my upload worked ok.
> Thanks, Ron

Ron,

The upload worked.

I tried using v0.2.7 and, when the flac dir was empty, I got the same
result as you.

However, when I copied some files into the flac dir it worked just fine.

The "-1 flac files found" means that flac2mp3 didn't find any flac files
in the location you specified - looks like I need to trap for that and
be more friendly.

One thought - are your files called "*.FLAC", i.e. capital letters? If
so, you might like to try changing this line:

my @flac_files = File::Find::Rule->file()->name('*.flac')->in('.');

to this:

my @flac_files = File::Find::Rule->file()
        ->extras( { follow => 1 })
        ->name(qr/\.flac$/i)
        ->in('.');

This makes the file search case-insensitive.

HTH,

R.

_______________________________________________
ripping mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/ripping

Reply via email to