mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 01:55:45 +00:00
make MediaAnalysis public #589
This commit is contained in:
parent
a599c48511
commit
b83e7a4fff
1 changed files with 2 additions and 2 deletions
|
|
@ -4,9 +4,9 @@ using FFMpegCore.Builders.MetaData;
|
||||||
|
|
||||||
namespace FFMpegCore;
|
namespace FFMpegCore;
|
||||||
|
|
||||||
internal class MediaAnalysis : IMediaAnalysis
|
public class MediaAnalysis : IMediaAnalysis
|
||||||
{
|
{
|
||||||
internal MediaAnalysis(FFProbeAnalysis analysis)
|
public MediaAnalysis(FFProbeAnalysis analysis)
|
||||||
{
|
{
|
||||||
Format = ParseFormat(analysis.Format);
|
Format = ParseFormat(analysis.Format);
|
||||||
Chapters = analysis.Chapters.Select(c => ParseChapter(c)).ToList();
|
Chapters = analysis.Chapters.Select(c => ParseChapter(c)).ToList();
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue