Skip to content

Commit

Permalink
'#1786: Add custom signatures for Matroska files (WEBM, MKV and MKA).
Browse files Browse the repository at this point in the history
  • Loading branch information
wladimirleite committed Aug 2, 2023
1 parent 4b997b4 commit 4c3c607
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions iped-app/resources/config/conf/CustomSignatures.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1494,5 +1494,30 @@
<sub-class-of type="message/x-chat-message"/>
</mime-type>

<mime-type type="video/x-matroska">
<magic priority="60">
<match value="0x1A45DFA3" type="string" offset="0">
<match value="matroska" type="string" offset="4:64">
</match>
</match>
</magic>
<glob pattern="*.mkv" />
</mime-type>

<mime-type type="audio/x-matroska">
<sub-class-of type="video/x-matroska" />
<glob pattern="*.mka" />
</mime-type>

<mime-type type="video/webm">
<magic priority="60">
<match value="0x1A45DFA3" type="string" offset="0">
<match value="webm" type="string" offset="4:64">
</match>
</match>
</magic>
<glob pattern="*.webm" />
</mime-type>

</mime-info>

0 comments on commit 4c3c607

Please sign in to comment.