91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 29.9MB
    文件類型: .zip
    金幣: 2
    下載: 1 次
    發布日期: 2023-07-27
  • 語言: C#
  • 標簽: rtsp??FFmpeg??

資源簡介

C# 使用FFmpeg庫保存rtsp視頻流為本地文件,獲取攝像頭rtsp視頻流地址可以參考我的另一個資源

資源截圖

代碼片段和文件信息

using?System;
using?System.IO;
using?System.Runtime.InteropServices;

namespace?OnvifVideoServer
{
????public?class?FFmpegBinariesHelper
????{
????????private?const?string?LD_LIBRARY_PATH?=?“LD_LIBRARY_PATH“;

????????internal?static?void?RegisterFFmpegBinaries()
????????{
????????????switch?(Environment.OSVersion.Platform)
????????????{
????????????????case?PlatformID.Win32NT:
????????????????case?PlatformID.Win32S:
????????????????case?PlatformID.Win32Windows:
????????????????????var?current?=?Environment.CurrentDirectory;
????????????????????var?probe?=?$“FFmpeg/bin/{(Environment.Is64BitProcess???@“x64“?:?@“x86“)}“;
????????????????????while?(current?!=?null)
????????????????????{
????????????????????????var?ffmpegDirectory?=?Path.Combine(current?probe);
????????????????????????if?(Directory.Exists(ffmpegDirectory))
????????????????????????{
????????????????????????????RegisterLibrariesSearchPath(ffmpegDirectory);
????????????????????????????return;
????????????????????????}
????????????????????????current?=?Directory.GetParent(current)?.FullName;
????????????????????}
????????????????????break;
????????????????case?PlatformID.Unix:
????????????????case?PlatformID.MacOSX:
????????????????????var?libraryPath?=?Environment.GetEnvironmentVariable(LD_LIBRARY_PATH);
????????????????????RegisterLibrariesSearchPath(libraryPath);
????????????????????break;
????????????}
????????}
????????private?static?void?RegisterLibrariesSearchPath(string?path)
????????{
????????????switch?(Environment.OSVersion.Platform)
????????????{
????????????????case?PlatformID.Win32NT:
????????????????case?PlatformID.Win32S:
????????????????case?PlatformID.Win32Windows:
????????????????????SetDllDirectory(path);
????????????????????break;
????????????????case?PlatformID.Unix:
????????????????case?PlatformID.MacOSX:
????????????????????string?currentValue?=?Environment.GetEnvironmentVariable(LD_LIBRARY_PATH);
????????????????????if?(string.IsNullOrWhiteSpace(currentValue)?==?false?&&?currentValue.Contains(path)?==?false)
????????????????????{
????????????????????????string?newValue?=?currentValue?+?Path.PathSeparator?+?path;
????????????????????????Environment.SetEnvironmentVariable(LD_LIBRARY_PATH?newValue);
????????????????????}
????????????????????break;
????????????}
????????}

????????[DllImport(“kernel32“?SetLastError?=?true)]
????????private?static?extern?bool?SetDllDirectory(string?lpPathName);
????}
}

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2018-11-14?17:22??OnvifVideoServer\
?????目錄???????????0??2018-11-14?17:01??OnvifVideoServer\.vs\
?????目錄???????????0??2018-11-14?17:03??OnvifVideoServer\.vs\OnvifVideoServer\
?????目錄???????????0??2018-11-14?17:17??OnvifVideoServer\.vs\OnvifVideoServer\v14\
?????文件????????6656??2018-11-14?17:48??OnvifVideoServer\.vs\OnvifVideoServer\v14\.suo
?????目錄???????????0??2018-11-14?17:17??OnvifVideoServer\.vs\OnvifVideoServer\v15\
?????文件????????3584??2018-11-14?17:17??OnvifVideoServer\.vs\OnvifVideoServer\v15\.suo
?????文件?????????184??2018-11-07?11:56??OnvifVideoServer\App.config
?????文件????????2439??2018-11-14?17:22??OnvifVideoServer\FFmpegBinariesHelper.cs
?????文件????????2216??2018-11-14?17:03??OnvifVideoServer\Form1.Designer.cs
?????文件????????1980??2018-11-14?17:07??OnvifVideoServer\Form1.cs
?????文件????????6011??2018-11-14?17:03??OnvifVideoServer\Form1.resx
?????文件????????4642??2018-11-13?17:13??OnvifVideoServer\OnvifVideoServer.csproj
?????文件?????????595??2018-11-14?17:02??OnvifVideoServer\Program.cs
?????目錄???????????0??2018-11-14?17:00??OnvifVideoServer\Properties\
?????文件????????1358??2018-11-07?11:56??OnvifVideoServer\Properties\AssemblyInfo.cs
?????文件????????2872??2018-11-07?11:56??OnvifVideoServer\Properties\Resources.Designer.cs
?????文件????????5612??2018-11-07?11:56??OnvifVideoServer\Properties\Resources.resx
?????文件????????1116??2018-11-07?11:56??OnvifVideoServer\Properties\Settings.Designer.cs
?????文件?????????249??2018-11-07?11:56??OnvifVideoServer\Properties\Settings.settings
?????文件????????6658??2018-11-14?17:06??OnvifVideoServer\RTSPHelper.cs
?????目錄???????????0??2018-11-15?09:24??OnvifVideoServer\bin\
?????目錄???????????0??2018-11-14?17:13??OnvifVideoServer\bin\Debug\
?????目錄???????????0??2018-11-15?09:24??OnvifVideoServer\bin\Debug\ErrorLogs\
?????文件??????217088??2017-09-14?13:49??OnvifVideoServer\bin\Debug\FFmpeg.AutoGen.dll
?????文件??????176128??2013-05-18?11:15??OnvifVideoServer\bin\Debug\ICSharpCode.SharpZipLib.dll
?????文件??????229376??2013-08-28?18:47??OnvifVideoServer\bin\Debug\NVelocity.dll
?????文件??????373760??2013-08-28?18:47??OnvifVideoServer\bin\Debug\Newtonsoft.Json.dll
?????文件???????19968??2018-11-02?09:42??OnvifVideoServer\bin\Debug\Omu.ValueInjecter.dll
?????文件????????7778??2018-11-02?09:42??OnvifVideoServer\bin\Debug\Omu.ValueInjecter.xml
?????文件???????14336??2018-11-14?17:22??OnvifVideoServer\bin\Debug\OnvifVideoServer.exe
............此處省略169個文件信息

評論

共有 條評論