mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 01:55:45 +00:00
12 lines
No EOL
241 B
C#
12 lines
No EOL
241 B
C#
using System;
|
|
|
|
namespace FFMpegCore.Extend
|
|
{
|
|
public static class UriExtensions
|
|
{
|
|
public static bool SaveStream(this Uri uri, string output)
|
|
{
|
|
return FFMpeg.SaveM3U8Stream(uri, output);
|
|
}
|
|
}
|
|
} |