我正在尝试学习二进制文件,并基于Matroska在PHP中创建一个简单的WebM解析器。
我使用unpack(format, data)
阅读TimecodeScale,MuxingAppm WritingApp等。我的问题是当我在Duration
(0x1549a966)中到达Segment Information
(0x4489)时,我必须阅读float
并基于TimecodeScale
将其转换为秒:261.564s-> 00:04:21.564我不知道怎么做。
这是一个示例序列:
`2A D7 B1 83 0F 42 40 4D 80 86 67 6F 6F 67 6C 65 57 41 86 67 6F 6F 67 6C 65 44 89 88 41 0F ED E0 00 00 00 00 16 54 AE 6B`
TimecodeScale := 2ad7b1 uint [ def:1000000; ]
MuxingApp := 4d80 string; ("google")
WritingApp := 5741 string; ("google")
Duration := 4489 float [ range:>0.0; ]
Tracks := 1654ae6b container [ card:*; ]{...}
我必须在(0x4489)之后读取一个浮点数并返回261.564s。
答案 0 :(得分:1)
持续时间是以IEEE 754格式表示的双精度浮点值(64位)。如果您想了解转化的完成方式,请检查this。
TimecodeScale
是时间戳刻度,以纳秒为单位。
在php
中你可以这样做:
$bin = hex2bin('410fede000000000');
$timecode_scale = 1e6;
// endianness
if (unpack('S', "\xff\x00")[1] === 0xff) {
$bytes = unpack('C8', $bin);
$bytes = array_reverse($bytes);
$bin = implode('', array_map('chr', $bytes));
}
$duration = unpack('d', $bin)[1];
$duration_s = $duration * $timecode_scale / 1e9;
echo "duration=${duration_s}s\n";
结果:
duration=261.564s