使用 nreco.videoconverter 轉(zhuǎn)換后如何獲得結(jié)果文件名我的要求是將文件路徑保存到數(shù)據(jù)庫(kù) var converter = new NReco.VideoConverter.FFMpegConverter(); converter.ConvertMedia(file, Path.Combine(filepath,Path.GetFileName(file).Split('.')[0]) + ".mp4", "mp4"); SqlCommand cmd = new SqlCommand(); cmd.Connection = con; cmd.CommandType = CommandType.StoredProcedure; cmd.CommandText = "sp_videofilepathupdate"; cmd.Parameters.AddWithValue("@path",); con.Open(); cmd.ExecuteNonQuery(); con.Close();我試圖傳遞 < Path.GetFileName(file).Split('.')[0]) + ".mp4"> 但它保存舊文件名本身,即 file.flv 但在轉(zhuǎn)換后文件名正在保存到本地文件夾是 file.mp4。我怎樣才能把它保存到數(shù)據(jù)庫(kù)中。提前致謝..
Nreco.VideoConverter,如何將轉(zhuǎn)換后的文件名保存到數(shù)據(jù)庫(kù)中?
料青山看我應(yīng)如是
2022-11-21 16:24:16