如何使用FFmpeg通过https下载视频文件。
我在Android上使用FFmpeg来下载带有https的视频文件。但无法下载。因为FFmpeg不支持https。
new Process
{
StartInfo = new ProcessStartInfo(@"file path")
{
UseShellExecute = true
}
}.Start();
日志
ffmpeg -i https://example.com/video.mp4 -c copy b.mp4