mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
FFMpeg.Join error Invalid output file. File extension should be 'mpegts' required.
This commit is contained in:
parent
74593461d4
commit
738176479d
2 changed files with 7 additions and 8 deletions
|
@ -18,7 +18,7 @@ public static string Extension(this Codec type)
|
||||||
}
|
}
|
||||||
public static readonly string Mp4 = ".mp4";
|
public static readonly string Mp4 = ".mp4";
|
||||||
public static readonly string Mp3 = ".mp3";
|
public static readonly string Mp3 = ".mp3";
|
||||||
public static readonly string Ts = ".ts";
|
public static readonly string Ts = ".mpegts";
|
||||||
public static readonly string Ogv = ".ogv";
|
public static readonly string Ogv = ".ogv";
|
||||||
public static readonly string Png = ".png";
|
public static readonly string Png = ".png";
|
||||||
public static readonly string WebM = ".webm";
|
public static readonly string WebM = ".webm";
|
||||||
|
|
|
@ -1,13 +1,12 @@
|
||||||
using System;
|
using FFMpegCore.Enums;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Drawing;
|
|
||||||
using System.Drawing.Imaging;
|
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
|
||||||
using FFMpegCore.Enums;
|
|
||||||
using FFMpegCore.Exceptions;
|
using FFMpegCore.Exceptions;
|
||||||
using FFMpegCore.Helpers;
|
using FFMpegCore.Helpers;
|
||||||
using FFMpegCore.Pipes;
|
using FFMpegCore.Pipes;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
namespace FFMpegCore
|
namespace FFMpegCore
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue