2020-01-12 22:57:13 +00:00
|
|
|
using System.IO;
|
|
|
|
using System.Text.Json;
|
|
|
|
using System.Threading.Tasks;
|
2020-08-26 14:22:48 +00:00
|
|
|
using MediaBrowser.Common.Json;
|
2020-01-12 22:57:13 +00:00
|
|
|
using MediaBrowser.MediaEncoding.Probing;
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
namespace Jellyfin.MediaEncoding.Tests
|
|
|
|
{
|
|
|
|
public class FFprobeParserTests
|
|
|
|
{
|
|
|
|
[Theory]
|
|
|
|
[InlineData("ffprobe1.json")]
|
|
|
|
public async Task Test(string fileName)
|
|
|
|
{
|
|
|
|
var path = Path.Join("Test Data", fileName);
|
|
|
|
using (var stream = File.OpenRead(path))
|
|
|
|
{
|
2021-03-09 04:57:38 +00:00
|
|
|
await JsonSerializer.DeserializeAsync<InternalMediaInfoResult>(stream, JsonDefaults.Options).ConfigureAwait(false);
|
2020-01-12 22:57:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|