The request for an "ssis951mp4" review appears to refer to a specific video production or digital media file, often associated with instructional or technical content (like SQL Server Integration Services, or "SSIS"). However, the exact title "ssis951mp4" is highly specific and likely refers to a single video from a larger training course or a specific professional workflow.
Start-Process -NoNewWindow -FilePath "ffmpeg.exe" -ArgumentList "-i input.mp4 -c copy fixed.mp4"
var path = Dts.Variables["User::CurrentFilePath"].Value.ToString();
var mi = new MediaInfo();
mi.Open(path);
var duration = mi.Get(StreamKind.Video, 0, "Duration/String3"); // e.g. "00:03:12.45"
var width = mi.Get(StreamKind.Video, 0, "Width");
var height = mi.Get(StreamKind.Video, 0, "Height");
// Populate SSIS variables
Dts.Variables["User::DurationSec"].Value = double.Parse(duration);
Dts.Variables["User::Width"].Value = int.Parse(width);
Dts.Variables["User::Height"].Value = int.Parse(height);
mi.Close();
Dts.TaskResult = (int)ScriptResults.Success;