我每天晚上使用VLC包装VLC.DotNet,libvlc 3.0.3或3.0.4,然后尝试使用示例:
static void Main(string[] args)
{
var currentDirectory = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
// Default installation path of VideoLAN.LibVLC.Windows
var libDirectory =
new DirectoryInfo(Path.Combine(currentDirectory, "libvlc", IntPtr.Size == 4 ? "win-x86" : "win-x64"));
var destination = Path.Combine(currentDirectory, "record.mp4");
using (var mediaPlayer = new Vlc.DotNet.Core.VlcMediaPlayer(libDirectory))
{
var mediaOptions = new[]
{
":sout=file{dst=" + destination + "}",
":sout-keep"
};
mediaPlayer.SetMedia(new Uri("rtsp://192.168.x.xxx/ch1.h264"),
mediaOptions);
mediaPlayer.Play();
Console.WriteLine($"Recording in {destination}");
Console.WriteLine("Press any key to exit");
Console.ReadKey();
}
}
一切正常,我在文件夹中看到了录制的文件,但是当我更改媒体选项格式时,文件没有录制... F.E:
var mediaOptions = new[]
{
":sout=#transcode{vcodec=h264}:std{access=file,mux=ffmpeg{mux=flv}),file{dst=" + destination + "}",
":sout-keep"
};
我需要将来自摄像机的流视频编码为具有mp3或AAC音频的H.264 mp4视频文件。 如果有人在这个示例中为我提供帮助,那就太好了。
答案 0 :(得分:1)
对不起,我来晚了。 经过长时间的研究后,我遇到了同样的问题,似乎VLC子命令通过使用''起作用,所以我像这样解决了这个问题:
vlcControl1.SetMedia(new Uri(YourUrl), new string[] { ":sout=#duplicate{dst='transcode{vcodec=h264,width=640,height=480,fps=20}:std{access=file,mux=ts,dst=YourDestinationPath}',dst=display}" });
在那之后,我可以在录制时预览流视频。
在此处查看文档:{{3}}
致谢。
答案 1 :(得分:0)
我将媒体选项更改为:
var lowQualityMediaOptions = new[]
{
":sout=#transcode{vcodec=h264,width=640,height=480,canvas-width=640,canvas-height=480,fps=4}:std{access=file,mux=ts,dst=" + lowQualityDestination + "}",
":sout-all"
};
一切正常。