MediaArea / MediaConch_SourceCode

Media conformance checker
https://MediaArea.net/MediaConch
BSD 2-Clause "Simplified" License
27 stars 18 forks source link

Failed rule because of a miswritten value #661

Open XMegamanX opened 5 years ago

XMegamanX commented 5 years ago

Greetings,

Mediaconch has rules to test the video bitrate (BitRate and BitRate_Nominal) and for some vide sources it failes because both of this data are stored in the same filed in the file header

MediaConch Test Failed : Min Video Bitrate Nominal - Required value : 600000 / Received value : Undefined
MediaConch Test Failed : Min Video Bitrate - Required value : 600000 / Received value : 6000000 / 6000000

Our rules are :

<policy type="or" name="Bit Rate">
      <rule name="Min Video Bitrate Nominal" value="BitRate_Nominal" tracktype="Video" occurrence="0" operator=">=">600000</rule>
      <rule name="Min Video Bitrate" value="BitRate" tracktype="Video" occurrence="*" operator=">=">600000</rule>
    </policy>

Is there a way to test this field or is it possible to update mediaconch to go through this problem ?

Thanks in advance

XMegamanX commented 5 years ago

@EtienneChampion