mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 00:24:14 +01:00
Update "SaveM3U8Stream" method to use "WithCopyCodec" option
This commit is contained in:
parent
643952db7b
commit
6c2311c869
1 changed files with 4 additions and 1 deletions
|
@ -333,7 +333,10 @@ public static bool SaveM3U8Stream(Uri uri, string output)
|
||||||
}
|
}
|
||||||
|
|
||||||
return FFMpegArguments
|
return FFMpegArguments
|
||||||
.FromUrlInput(uri)
|
.FromUrlInput(uri, options =>
|
||||||
|
{
|
||||||
|
options.WithCopyCodec();
|
||||||
|
})
|
||||||
.OutputToFile(output)
|
.OutputToFile(output)
|
||||||
.ProcessSynchronously();
|
.ProcessSynchronously();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue