请问如何判断两个多媒体文件是一样的呢?(50分)

  • 主题发起人 主题发起人 刀刀温柔
  • 开始时间 开始时间

刀刀温柔

Unregistered / Unconfirmed
GUEST, unregistred user!
请问如何判断两个多媒体文件是一样的文件的呢,比如说两个a.dat和b.dat,先谢了
 
你指的是什么一样啊。
是类型一样呢?还是文件名一样啊。
如果是类型一样的可以用
var
Rec:TsearchRec;

ExtractFileExt(path) 提取后缀名,

 
不好意思,刚才没说清楚,是比校文件里的内容(前提当然是文件的扩展名是一样的)。
 
Win2K:
Start->Run->cmd

C:/>fc /b a.dat b.dat

如果要编程的话,就用FileStream来做.
 
用MD5算法算出两个文件的MD5值,一样则文件一样。
现在市面上很多Windows N合一 光盘就是基于这个算法来优化文件的。
 
用 CRC32 效俭, CRC32 可以比较任何的文件,包括多媒体文件是否一样,被广泛用在防毒软件中

我写的源码

Unit Crc32;
//这是CRC 的 Unit,调用这个就可以了
interface

uses Dialogs, SysUtils, Windows;

type
CRCTable = Array[0..255] of LongInt;
//建立一个 CRC 表

const
BufferLength = 32768;
//缓存
//以下是详细的 CRC 表
CRC32Table: CRCTable = (
$000000000, $077073096, $0ee0e612c, $0990951ba,
$0076dc419, $0706af48f, $0e963a535, $09e6495a3,
$00edb8832, $079dcb8a4, $0e0d5e91e, $097d2d988,
$009b64c2b, $07eb17cbd, $0e7b82d07, $090bf1d91,

$01db71064, $06ab020f2, $0f3b97148, $084be41de,
$01adad47d, $06ddde4eb, $0f4d4b551, $083d385c7,
$0136c9856, $0646ba8c0, $0fd62f97a, $08a65c9ec,
$014015c4f, $063066cd9, $0fa0f3d63, $08d080df5,

$03b6e20c8, $04c69105e, $0d56041e4, $0a2677172,
$03c03e4d1, $04b04d447, $0d20d85fd, $0a50ab56b,
$035b5a8fa, $042b2986c, $0dbbbc9d6, $0acbcf940,
$032d86ce3, $045df5c75, $0dcd60dcf, $0abd13d59,

$026d930ac, $051de003a, $0c8d75180, $0bfd06116,
$021b4f4b5, $056b3c423, $0cfba9599, $0b8bda50f,
$02802b89e, $05f058808, $0c60cd9b2, $0b10be924,
$02f6f7c87, $058684c11, $0c1611dab, $0b6662d3d,

$076dc4190, $001db7106, $098d220bc, $0efd5102a,
$071b18589, $006b6b51f, $09fbfe4a5, $0e8b8d433,
$07807c9a2, $00f00f934, $09609a88e, $0e10e9818,
$07f6a0dbb, $0086d3d2d, $091646c97, $0e6635c01,

$06b6b51f4, $01c6c6162, $0856530d8, $0f262004e,
$06c0695ed, $01b01a57b, $08208f4c1, $0f50fc457,
$065b0d9c6, $012b7e950, $08bbeb8ea, $0fcb9887c,
$062dd1ddf, $015da2d49, $08cd37cf3, $0fbd44c65,

$04db26158, $03ab551ce, $0a3bc0074, $0d4bb30e2,
$04adfa541, $03dd895d7, $0a4d1c46d, $0d3d6f4fb,
$04369e96a, $0346ed9fc, $0ad678846, $0da60b8d0,
$044042d73, $033031de5, $0aa0a4c5f, $0dd0d7cc9,

$05005713c, $0270241aa, $0be0b1010, $0c90c2086,
$05768b525, $0206f85b3, $0b966d409, $0ce61e49f,
$05edef90e, $029d9c998, $0b0d09822, $0c7d7a8b4,
$059b33d17, $02eb40d81, $0b7bd5c3b, $0c0ba6cad,

$0edb88320, $09abfb3b6, $003b6e20c, $074b1d29a,
$0ead54739, $09dd277af, $004db2615, $073dc1683,
$0e3630b12, $094643b84, $00d6d6a3e, $07a6a5aa8,
$0e40ecf0b, $09309ff9d, $00a00ae27, $07d079eb1,

$0f00f9344, $08708a3d2, $01e01f268, $06906c2fe,
$0f762575d, $0806567cb, $0196c3671, $06e6b06e7,
$0fed41b76, $089d32be0, $010da7a5a, $067dd4acc,
$0f9b9df6f, $08ebeeff9, $017b7be43, $060b08ed5,

$0d6d6a3e8, $0a1d1937e, $038d8c2c4, $04fdff252,
$0d1bb67f1, $0a6bc5767, $03fb506dd, $048b2364b,
$0d80d2bda, $0af0a1b4c, $036034af6, $041047a60,
$0df60efc3, $0a867df55, $0316e8eef, $04669be79,

$0cb61b38c, $0bc66831a, $0256fd2a0, $05268e236,
$0cc0c7795, $0bb0b4703, $0220216b9, $05505262f,
$0c5ba3bbe, $0b2bd0b28, $02bb45a92, $05cb36a04,
$0c2d7ffa7, $0b5d0cf31, $02cd99e8b, $05bdeae1d,

$09b64c2b0, $0ec63f226, $0756aa39c, $0026d930a,
$09c0906a9, $0eb0e363f, $072076785, $005005713,
$095bf4a82, $0e2b87a14, $07bb12bae, $00cb61b38,
$092d28e9b, $0e5d5be0d, $07cdcefb7, $00bdbdf21,

$086d3d2d4, $0f1d4e242, $068ddb3f8, $01fda836e,
$081be16cd, $0f6b9265b, $06fb077e1, $018b74777,
$088085ae6, $0ff0f6a70, $066063bca, $011010b5c,
$08f659eff, $0f862ae69, $0616bffd3, $0166ccf45,

$0a00ae278, $0d70dd2ee, $04e048354, $03903b3c2,
$0a7672661, $0d06016f7, $04969474d, $03e6e77db,
$0aed16a4a, $0d9d65adc, $040df0b66, $037d83bf0,
$0a9bcae53, $0debb9ec5, $047b2cf7f, $030b5ffe9,

$0bdbdf21c, $0cabac28a, $053b39330, $024b4a3a6,
$0bad03605, $0cdd70693, $054de5729, $023d967bf,
$0b3667a2e, $0c4614ab8, $05d681b02, $02a6f2b94,
$0b40bbe37, $0c30c8ea1, $05a05df1b, $02d02ef8d);

function UpdateCRC32(InitCRC: LongInt;
Buffer: Pointer;
BufferLength: WORD): LongInt;
function ComputeFileCRC32(FileName: String): LongInt;

implementation

var
Buffer: Array[1..BufferLength] of Byte;

//取得一段缓存的 function 不好意思,黑手是外国长大的中文不好
function UpdateCRC32(InitCRC: LongInt;
Buffer: Pointer;
BufferLength: WORD): LongInt;
var
crc: LongInt;
index: integer;
i: integer;
begin

crc := InitCRC;
//一开始的 bit
for i := 0 to BufferLength-1do

begin

//利用表来算出 CRC 的 bit
index := (crc xor Integer(Pointer(DWORD(Buffer)+i)^)) and $000000FF;
crc := ((crc shr 8) and $00FFFFFF) xor CRC32Table[index];
end;

Result := crc;
//返回本段的 bit
end;


//取得一个文件的 CRC 码
function ComputeFileCRC32(FileName: String): LongInt;
var
InputFile: File;
Crc32: LongInt;
ResultLength: Integer;
BufPtr: Pointer;
begin

BufPtr := @Buffer;
//认准一段 Pointer
Assign(InputFile, FileName);
//开始进入文件
Reset(InputFile, 1);
Crc32 := $FFFFFFFF;
{ 开始时全部的 bit 都时 on 的,时 CRC32 的专利 }
Repeat //循环读取文件入缓存,直到文件结束
BlockRead(InputFile, Buffer, BufferLength, ResultLength);
//取得一段Buffer
Crc32 := UpdateCrc32(Crc32, BufPtr, ResultLength);
//取得这一段的 CRC 码
Until Eof(InputFile);

Close(InputFile);
//关闭文件
Crc32 := Not(Crc32);
{ CRC32 标准,反转 CRC 编码 }
Result := CRC32;
//回复结果
end;


