mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-13 17:45:45 +00:00
14 lines
No EOL
296 B
C#
14 lines
No EOL
296 B
C#
using System;
|
|
using System.IO;
|
|
using FFMpegCore.FFMPEG;
|
|
|
|
namespace FFMpegCore.Extend
|
|
{
|
|
public static class UriExtensions
|
|
{
|
|
public static VideoInfo SaveStream(this Uri uri, FileInfo output)
|
|
{
|
|
return new FFMpeg().SaveM3U8Stream(uri, output);
|
|
}
|
|
}
|
|
} |