1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 | [ CD1 ].........................................................................
X Lossless Decoder version 20110611 (135.0)
XLD extraction logfile from 2011-06-30 21:25:42 +0100
Various / Grand 12-Inches 8 (CD1)
Used drive : MATSHITA DVD-R UJ-857E (revision ZB0E)
Ripper mode : CDParanoia III 10.2
Disable audio cache : OK for the drive with a cache less than 2750KiB
Make use of C2 pointers : NO
Read offset correction : 102
Max retry count : 100
Gap status : Analyzed, Appended
TOC of the extracted CD
Track | Start | Length | Start sector | End sector
---------------------------------------------------------
1 | 00:00:00 | 07:20:36 | 0 | 33035
2 | 07:20:36 | 07:54:40 | 33036 | 68625
3 | 15:15:01 | 05:46:12 | 68626 | 94587
4 | 21:01:13 | 06:43:36 | 94588 | 124848
5 | 27:44:49 | 07:38:08 | 124849 | 159206
6 | 35:22:57 | 06:40:65 | 159207 | 189271
7 | 42:03:47 | 06:11:39 | 189272 | 217135
8 | 48:15:11 | 07:04:39 | 217136 | 248974
9 | 55:19:50 | 08:57:22 | 248975 | 289271
10 | 64:16:72 | 12:18:11 | 289272 | 344632
AccurateRip Summary
Disc not found in AccurateRip DB.
All Tracks
Album gain : -6.52 dB
Peak : 0.988525
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Track 01
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD1) (2011) [FLAC]/01 Chaka Khan - I Feel For You (Remix) or Various.flac
Pre-gap length : 00:02:00
Track gain : -7.28 dB
Peak : 0.988525
CRC32 hash (test run) : 726079CB
CRC32 hash : 726079CB
CRC32 hash (skip zero) : A9495969
AccurateRip signature : AD30E3A1
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 02
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD1) (2011) [FLAC]/02 Michael Jackson - The Way You Make Me Feel (Dance Extended Mix) or Various.flac
Pre-gap length : 00:02:00
Track gain : -7.81 dB
Peak : 0.764252
CRC32 hash (test run) : 03EB9B28
CRC32 hash : 03EB9B28
CRC32 hash (skip zero) : 18D42286
AccurateRip signature : F90D6247
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 03
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD1) (2011) [FLAC]/03 Mary Jane Girls - All Night Long (Album Version) or Various.flac
Pre-gap length : 00:02:00
Track gain : -5.85 dB
Peak : 0.988495
CRC32 hash (test run) : A39C3F74
CRC32 hash : A39C3F74
CRC32 hash (skip zero) : FE302F26
AccurateRip signature : 2D716147
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 04
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD1) (2011) [FLAC]/04 Earth, Wind & Fire - Let's Groove (Special Remixed Holiday Version) or Various.flac
Pre-gap length : 00:02:00
Track gain : -7.86 dB
Peak : 0.988525
CRC32 hash (test run) : 6919DE3F
CRC32 hash : 6919DE3F
CRC32 hash (skip zero) : 24A5C3C1
AccurateRip signature : 72C8A0F2
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 05
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD1) (2011) [FLAC]/05 Donna Summer - On The Radio (Long Version) or Various.flac
Pre-gap length : 00:02:00
Track gain : -6.95 dB
Peak : 0.988525
CRC32 hash (test run) : DBC63552
CRC32 hash : DBC63552
CRC32 hash (skip zero) : 8D4A5AF0
AccurateRip signature : 6BC6DCC9
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 06
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD1) (2011) [FLAC]/06 Raw Silk - Do It To The Music (Vocal) or Various.flac
Pre-gap length : 00:02:00
Track gain : -4.21 dB
Peak : 0.988495
CRC32 hash (test run) : E370FA40
CRC32 hash : E370FA40
CRC32 hash (skip zero) : A4F1B0C6
AccurateRip signature : E0AB9591
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 07
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD1) (2011) [FLAC]/07 Shock - Let Your Body Do The talkin' (Special 12 Inch Disco Mix) or Various.flac
Pre-gap length : 00:02:00
Track gain : -5.46 dB
Peak : 0.988495
CRC32 hash (test run) : 0EA66E2D
CRC32 hash : 0EA66E2D
CRC32 hash (skip zero) : D023D4C7
AccurateRip signature : 22B47164
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 08
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD1) (2011) [FLAC]/08 Shirley Lites - Heat You Up (Melt You Down) Melt Down Mix) or Various.flac
Pre-gap length : 00:02:00
Track gain : -5.90 dB
Peak : 0.988495
CRC32 hash (test run) : 2DB279A7
CRC32 hash : 2DB279A7
CRC32 hash (skip zero) : 4147FA1A
AccurateRip signature : BC809EA0
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 09
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD1) (2011) [FLAC]/09 Fatback - Is This The Future? (Album Version) or Various.flac
Pre-gap length : 00:02:00
Track gain : -3.50 dB
Peak : 0.905823
CRC32 hash (test run) : 67682A15
CRC32 hash : 67682A15
CRC32 hash (skip zero) : D25847DF
AccurateRip signature : C86E0892
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 10
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD1) (2011) [FLAC]/10 Sheila E - A Love Bizarre (Part 1 & Part 2) or Various.flac
Pre-gap length : 00:02:00
Track gain : -4.76 dB
Peak : 0.988525
CRC32 hash (test run) : D6ADDC81
CRC32 hash : D6ADDC81
CRC32 hash (skip zero) : 0950A86C
AccurateRip signature : FDA504BE
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
No errors occurred
End of status report
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
[ CD2 ].........................................................................
X Lossless Decoder version 20110611 (135.0)
XLD extraction logfile from 2011-06-30 20:46:57 +0100
Various / Grand 12-Inches 8 (CD2)
Used drive : MATSHITA DVD-R UJ-857E (revision ZB0E)
Ripper mode : CDParanoia III 10.2
Disable audio cache : OK for the drive with a cache less than 2750KiB
Make use of C2 pointers : NO
Read offset correction : 102
Max retry count : 100
Gap status : Analyzed, Appended
TOC of the extracted CD
Track | Start | Length | Start sector | End sector
---------------------------------------------------------
1 | 00:00:00 | 07:29:51 | 0 | 33725
2 | 07:29:51 | 06:16:15 | 33726 | 61940
3 | 13:45:66 | 06:33:00 | 61941 | 91415
4 | 20:18:66 | 05:59:71 | 91416 | 118411
5 | 26:18:62 | 07:00:00 | 118412 | 149911
6 | 33:18:62 | 07:00:19 | 149912 | 181430
7 | 40:19:06 | 06:34:49 | 181431 | 211029
8 | 46:53:55 | 07:02:02 | 211030 | 242681
9 | 53:55:57 | 06:57:30 | 242682 | 273986
10 | 60:53:12 | 09:46:52 | 273987 | 317988
11 | 70:39:64 | 06:48:22 | 317989 | 348610
AccurateRip Summary
Disc not found in AccurateRip DB.
All Tracks
Album gain : -5.55 dB
Peak : 0.994019
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Track 01
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD2) (2011) [FLAC]/01 Patrick Hernandez - Born To Be Alive (12 Inch Mix) or Various.flac
Pre-gap length : 00:02:00
Track gain : -4.36 dB
Peak : 0.988556
CRC32 hash (test run) : B99EEFEB
CRC32 hash : B99EEFEB
CRC32 hash (skip zero) : DEB767B0
AccurateRip signature : AFA868C7
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 02
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD2) (2011) [FLAC]/02 Julius Brown - Party (Vocal) or Various.flac
Pre-gap length : 00:02:00
Track gain : -6.48 dB
Peak : 0.794342
CRC32 hash (test run) : 0194EA92
CRC32 hash : 0194EA92
CRC32 hash (skip zero) : 8C5F8A68
AccurateRip signature : FC1AC1D3
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 03
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD2) (2011) [FLAC]/03 Aretha Franklin - Jump To It (Extended Version) or Various.flac
Pre-gap length : 00:02:00
Track gain : -7.07 dB
Peak : 0.988495
CRC32 hash (test run) : 01E4128C
CRC32 hash : 01E4128C
CRC32 hash (skip zero) : 84984E8A
AccurateRip signature : DA660A52
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 04
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD2) (2011) [FLAC]/04 Loose Ends - Hangin' On a String (Contemplating) (Extended Dance Mix) or Various.flac
Pre-gap length : 00:02:00
Track gain : -5.39 dB
Peak : 0.988495
CRC32 hash (test run) : D8401B94
CRC32 hash : D8401B94
CRC32 hash (skip zero) : A27EE2B6
AccurateRip signature : DAEC11F0
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 05
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD2) (2011) [FLAC]/05 Gwen Guthrie - Padlock (Long Version) or Various.flac
Pre-gap length : 00:02:00
Track gain : -6.07 dB
Peak : 0.988495
CRC32 hash (test run) : F29C1760
CRC32 hash : F29C1760
CRC32 hash (skip zero) : 58058712
AccurateRip signature : DAD778D6
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 06
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD2) (2011) [FLAC]/06 Spence - Get It On (Ben Liebrand Master Edit) or Various.flac
Pre-gap length : 00:02:00
Track gain : -4.31 dB
Peak : 0.988495
CRC32 hash (test run) : 3D73ED49
CRC32 hash : 3D73ED49
CRC32 hash (skip zero) : C9CF313F
AccurateRip signature : 7532972C
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 07
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD2) (2011) [FLAC]/07 Paul Hardcastle - Rainforest (Ben Liebrand Master Edit) or Various.flac
Pre-gap length : 00:02:00
Track gain : -5.17 dB
Peak : 0.988464
CRC32 hash (test run) : AFCDA4EC
CRC32 hash : AFCDA4EC
CRC32 hash (skip zero) : 89EB8AAB
AccurateRip signature : 6E19022A
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 08
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD2) (2011) [FLAC]/08 Sueno Latino - La Puerta Del Sol (Island Mix) or Various.flac
Pre-gap length : 00:02:00
Track gain : -3.50 dB
Peak : 0.988403
CRC32 hash (test run) : 20FC8D92
CRC32 hash : 20FC8D92
CRC32 hash (skip zero) : 63C11675
AccurateRip signature : 52DAD5F8
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 09
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD2) (2011) [FLAC]/09 Barbara Mason - Another Man (Vocal) or Various.flac
Pre-gap length : 00:02:00
Track gain : -2.82 dB
Peak : 0.988434
CRC32 hash (test run) : BD047F25
CRC32 hash : BD047F25
CRC32 hash (skip zero) : 1E36D679
AccurateRip signature : 9D21AD9C
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 10
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD2) (2011) [FLAC]/10 Frankie Goes To Hollywood - Welcome To The Pleasuredome (Pleasurefix) or Various.flac
Pre-gap length : 00:01:74
Track gain : -5.53 dB
Peak : 0.994019
CRC32 hash (test run) : 995C462A
CRC32 hash : 995C462A
CRC32 hash (skip zero) : 1356D71A
AccurateRip signature : AE4CA6AF
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 11
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD2) (2011) [FLAC]/11 Yellow Magic Orchestra - Computer Game (Ben Liebrand Firecracker Mix) or Various.flac
Pre-gap length : 00:02:00
Track gain : -5.48 dB
Peak : 0.988525
CRC32 hash (test run) : F85016A5
CRC32 hash : F85016A5
CRC32 hash (skip zero) : DB666CA2
AccurateRip signature : 1F1B0F88
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
No errors occurred
End of status report
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
[ CD3 ].........................................................................
X Lossless Decoder version 20110611 (135.0)
XLD extraction logfile from 2011-06-30 22:00:17 +0100
Various / Grand 12-Inches 8 (CD3)
Used drive : MATSHITA DVD-R UJ-857E (revision ZB0E)
Ripper mode : CDParanoia III 10.2
Disable audio cache : OK for the drive with a cache less than 2750KiB
Make use of C2 pointers : NO
Read offset correction : 102
Max retry count : 100
Gap status : Analyzed, Appended
TOC of the extracted CD
Track | Start | Length | Start sector | End sector
---------------------------------------------------------
1 | 00:00:00 | 08:23:37 | 0 | 37761
2 | 08:23:37 | 08:00:61 | 37762 | 73822
3 | 16:24:23 | 08:38:66 | 73823 | 112738
4 | 25:03:14 | 06:17:62 | 112739 | 141075
5 | 31:21:01 | 09:21:00 | 141076 | 183150
6 | 40:42:01 | 08:13:50 | 183151 | 220175
7 | 48:55:51 | 07:31:32 | 220176 | 254032
8 | 56:27:08 | 06:21:32 | 254033 | 282639
9 | 62:48:40 | 05:13:30 | 282640 | 306144
10 | 68:01:70 | 09:03:47 | 306145 | 346916
AccurateRip Summary
Disc not found in AccurateRip DB.
All Tracks
Album gain : -5.95 dB
Peak : 0.988525
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Track 01
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD3) (2001) [FLAC]/01 First Choice - Dr. Love (12 Inch Version) or Various.flac
Pre-gap length : 00:02:00
Track gain : -5.23 dB
Peak : 0.946533
CRC32 hash (test run) : 479B23F6
CRC32 hash : 479B23F6
CRC32 hash (skip zero) : F3EC7B58
AccurateRip signature : 898640C7
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 02
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD3) (2001) [FLAC]/02 Rick James - You And I (Disco Version) or Various.flac
Pre-gap length : 00:02:00
Track gain : -6.33 dB
Peak : 0.988525
CRC32 hash (test run) : 6734F99C
CRC32 hash : 6734F99C
CRC32 hash (skip zero) : 9EEB42A9
AccurateRip signature : 64C326FB
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 03
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD3) (2001) [FLAC]/03 Loleatta Holloway - Love Sensation (Unrealeased Version) or Various.flac
Pre-gap length : 00:02:00
Track gain : -5.28 dB
Peak : 0.988495
CRC32 hash (test run) : D95C50F9
CRC32 hash : D95C50F9
CRC32 hash (skip zero) : 747B8AA2
AccurateRip signature : 7B445B27
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 04
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD3) (2001) [FLAC]/04 Richard T. Bear - Sunshine Hotel (Just Walk On In) (12 Inch Version) or Various.flac
Pre-gap length : 00:02:00
Track gain : -3.13 dB
Peak : 0.988495
CRC32 hash (test run) : E2BFBEF4
CRC32 hash : E2BFBEF4
CRC32 hash (skip zero) : D798B00E
AccurateRip signature : 96EF69EF
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 05
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD3) (2001) [FLAC]/05 Rose Royce - Do Your Dance (Part 1 & Part 2) or Various.flac
Pre-gap length : 00:02:00
Track gain : -6.24 dB
Peak : 0.988495
CRC32 hash (test run) : E4BD1138
CRC32 hash : E4BD1138
CRC32 hash (skip zero) : 49E5C992
AccurateRip signature : D70B604D
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 06
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD3) (2001) [FLAC]/06 Sparque - Let's Go Dancin' (Club Version) or Various.flac
Pre-gap length : 00:02:00
Track gain : -5.57 dB
Peak : 0.988525
CRC32 hash (test run) : E39F92F6
CRC32 hash : E39F92F6
CRC32 hash (skip zero) : CF8B39CF
AccurateRip signature : B7A6501A
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 07
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD3) (2001) [FLAC]/07 Taana Gardner - Work That Body (Part 1) or Various.flac
Pre-gap length : 00:02:00
Track gain : -4.11 dB
Peak : 0.988495
CRC32 hash (test run) : 9EAF148B
CRC32 hash : 9EAF148B
CRC32 hash (skip zero) : 745E32F7
AccurateRip signature : 7F533874
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 08
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD3) (2001) [FLAC]/08 Simplicious Ft. Eugene Wilde - Let Her Feel It (Vocal) or Various.flac
Pre-gap length : 00:02:00
Track gain : -7.11 dB
Peak : 0.905914
CRC32 hash (test run) : 63650406
CRC32 hash : 63650406
CRC32 hash (skip zero) : 907F060E
AccurateRip signature : 81DA74FE
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 09
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD3) (2001) [FLAC]/09 Direct Current - Everybody Here Must Party (12 Inch Version) or Various.flac
Pre-gap length : 00:02:00
Track gain : -1.62 dB
Peak : 0.988464
CRC32 hash (test run) : 586D20D6
CRC32 hash : 586D20D6
CRC32 hash (skip zero) : D120C0E8
AccurateRip signature : 878753CD
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 10
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD3) (2001) [FLAC]/10 Deodato - Also Sprach Zarathustra (Album Version) or Various.flac
Pre-gap length : 00:02:00
Track gain : -7.13 dB
Peak : 0.988525
CRC32 hash (test run) : 2902372C
CRC32 hash : 2902372C
CRC32 hash (skip zero) : 345DEF6E
AccurateRip signature : E12D58DC
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
No errors occurred
End of status report
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
[ CD4 ].........................................................................
X Lossless Decoder version 20110611 (135.0)
XLD extraction logfile from 2011-06-30 23:01:07 +0100
Various / Grand 12-Inches 8 (CD4)
Used drive : MATSHITA DVD-R UJ-857E (revision ZB0E)
Ripper mode : CDParanoia III 10.2
Disable audio cache : OK for the drive with a cache less than 2750KiB
Make use of C2 pointers : NO
Read offset correction : 102
Max retry count : 100
Gap status : Analyzed, Appended
TOC of the extracted CD
Track | Start | Length | Start sector | End sector
---------------------------------------------------------
1 | 00:00:00 | 11:55:33 | 0 | 53657
2 | 11:55:33 | 08:28:47 | 53658 | 91804
3 | 20:24:05 | 08:22:40 | 91805 | 129494
4 | 28:46:45 | 06:03:52 | 129495 | 156771
5 | 34:50:22 | 05:22:74 | 156772 | 180995
6 | 40:13:21 | 05:51:25 | 180996 | 207345
7 | 46:04:46 | 09:52:60 | 207346 | 251805
8 | 55:57:31 | 08:00:73 | 251806 | 287878
9 | 63:58:29 | 05:18:52 | 287879 | 311780
10 | 69:17:06 | 05:58:42 | 311781 | 338672
AccurateRip Summary
Disc not found in AccurateRip DB.
All Tracks
Album gain : -5.76 dB
Peak : 0.988556
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Track 01
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD4) (2011) [FLAC]/01 Marvin Gaye - Got To Give It Up (Part 1 & Part 2) or Various.flac
Pre-gap length : 00:02:00
Track gain : -6.03 dB
Peak : 0.988525
CRC32 hash (test run) : 175971CA
CRC32 hash : 175971CA
CRC32 hash (skip zero) : 2F2054F0
AccurateRip signature : 7BCC7604
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 02
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD4) (2011) [FLAC]/02 Dayton - The Sound Of Music (X-Tented Remix) or Various.flac
Pre-gap length : 00:02:00
Track gain : -6.61 dB
Peak : 0.988525
CRC32 hash (test run) : 2F25B2DC
CRC32 hash : 2F25B2DC
CRC32 hash (skip zero) : 480D2316
AccurateRip signature : F094783B
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 03
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD4) (2011) [FLAC]/03 Cheryl Lynn - Encore (Dance Version) or Various.flac
Pre-gap length : 00:02:00
Track gain : -6.17 dB
Peak : 0.988464
CRC32 hash (test run) : 9FBBA7A8
CRC32 hash : 9FBBA7A8
CRC32 hash (skip zero) : B5149596
AccurateRip signature : A3C545A6
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 04
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD4) (2011) [FLAC]/04 Teena Marie - Behind The Groove (12 Inch Version) or Various.flac
Pre-gap length : 00:02:00
Track gain : -4.58 dB
Peak : 0.988495
CRC32 hash (test run) : 0434BBB4
CRC32 hash : 0434BBB4
CRC32 hash (skip zero) : 977AB374
AccurateRip signature : 542C52CA
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 05
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD4) (2011) [FLAC]/05 Stacy Lattisaw - Jump To The Beat (12 Inch Version) or Various.flac
Pre-gap length : 00:02:00
Track gain : -6.68 dB
Peak : 0.795349
CRC32 hash (test run) : C3B817E1
CRC32 hash : C3B817E1
CRC32 hash (skip zero) : 4F19FD89
AccurateRip signature : C5245950
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 06
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD4) (2011) [FLAC]/06 Joe Bataan - Rap-O Clap-O (12 Inch Version) or Various.flac
Pre-gap length : 00:02:00
Track gain : -3.69 dB
Peak : 0.988495
CRC32 hash (test run) : 9EFD7B5D
CRC32 hash : 9EFD7B5D
CRC32 hash (skip zero) : 1EB42CA7
AccurateRip signature : 4A24E2C1
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 07
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD4) (2011) [FLAC]/07 Risque - Burn It Up (Mr. D.J.) (Ben Liebrand Master Edit) or Various.flac
Pre-gap length : 00:02:00
Track gain : -5.49 dB
Peak : 0.988525
CRC32 hash (test run) : EF307BA2
CRC32 hash : EF307BA2
CRC32 hash (skip zero) : D945DE12
AccurateRip signature : 632F67E1
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 08
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD4) (2011) [FLAC]/08 Peter Brown - Crank It Up (Funk Town) (Part 1) or Various.flac
Pre-gap length : 00:02:00
Track gain : -5.63 dB
Peak : 0.988556
CRC32 hash (test run) : F8D3C23E
CRC32 hash : F8D3C23E
CRC32 hash (skip zero) : EAC69B8E
AccurateRip signature : 7338E267
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 09
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD4) (2011) [FLAC]/09 Frankie Smith - Double Dutch Bus (Vocal) or Various.flac
Pre-gap length : 00:02:00
Track gain : -5.05 dB
Peak : 0.988464
CRC32 hash (test run) : 0DC0D0A6
CRC32 hash : 0DC0D0A6
CRC32 hash (skip zero) : 7E5C6370
AccurateRip signature : 0621ECAB
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
Track 10
Filename : /Users/Downloads/Ben Liebrand - 12-Inches 8 (2011)/Various - Grand 12-Inches 8 (CD4) (2011) [FLAC]/10 The Brothers Johnson - Get The Funk Out Ma Face (Disco Version) or Various.flac
Pre-gap length : 00:02:00
Track gain : -6.43 dB
Peak : 0.988525
CRC32 hash (test run) : 9A15681B
CRC32 hash : 9A15681B
CRC32 hash (skip zero) : 96CB75F9
AccurateRip signature : 79B7B5AE
->Track not present in AccurateRip database.
Statistics
Read error : 0
Skipped (treated as error) : 0
Edge jitter error (maybe fixed) : 0
Atom jitter error (maybe fixed) : 0
Drift error (maybe fixed) : 0
Dropped bytes error (maybe fixed) : 0
Duplicated bytes error (maybe fixed) : 0
Inconsistency in error sectors : 0
No errors occurred
End of status report
|