end.

 
呵呵!
可以提供一个简单而直接的方法!
比较两个文件的大小嘛!
如果两个文件的大小一致(精确到字节),却内容不一致的话,可能性不大哦!
 
bluepoint8868,你这个方法不行,万一文件大小真的一样呢?
 
幕后黑手:
请问如何使用你写的那个CRC32,我主要比较的是流媒体文件。因为我想删除相同的文件,每个文件有50M左右吧,用Delphi编程实现比较。

gear1023:
请问用FileStream如何实现呢?
 
to:gear1023
Fc命令是用来比较来个文件的长度的,并不是比较文件内容;

要完整比较我想应该系用文件流吧!
 
你只要在你代码中添加
uses Crc32;

然后你可以这样取得文件的数字
ComputeFileCRC32(文件路径)

如果数字一样就时一样的文件,如果不一样内容就不同

Jaby,老兄你懂不懂什么叫算法?回去大学多读两年再回来混。
用文件流每个字节比较的话跑一个 100 GB 的不要等死人了。
 
幕后黑手:
我引用Crc32;后
procedure TForm1.Button1Click(Sender: TObject);
var filesize1, filesize2 : LongInt;
begin

filesize1:=ComputeFileCRC32('d:/1.mp3');
edit1.Text :=inttostr(filesize1);

filesize2:=ComputeFileCRC32('d:/2.mp3');
edit2.Text :=inttostr(filesize2);
end;


时出现'file access denied'的错误!是不是这样调用不行呢?
 
刀刀温柔,如果你在检查运行中文件的话就会出现这种情况
 
幕后黑手:
我比较*.txt、*.doc、*.exe, *.dat,运行正常可是当比较*.mp3时就会报那样的错!
leejames:
我用MD5算一个200M的文件花了1分钟时间!看来用MD5还是不太行
 
你的机器什么配置? 我CIII 1.1G的机器 215MB的ASF文件才24秒。
事实上MD5的算法和CRC32复杂度相差不大,速度也不会差太多。
CRC32出现重复值的可能性远远大于MD5,我想这也是那些优化软件采
用MD5的主要原因。
 
我的比较差,C633,128M内存。我一般比较120M左右的*.mp2文件或50M*.dat。
服务器上有2万多个文件。
我是这样想的,先判断文件大小是否一样,若一样的再用MD5进一步比较,当MD5值相等则删除其中一个文件。
先把MD5的贴上来看看这个算法有没出问题,谢谢大家关注
-----------------------------------------------------------------------------
unit md5;


// -----------------------------------------------------------------------------------------------
INTERFACE
// -----------------------------------------------------------------------------------------------

uses
Windows;


type
MD5Count = array[0..1] of DWORD;

MD5State = array[0..3] of DWORD;

MD5Block = array[0..15] of DWORD;

MD5CBits = array[0..7] of byte;

MD5Digest = array[0..15] of byte;

MD5Buffer = array[0..63] of byte;

MD5Context = record
State: MD5State;

Count: MD5Count;

Buffer: MD5Buffer;

end;



procedure MD5Init(var Context: MD5Context);

procedure MD5Update(var Context: MD5Context;
Input: pChar;
Length: longword);

procedure MD5Final(var Context: MD5Context;
var Digest: MD5Digest);


function MD5String(M: string): MD5Digest;
//MD5String为加密字符串
function MD5File(N: string): MD5Digest;
//MD5File为加密这个文件
function MD5Print(D: MD5Digest): string;
//MD5Print是将加密后的密文转换成字符串

function MD5Match(D1, D2: MD5Digest): boolean;
//MD5Match是用来比较密文是否一致

// -----------------------------------------------------------------------------------------------
IMPLEMENTATION
// -----------------------------------------------------------------------------------------------

var
PADDING: MD5Buffer = (
$80, $00, $00, $00, $00, $00, $00, $00,
$00, $00, $00, $00, $00, $00, $00, $00,
$00, $00, $00, $00, $00, $00, $00, $00,
$00, $00, $00, $00, $00, $00, $00, $00,
$00, $00, $00, $00, $00, $00, $00, $00,
$00, $00, $00, $00, $00, $00, $00, $00,
$00, $00, $00, $00, $00, $00, $00, $00,
$00, $00, $00, $00, $00, $00, $00, $00
);


function F(x, y, z: DWORD): DWORD;

begin

Result := (x and y) or ((not x) and z);

end;



function G(x, y, z: DWORD): DWORD;

begin

