Video not getting converted to flv
	
	
		hi i tried the solution and fixed that problem, however i encountered another problem when i tried it again.
	Code:
	
/usr/local/bin/ffmpeg -i /var/www/html/xxxx/video/4.wmv -acodec mp3 -ar 22050 -ab 32 -f flv /var/www/html/xxxx/flvideo/4.flv
 the result that i get:
	Code:
	
FFmpeg version SVN-rUNKNOWN, Copyright (c) 2000-2007 Fabrice Bellard, et al.
  configuration: --enable-shared
  libavutil version: 49.4.0
  libavcodec version: 51.40.4
  libavformat version: 51.12.1
  built on May 30 2007 00:30:06, gcc: 4.1.1 20070105 (Red Hat 4.1.1-51)
/var/www/html/xxxx/video/4.wmv: no such file or directory
 says that it can't find the the file or directory. so i tried to remove all those  folder paths and tried this:
	Code:
	
/usr/local/bin/ffmpeg -i video/4.wmv -acodec mp3 -ar 22050 -ab 32 -f flv flvideo/4.flv
 same result:
	Code:
	
FFmpeg version SVN-rUNKNOWN, Copyright (c) 2000-2007 Fabrice Bellard, et al.
  configuration: --enable-shared
  libavutil version: 49.4.0
  libavcodec version: 51.40.4
  libavformat version: 51.12.1
  built on May 30 2007 00:30:06, gcc: 4.1.1 20070105 (Red Hat 4.1.1-51)
video/4.wmv: no such file or directory
 what is the problem here? everything else seems to be in order.
	 
	
	
	
		Video not getting converted to flv
	
	
		yes it is on the correct path and i am using the command on the command line.