mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-16 11:05:44 +00:00
9 lines
197 B
C#
9 lines
197 B
C#
namespace FFMpegCore.Extend;
|
|
|
|
public static class UriExtensions
|
|
{
|
|
public static bool SaveStream(this Uri uri, string output)
|
|
{
|
|
return FFMpeg.SaveM3U8Stream(uri, output);
|
|
}
|
|
}
|