Result := (x and z) or (y and (not z));

end;



function H(x, y, z: DWORD): DWORD;

begin

Result := x xor y xor z;

end;



function I(x, y, z: DWORD): DWORD;

begin

Result := y xor (x or (not z));

end;



procedure rot(var x: DWORD;
n: BYTE);

begin

x := (x shl n) or (x shr (32 - n));

end;



procedure FF(var a: DWORD;
b, c, d, x: DWORD;
s: BYTE;
ac: DWORD);

begin

inc(a, F(b, c, d) + x + ac);

rot(a, s);

inc(a, b);

end;



procedure GG(var a: DWORD;
b, c, d, x: DWORD;
s: BYTE;
ac: DWORD);

begin

inc(a, G(b, c, d) + x + ac);

rot(a, s);

inc(a, b);

end;



procedure HH(var a: DWORD;
b, c, d, x: DWORD;
s: BYTE;
ac: DWORD);

begin

inc(a, H(b, c, d) + x + ac);

rot(a, s);

inc(a, b);

end;



procedure II(var a: DWORD;
b, c, d, x: DWORD;
s: BYTE;
ac: DWORD);

begin

inc(a, I(b, c, d) + x + ac);

rot(a, s);

inc(a, b);

end;



// -----------------------------------------------------------------------------------------------

// Encode Count bytes at Source into (Count / 4) DWORDs at Target
procedure Encode(Source, Target: pointer;
Count: longword);

var
S: PByte;

T: PDWORD;

I: longword;

begin

S := Source;

T := Target;

for I := 1 to Count div 4do
begin

T^ := S^;

inc(S);

T^ := T^ or (S^ shl 8);

inc(S);

T^ := T^ or (S^ shl 16);

inc(S);

T^ := T^ or (S^ shl 24);

inc(S);

inc(T);

end;


end;



// Decode Count DWORDs at Source into (Count * 4) Bytes at Target
procedure Decode(Source, Target: pointer;
Count: longword);

var
S: PDWORD;

T: PByte;

I: longword;

begin

S := Source;

T := Target;

for I := 1 to Countdo
begin

T^ := S^ and $ff;

inc(T);

T^ := (S^ shr 8) and $ff;

inc(T);

T^ := (S^ shr 16) and $ff;

inc(T);

T^ := (S^ shr 24) and $ff;

inc(T);

inc(S);

end;


end;



// Transform State according to first 64 bytes at Buffer
procedure Transform(Buffer: pointer;
var State: MD5State);

var
a, b, c, d: DWORD;

Block: MD5Block;

begin

Encode(Buffer, @Block, 64);

a := State[0];

b := State[1];

c := State[2];

d := State[3];

FF (a, b, c, d, Block[ 0], 7, $d76aa478);

FF (d, a, b, c, Block[ 1], 12, $e8c7b756);

FF (c, d, a, b, Block[ 2], 17, $242070db);

FF (b, c, d, a, Block[ 3], 22, $c1bdceee);

FF (a, b, c, d, Block[ 4], 7, $f57c0faf);

FF (d, a, b, c, Block[ 5], 12, $4787c62a);

FF (c, d, a, b, Block[ 6], 17, $a8304613);

FF (b, c, d, a, Block[ 7], 22, $fd469501);

FF (a, b, c, d, Block[ 8], 7, $698098d8);

FF (d, a, b, c, Block[ 9], 12, $8b44f7af);

FF (c, d, a, b, Block[10], 17, $ffff5bb1);

FF (b, c, d, a, Block[11], 22, $895cd7be);

FF (a, b, c, d, Block[12], 7, $6b901122);

FF (d, a, b, c, Block[13], 12, $fd987193);

FF (c, d, a, b, Block[14], 17, $a679438e);

FF (b, c, d, a, Block[15], 22, $49b40821);

GG (a, b, c, d, Block[ 1], 5, $f61e2562);

GG (d, a, b, c, Block[ 6], 9, $c040b340);

GG (c, d, a, b, Block[11], 14, $265e5a51);

GG (b, c, d, a, Block[ 0], 20, $e9b6c7aa);

GG (a, b, c, d, Block[ 5], 5, $d62f105d);

GG (d, a, b, c, Block[10], 9, $2441453);

GG (c, d, a, b, Block[15], 14, $d8a1e681);

GG (b, c, d, a, Block[ 4], 20, $e7d3fbc8);

