public string f_VideoDuration((add path)parameters) { try { string sInputVideo = Page.MapPath(add path); string sPath = " -i " + sInputVideo ; Process ffmepg = new Process(); ffmepg.StartInfo.FileName = (Server.MapPath(ffmpeg.exe")); ffmepg.StartInfo.UseShellExecute = false; ffmepg.StartInfo.RedirectStandardOutput = true; ffmepg.StartInfo.RedirectStandardError = true; ffmepg.StartInfo.CreateNoWindow = true; ffmepg.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; ffmepg.StartInfo.Arguments = sPath; ffmepg.EnableRaisingEvents = true; ffmepg.Start(); string sDuration = ffmepg.StandardError.ReadToEnd().ToString(); ffmepg.Close(); ffmepg.Dispose(); sDuration = sDuration.Remove(0, sDuration.LastIndexOf("Duration: ") + 10); sDuration = sDuration.Substring(0, sDuration.IndexOf(",")); return sDuration; } catch (Exception ex) { throw (ex); } }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง