//转FLVpublic static string VideoConvertFlv(string FromName, string WidthAndHeight, string ExportName) { string ffmpeg = HttpContext.Current.Server.MapPath("~/FLV/ffmpeg.exe"); string Command =" -i " + FromName + " -y -ab 56 -ar 22050 -b 500 -r 15 -s " + WidthAndHeight + " "+ ExportName; //Flv格式 //s Read More
posted @ 2011-01-20 17:26 咸鱼公子 Views(879) Comments(0) Diggs(0) Edit