UtilFFMediaToolkitExtractVideoFramesAsPNG(String, String) Method
Extracts all the frames of the specified video file and save them to disk as PNG images.
Namespace: DevCase.ThirdParty.FFMediaToolkitAssembly: DevCase.net48.ThirdParty.FFMediaToolkit (in DevCase.net48.ThirdParty.FFMediaToolkit.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static void ExtractVideoFramesAsPNG(
string videoFile,
string outputPath
)
Public Shared Sub ExtractVideoFramesAsPNG (
videoFile As String,
outputPath As String
)
Dim videoFile As String
Dim outputPath As String
UtilFFMediaToolkit.ExtractVideoFramesAsPNG(videoFile,
outputPath)
public:
static void ExtractVideoFramesAsPNG(
String^ videoFile,
String^ outputPath
)
static member ExtractVideoFramesAsPNG :
videoFile : string *
outputPath : string -> unit
No code example is currently available or this language may not be supported.
Parameters
- videoFile String
-
The video file.
- outputPath String
-
The output path.
This is a code example.
No code example is currently available or this language may not be supported.
' FFMpeg binaries (shared build) (download here: https://www.gyan.dev/ffmpeg/builds/)
' See FFMediaToolkit documentation here: https://github.com/radek-k/FFMediaToolkit#setup
FFMediaToolkit.FFmpegLoader.FFmpegPath = "C:\ffmpeg\"
FFMediaToolkit.FFmpegLoader.LoadFFmpeg()
ExtractVideoFramesAsPNG("C:\file.mp4", "C:\frames")
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.