29 packages tagged with “ffprobe”
A .NET Standard FFMpeg/FFProbe wrapper for easily integrating media analysis and conversion into your .NET applications
Get video information for .NET (wrapper for ffprobe tool). Provides details about file media streams: format, codecs, video resolution and frame rate, duration, custom tags etc. NReco.VideoInfo nuget can be used for free in non-SaaS apps that have only one single-server production deployment. This nuget package includes ffprobe.exe (it is extracted on the first use automatically - you don't need to deploy ffprobe separately) and therefore can be used only on Windows. For cross-platform deployments NReco.VideoInfo.LT nuget should be used instead. How to use: var ffProbe = new NReco.VideoInfo.FFProbe(); var videoInfo = ffProbe.GetMediaInfo(pathToVideoFileOrUrl); Console.WriteLine(videoInfo.FormatName); Console.WriteLine(videoInfo.Duration); More info and online demo: https://www.nrecosite.com/video_info_net.aspx
Get video information for .NET (wrapper for ffprobe tool). Provides details about file media streams: format, codecs, video resolution and frame rate, duration, custom tags etc. This LT-version nuget package does NOT include ffprobe.exe and is suitable for cross-platform deployments (Windows, Linux/Docker, Mac-OS) or using a ffprobe build/version of your choice. NReco.VideoInfo.LT nuget can be used for free in non-SaaS apps that have only one single-server production deployment. How to use: var ffProbe = new NReco.VideoInfo.FFProbe(); ffProbe.FFProbeExeName = "ffprobe.exe"; // just "ffprobe" for Linux/OS-X ffProbe.ToolPath = "<path_to_folder_with_ffprobe>"; var videoInfo = ffProbe.GetMediaInfo(pathToVideoFile); More info and online demo: https://www.nrecosite.com/video_info_net.aspx
Simply adds the ffprobe (FFmpeg) Windows executable, updated daily (if available)
Packaged runtime distributables for ffmpeg and ffprobe.
Image extension for FFMpegCore using System.Common.Drawing
Library to query audio and video files for their meta information
Simply adds the FFplay (FFmpeg) Windows executable, updated daily (if available)
Image extension for FFMpegCore using SkiaSharp
This library is a universal wrapper for executable processes in the operating system (Windows/Linux). The library allows files to communicate with processes through named pipes, streams, byte arrays, and directory paths. It also has some useful features, such as the ability to decode a stream on the fly and get a set of files from it by their signatures.
Handles downloading ffmpeg
FFMpeg downloader extension for FFMpegCore
A wrapper for FFMpeg CLI for ease-of-use when running commands.
A simple .NET utility to get details like duration, resolution, and FPS from a video file. This package is part of the tool suite from FrameNet.ai, the effortless AI video editor.
Provides the latest stable ffprobe.exe Windows binary as a NuGet package.
A .NET Standard FFMpeg/FFProbe wrapper for easily integrating media analysis and conversion into your .NET applications (modified by xyb from https://github.com/rosenbjerg/FFMpegCore)
Ffprobe Static (ffprobe-static) binding library for Bridge.NET projects.
FFMpegCore mod by appleneko2001. For more information, browse the project URL.
zmj个人按照ffmpeg.exe的控制台的参数说明制作的格式化控制台参数及调用控制台命令并且使用其功能的中间库,有一些参数的含义及参数的内容已经列举为各个方法,可以从方法上直观的看出参数的意义和用法,方法名也是格式化过的,由于ffmpeg的参数分为全局参数,输入参数,输出参数,所以文件名也是对应的不同前缀,使用时更加明确。