ashmore;205552 Wrote: > I concede from the outset that most of what follows seems like another > language to me, but I think I'm 2/3rds of the way there and could do > with some advice... > > Within flac2mp3.pl I've amended flac and lame locations thus: > > # Windows > our $flaccmd = 'c:\Program > Files\EAC\Flac\flac-1.1.4-win\bin\flac.exe'; > our $lamecmd = 'c:\Program Files\EAC\lame.exe'; > > I've created a test source and destination directories entitled > flac2mp3a and b. The source directory has one flac file entitled > Moving.flac. > > This is my DOS command: > C:\Program Files\EAC\Flac\flac2mp3-0.2.7>flac2mp3.pl "J:\flac2mp3a" > "J:\flac2mp3b" > > And this is what happens: > > Processing directory: J:\flac2mp3a > 0 flac files found. Sorting...done. > Processing "01. Moving.flac" > 'c:\Program' is not recognized as an internal or external command, > operable program or batch file. > c:\Program Files\EAC\Flac\flac-1.1.4-win\bin\flac.exe --decode --stdout > --silent > "01. Moving.flac"| c:\Program Files\EAC\lame.exe --preset standard > --replaygain > -accurate --quiet - "J:\flac2mp3b\01. Moving.mp3" failed with exit code > 65280 > > Any pointers? > > Simon
Try embedding double quotes inside of single quotes. our $flaccmd = '"c:\Program Files\EAC\Flac\flac-1.1.4-win\bin\flac.exe"'; our $lamecmd = '"c:\Program Files\EAC\lame.exe"'; -- jeffmeh ------------------------------------------------------------------------ jeffmeh's Profile: http://forums.slimdevices.com/member.php?userid=3986 View this thread: http://forums.slimdevices.com/showthread.php?t=35711 _______________________________________________ ripping mailing list [email protected] http://lists.slimdevices.com/lists/listinfo/ripping