GG (a, b, c, d, Block[ 9], 5, $21e1cde6);

GG (d, a, b, c, Block[14], 9, $c33707d6);

GG (c, d, a, b, Block[ 3], 14, $f4d50d87);

GG (b, c, d, a, Block[ 8], 20, $455a14ed);

GG (a, b, c, d, Block[13], 5, $a9e3e905);

GG (d, a, b, c, Block[ 2], 9, $fcefa3f8);

GG (c, d, a, b, Block[ 7], 14, $676f02d9);

GG (b, c, d, a, Block[12], 20, $8d2a4c8a);

HH (a, b, c, d, Block[ 5], 4, $fffa3942);

HH (d, a, b, c, Block[ 8], 11, $8771f681);

HH (c, d, a, b, Block[11], 16, $6d9d6122);

HH (b, c, d, a, Block[14], 23, $fde5380c);

HH (a, b, c, d, Block[ 1], 4, $a4beea44);

HH (d, a, b, c, Block[ 4], 11, $4bdecfa9);

HH (c, d, a, b, Block[ 7], 16, $f6bb4b60);

HH (b, c, d, a, Block[10], 23, $bebfbc70);

HH (a, b, c, d, Block[13], 4, $289b7ec6);

HH (d, a, b, c, Block[ 0], 11, $eaa127fa);

HH (c, d, a, b, Block[ 3], 16, $d4ef3085);

HH (b, c, d, a, Block[ 6], 23, $4881d05);

HH (a, b, c, d, Block[ 9], 4, $d9d4d039);

HH (d, a, b, c, Block[12], 11, $e6db99e5);

HH (c, d, a, b, Block[15], 16, $1fa27cf8);

HH (b, c, d, a, Block[ 2], 23, $c4ac5665);

II (a, b, c, d, Block[ 0], 6, $f4292244);

II (d, a, b, c, Block[ 7], 10, $432aff97);

II (c, d, a, b, Block[14], 15, $ab9423a7);

II (b, c, d, a, Block[ 5], 21, $fc93a039);

II (a, b, c, d, Block[12], 6, $655b59c3);

II (d, a, b, c, Block[ 3], 10, $8f0ccc92);

II (c, d, a, b, Block[10], 15, $ffeff47d);

II (b, c, d, a, Block[ 1], 21, $85845dd1);

II (a, b, c, d, Block[ 8], 6, $6fa87e4f);

II (d, a, b, c, Block[15], 10, $fe2ce6e0);

II (c, d, a, b, Block[ 6], 15, $a3014314);

II (b, c, d, a, Block[13], 21, $4e0811a1);

II (a, b, c, d, Block[ 4], 6, $f7537e82);

II (d, a, b, c, Block[11], 10, $bd3af235);

II (c, d, a, b, Block[ 2], 15, $2ad7d2bb);

II (b, c, d, a, Block[ 9], 21, $eb86d391);

inc(State[0], a);

inc(State[1], b);

inc(State[2], c);

inc(State[3], d);

end;



// -----------------------------------------------------------------------------------------------

// Initialize given Context
procedure MD5Init(var Context: MD5Context);

begin

with Contextdo
begin

State[0] := $67452301;

State[1] := $efcdab89;

State[2] := $98badcfe;

State[3] := $10325476;

Count[0] := 0;

Count[1] := 0;

ZeroMemory(@Buffer, SizeOf(MD5Buffer));

end;


end;



// Update given Context to include Length bytes of Input
procedure MD5Update(var Context: MD5Context;
Input: pChar;
Length: longword);

var
Index: longword;

PartLen: longword;

I: longword;

begin

with Contextdo
begin

Index := (Count[0] shr 3) and $3f;

inc(Count[0], Length shl 3);

if Count[0] < (Length shl 3) then
inc(Count[1]);

inc(Count[1], Length shr 29);

end;


PartLen := 64 - Index;

if Length >= PartLen then
begin

CopyMemory(@Context.Buffer[Index], Input, PartLen);

Transform(@Context.Buffer, Context.State);

I := PartLen;

while I + 63 < Lengthdo
begin

Transform(@Input, Context.State);

inc(I, 64);

end;


Index := 0;

end else
I := 0;

CopyMemory(@Context.Buffer[Index], @Input, Length - I);

end;



// Finalize given Context, create Digest and zeroize Context
procedure MD5Final(var Context: MD5Context;
var Digest: MD5Digest);

