-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
869 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
# -*- coding: utf-8 -*- | ||
from dataclasses import dataclass | ||
from fractions import Fraction | ||
from functools import cache | ||
from typing import Tuple, List | ||
from bitarray import bitarray | ||
import bitarray | ||
from bitarray.util import ba2int | ||
import numpy as np | ||
|
||
|
||
__all__ = [ | ||
"read_mp7_signature", | ||
] | ||
|
||
|
||
SIGELEM_SIZE = 380 | ||
|
||
|
||
@dataclass | ||
class Frame: | ||
"""Represents an MP7 Frame Signature.""" | ||
|
||
vector: np.ndarray # 380 dimensional vector, range: 0..2 | ||
elapsed: Fraction # time elapsed since start of video | ||
confidence: int # signature confidence, range: 0..255 | ||
|
||
|
||
@cache | ||
def calc_byte_to_bit3(): | ||
# type: () -> np.ndarray | ||
""" | ||
Build lookup table. | ||
:return: table to convert a 8bit value into five three-bit-values | ||
:rtype: np.ndarray | ||
""" | ||
table_3_bit = np.zeros((256, 5), dtype=np.uint8) | ||
for i in range(256): | ||
div3 = 3 * 3 * 3 * 3 | ||
for iii in range(0, 5): | ||
table_3_bit[i, iii] = (i // div3) % 3 | ||
div3 //= 3 | ||
return table_3_bit | ||
|
||
|
||
def pop_bits(data_bits, pos, bits=32): | ||
# type: (bitarray, int, int) -> Tuple[int, int] | ||
""" | ||
Take out 0/1 values and pack them again to an unsigned integer. | ||
:param bitarray data_bits: 0/1 data | ||
:param int pos: position in 0/1 data | ||
:param int bits: number of bits (default 32) | ||
:return: value, new position | ||
:rtype: Tuple[int, int] | ||
""" | ||
chunk = data_bits[pos : pos + bits] | ||
value = ba2int(chunk, signed=False) | ||
pos += bits | ||
return value, pos | ||
|
||
|
||
def read_mp7_signature(byte_data): | ||
# type: (bytes) -> List[Frame] | ||
""" | ||
Decode binary MP7 video signature. | ||
:param bytes byte_data: Raw MP7 video signature (as extracted by ffmpeg) | ||
:return: List of Frame Signatures | ||
:rtype: List[Frame] | ||
""" | ||
table_3_bit = calc_byte_to_bit3() | ||
data_bits = bitarray.bitarray() | ||
data_bits.frombytes(byte_data) | ||
pos = 0 | ||
pos += 129 | ||
num_of_frames, pos = pop_bits(data_bits, pos) | ||
media_time_unit, pos = pop_bits(data_bits, pos, 16) | ||
pos += 1 + 32 + 32 | ||
num_of_segments, pos = pop_bits(data_bits, pos) | ||
pos += num_of_segments * (4 * 32 + 1 + 5 * 243) | ||
pos += 1 | ||
frame_sigs_v = [] | ||
frame_sigs_c = [] | ||
frame_sigs_e = [] | ||
frame_sigs_tu = [] | ||
for i in range(num_of_frames): | ||
pos += 1 | ||
raw_media_time, pos = pop_bits(data_bits, pos) | ||
frame_confidence, pos = pop_bits(data_bits, pos, 8) | ||
pos += 5 * 8 | ||
vec = np.zeros((SIGELEM_SIZE,), dtype=np.uint8) | ||
p = 0 | ||
for ii in range(SIGELEM_SIZE // 5): | ||
dat, pos = pop_bits(data_bits, pos, 8) | ||
vec[p : p + 5] = table_3_bit[dat] | ||
p += 5 | ||
frame_sigs_v.append(vec) | ||
frame_sigs_e.append(raw_media_time) | ||
frame_sigs_c.append(frame_confidence) | ||
frame_sigs_tu.append(media_time_unit) | ||
|
||
fsigs = [] | ||
r = (frame_sigs_v, frame_sigs_e, frame_sigs_c, frame_sigs_tu) | ||
for v, e, c, tu in zip(*r): | ||
fsigs.append(Frame(vector=v, elapsed=Fraction(e, tu), confidence=c)) | ||
return fsigs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.