I am trying to convert a flv file to mp3 using ffmpeg from java.
I am running the following command
cmd.exe /C start /BELOWNORMAL /WAIT /B /ffmpeg -i "C:\Documents and Settings\user\My Documents\Bob Dylan - Spanish Harlem Incident(LD).flv" "C:\Documents and Settings\user\My Documents\Bob Dylan - Spanish Harlem Incident(LD).mp3"
I am getting this error "The system cannot find the file and."
I am using the following code to execute commands http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html?page=4
When i run it outside of java, from cmd console i have no problems
Any ideas would be appreciated.