var
Bits: MD5CBits;

Index: longword;

PadLen: longword;

begin

Decode(@Context.Count, @Bits, 2);

Index := (Context.Count[0] shr 3) and $3f;

if Index < 56 then
PadLen := 56 - Index else
PadLen := 120 - Index;

MD5Update(Context, @PADDING, PadLen);

MD5Update(Context, @Bits, 8);

Decode(@Context.State, @Digest, 4);

ZeroMemory(@Context, SizeOf(MD5Context));

end;



// -----------------------------------------------------------------------------------------------

// Create digest of given Message
function MD5String(M: string): MD5Digest;

var
Context: MD5Context;

begin

MD5Init(Context);

MD5Update(Context, pChar(M), length(M));

MD5Final(Context, Result);

end;



// Create digest of file with given Name
function MD5File(N: string): MD5Digest;

var
FileHandle: THandle;

MapHandle: THandle;

ViewPointer: pointer;

Context: MD5Context;

begin

MD5Init(Context);

FileHandle := CreateFile(pChar(N), GENERIC_READ, FILE_SHARE_READ or FILE_SHARE_WRITE,
nil, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL or FILE_FLAG_SEQUENTIAL_SCAN, 0);

if FileHandle <> INVALID_HANDLE_VALUE then
try
MapHandle := CreateFileMapping(FileHandle, nil, PAGE_READONLY, 0, 0, nil);

if MapHandle <> 0 then
try
ViewPointer := MapViewOfFile(MapHandle, FILE_MAP_READ, 0, 0, 0);

if ViewPointer <> nil then
try
MD5Update(Context, ViewPointer, GetFileSize(FileHandle, nil));

finally
UnmapViewOfFile(ViewPointer);

end;


finally
CloseHandle(MapHandle);

end;


finally
CloseHandle(FileHandle);

end;


MD5Final(Context, Result);

end;



// Create hex representation of given Digest
function MD5Print(D: MD5Digest): string;

var
I: byte;

const
Digits: array[0..15] of char =
('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f');

begin

Result := '';

for I := 0 to 15do
Result := Result + Digits[(D shr 4) and $0f] + Digits[D and $0f];

end;



// -----------------------------------------------------------------------------------------------

// Compare two Digests
function MD5Match(D1, D2: MD5Digest): boolean;

var
I: byte;

begin

I := 0;

Result := TRUE;

while Result and (I < 16)do
begin

Result := D1 = D2;

inc(I);

end;


end;



end.


===============================================================================
 
CompareMem(P1, P2: Pointer;
Length: Integer): Boolean;
assembler;

直接取到内容中进行比较可能速度要好些吧
 
你的MD5算法实现是比较严格的按标准来写的了,不过有些小细节可以优化一下。
一些一行的函数像 F,G,H,I, ROT等全部分解到FF、GG、HH...中去。在大
文件中这些函数频繁的调用会消耗很多时间。

以下是我机器上的测试结果: (H:为星钻20G 5400rpm,G为金钻80G 7200rpm)

文件: H:/MTV/许茹云《日光机场》.mpeg, 长度: 53,889,288 字节
开始时间: 16:48:42
结束时间: 16:48:45
共用时: 2.66秒
MD5值: C1 B8 6A 53 0F D0 60 D1 92 D3 6D 2D C5 D1 2C 31

文件: G:/My Virtual Machines/Windows Server 2003, Enterprise Edition/Windows Server 2003, Enterprise Edition.vmdk, 长度: 1,827,274,752 字节
开始时间: 16:51:43
结束时间: 16:53:16
共用时: 92.43秒
MD5值: 22 29 B5 64 4B 3A 45 4E CD C8 1C 13 C6 E7 34 13

文件: H:/电影/射雕英雄传/18.rm, 长度: 169,567,008 字节
开始时间: 16:57:05
结束时间: 16:57:14
共用时: 8.18秒
MD5值: D0 24 F9 2F E9 55 4A 24 BA 1A 7E CB B0 FC CB 05

文件: G:/涩女郎11-20/涩女郎(粉红女郎)12.RM, 长度: 179,722,282 字节
开始时间: 16:58:14
结束时间: 16:58:23
共用时: 9.15秒
MD5值: 5C 3A 4F F3 F3 C7 51 F8 FF D9 EB A1 DC 5B 38 19

 
多人接受答案了。
 
后退
顶部