You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
589 B
23 lines
589 B
using System.IO;
|
|
using System.Text.Json;
|
|
using System.Threading.Tasks;
|
|
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))
|
|
{
|
|
await JsonSerializer.DeserializeAsync<InternalMediaInfoResult>(stream).ConfigureAwait(false);
|
|
}
|
|
}
|
|
}
|
|
}
|