Kernel Bench

Kernel News and How To

the orig.bin it says ‘DVD key@ 0×4f00 0×33681CB6′.
nandpro
i dumped my nand 3 times to be safe luckily i did as when i flashed my nand back
just for testing , it wouldnt power on then tried my second dump and it came straight back to life
i havnt had time yet to compare the 2 files properly but they look the same
so it could of just been a bad flash the first time
Dump nand using nandpro attached via jtag.
Write xenon_hacked using jtag.
Note fusebits 3 and 5 displayed through xell.
Use fusebits 3 and 5(cpukey) to decrypt keyvault using robinsods flash tool.
Note dvdkey.
Reflash original nand dump via jtag.
you may have to keep a camera at hand cause the cpu key scrolls by somewhat
fast, but yeah, that’s all you gotta do.
just about any 15-25W pen tip iron. the solder spots are quite large.
you just need to backup your original nand image, and then flash a hack image
to the nand, and turn on the 360 with a LPT cable. You
will be able to see the cpu key on the screen. with that, you can decrypt your
original nand and get your dvd key.
MOTHERBOARD IS A XENON BOARD
U can read here too!

http://www.free60.org/Reading_out_NAND

Xenon on this pic no hdmi console and u can read here

http://forums.xbox-scene.com/index.php?showtopic=690493h

xell gives you your cpu key when it boots, so all thats needed for dvdkey recovery
is your original nand, xell booting on the motherboard and 360 flash tool to read out your dvdkey.

http://360.xbox-hq.com/xbox-tutorials-107.html
http://www.xbox360-hacks.com/forums/about3547.html how to do it

http://dwl.xbox-scene.com/tutorial/Xbox_360-HandC-V1_4.pdf
http://www.free60.org/Reading_out_NAND
http://www.console24.com/product_info.php/products_id/357

I see lots of sites posting today about a way to unban Xbox 360 from LIVE often linking to a thread made on our forums here.

This method has been known for a long time (since the King Kong Exploit days) and does indeed work. Basically you swap the Keyvault (or KV in short, it stores stuff like console certificates, per-box private keys, DVD key, etc) inside the NAND with the KV from an unbanned console. While technically very different you could somewhat compare it to swapping eeprom data during the Xbox1 days.

However theres a (really) big IF (besides the required tech knowledge) you need the (unique) CPU key of your banned console without it you cant correctly write the new KV data in the NAND bin of your banned console.
Now you wonder how to get the CPU-key well by running XeLL of course!
To run XeLL u need to perform the JTAG hack (or the King Kong exploit, but thats even more outdated) and if you got banned the last few weeks it means you updated to the latest dashboard/kernel (else you cant get on LIVE).
And thats the problem Microsoft patched the JTAG hack since kernel 849x (July 2009) so no way to boot up XeLL (= no realistic way for you to get the CPU-key atm) and thus no way to swap the KV data in your NAND image.
And then theres also added KV protection (hashing) on newer motherboards (Falcon+ ?), but if you cant even get your CPU-key it doesnt matter much to do deeper into this problem.
The only way it would work is if you retrieved the CPU-key of your old banned 360 before you updated to anything over 849x. If you did that you probably know about all of this and Im not telling you anything new
Downgrading kernel is not an option either, older kernels wont boot as both kernel and CB fuses were burned during the various updates MS performed.

Hope that explains the situation a bit (tried to make it not too technical)
On a side-note, it would probably be pretty easy for MS to detect KV-swaps (like HW-mismatches etc).

Duration : 0:10:1

Read the rest of this entry »


You need to edit your squid.conf file to get it working – usually the defaults work, just "start service squid -z" the "-z" builds the cache files and logs… contact me if you’re having problems.

this is what i get after finishing the set up(Pre-Installation)procedure and commanding :runInstaller

Starting Oracle Universal Installer…
Checking Installer Requirements…
Checking O.S version: must be redhat-2.1, redhat-3.,SuSE-9,SuSe-8 or UnitedLinux-1.0.
Failed<<<<
Exiting Oracle Universal Installer.

Is there anyspecial feature that i should take into account because of using fedora core 6?

Perhaps you don’t have the right Linux-release file in your /etc.
Usually if you use RHEL you can see this file /etc/redhat-release, for suse it’s /etc/SuSE-release. If you can find something like /etc/fedora-release and rename it to something else, then create another file called redhat-release. Then you must fill what version of Red Hat you want. Like Red Hat Enterprise Linux AS release 3 (Taroon). Then it should be OK I think..

I installed GRUB and Fedora Core 8 on my Dell Dimension v400c [The old one]. Now when I boot it it just says GRUB on the screen and hangs there. When I press a key, it beeps. Nothing happens. Ever. I left it for 2 days and nothing happened.

post this questions in fedora forum
here is a link – just left click it and you’ll be there
FedoraForum.org – Fedora User Support Forum & Community
FedoraForum.org is the Support forum for Fedora Core Linux.
http://www.fedoraforum.org/
you will have to register in order to post a question otherwise you can browse questions/answers without doing it

How can I compile a Java to a CLASS file? Can someone give me the link to the download of a program that can do this? Do I need any specific softwares or Java Updates? I have 6.2.

the easiest way to do this is to download "netbeans" which is a visual IDE developed by sun for java.

You also should find a program called the "java development kit" and install it on the computer. Then hit WINDOWS + PAUSE/BREAK to get a dialog window, and add two variables,

click advanced settings,
environmental variable, and add a semicolon followed by the bin directory in the java folder you just installed,
also, create a new variable called CLASSPATH, and set it at least to

.

this represents a semicolon separated list of the folders in which the Compiler will look for class files.

also, remember when you javac a .java file you have to be in its directory. Also, when you use the "java" command to run a program, you don’t use ProgramName.class, you only say java ProgramName or you’ll get a "Class does not exist" error.

This program is supposed to load the ArrayList with the names of a few dwarfs, then read them back and display only their first character. It keeps giving me this weird -Xlint error though.

import java.util.*;
public class Lab23A {
public static void main(String[] args) {
ArrayList list = new ArrayList();
list.add("Happy");
list.add("Sleepy");
list.add("Sneezy");
list.add("Doc");
for (int i = 0; i < list.size(); i++) {
System.out.println(list[i].charAt(0));
}
}
}

1. You set up your arraylist wrong. ArrayList<String> list = new ArrayList<String>();

2. list[i] doesn’t work. You need list.get(i).charAt(0)

In the end you’ll have this:

import java.util.*;
public class Lab23A {
public static void main(String[] args) {
ArrayList<String> list = new ArrayList<String>();
list.add("Happy");
list.add("Sleepy");
list.add("Sneezy");
list.add("Doc");
for (int i = 0; i < list.size(); i++) {
System.out.println(list.get(i).charAt(0));
}
}
}

If they are using Linux, are they breaking the GNU license by not putting their product source code out there for people to tinker with? Microsoft may be trying to muscle in on the Linux OS so that they can take it over for themselves.

A kernel is a module/program that allows software to communicate with hardware. It is very very low level. Windows XP, Linux, Mac Osx, etc all have different kernels.

I have a dell d505 laptop computer
- 1.4 Ghz M processor
- Windows XP
- 256 MB RAM

A few months ago the Blue-Screen-of-death BSOD kept appearing telling me that the computer has been halted coz of an error, and i ought to remoe any software or software i recently installed.

and the sub-error varies from win32k.sys atapi.sys. But always under the main error heading of "kernel_inpage_data_error".

I’ve changed my RAM to another slot, and my HDD is okay. I’e read through various forums, and they say the following:

1) either its a Boot-sector Viru -> Use antivirus / Do Level Format
2) HDD error ->Change HDD
3) RAm error ->replace RAM
4) heating problem – >Posible overheating

What is the real problem and what houdl i do ? Please advie .
Thank You.

P.s.
I’ve installed Mcafee anti-viru and the system eems to be stable, most of the time, i also use agnitum firewall pro.But if there is no AV installed. The system crashes after a few secs.

instal windows … reset bios…try another memory

The log file is

[12:36:25] NeroVision Log created (Date: 01/14/2007)
[12:36:25] NeroVision Processors: 2 (Intel)
[12:36:25] NeroVision OS: Windows Windows XP
[12:36:28] GCCore Detected DirectX Version: 9.0c
[12:36:28] GCHW Node added: Microsoft AC Adapter
[12:36:28] GCHW Node added: AMD K8-Prozessor
[12:36:28] GCHW Node added: AMD K8-Prozessor
[12:36:28] GCHW Node added: ACPI Fixed Feature Button
[12:36:28] GCHW Node added: Programmable interrupt controller
[12:36:28] GCHW Node added: System timer
[12:36:28] GCHW Node added: Direct memory access controller
[12:36:28] GCHW Node added: Standard 101/102-Key or Microsoft Natural PS/2 Keyboard
[12:36:28] GCHW Node added: System speaker
[12:36:28] GCHW Node added: PCI bus
[12:36:28] GCHW Node added: System CMOS/real time clock
[12:36:28] GCHW Node added: System board
[12:36:28] GCHW Node added: Motherboard resources
[12:36:28] GCHW Node added: Motherboard resources
[12:36:28] GCHW Node added: Numeric data processor
[12:36:28] GCHW Node added: Microsoft ACPI-Compliant Embedded Controller
[12:36:28] GCHW Node added: Microsoft ACPI-Compliant Control Method Battery
[12:36:28] GCHW Node added: ACPI Power Button
[12:36:28] GCHW Node added: ACPI Lid
[12:36:28] GCHW Node added: ACPI Sleep Button
[12:36:28] GCHW Node added: PS/2 Compatible Mouse
[12:36:28] GCHW Node added: ACPI Thermal Zone
[12:36:28] GCHW Node added: Microsoft ACPI-Compliant System
[12:36:28] GCHW Node added: Default Monitor
[12:36:28] GCHW Node added: Plug and Play Monitor
[12:36:28] GCHW Node added: Generic Television
[12:36:28] GCHW Node added: Realtek High Definition Audio
[12:36:28] GCHW Node added: Motorola SM56 Data Fax Modem
[12:36:28] GCHW Node added: HID-compliant mouse
[12:36:28] GCHW Node added:
[12:36:28] GCHW Node added: CD-ROM Drive
[12:36:28] GCHW Node added: Disk drive
[12:36:28] GCHW Node added: ISAPNP Read Data Port
[12:36:28] GCHW Node added: PCI standard PCI-to-PCI bridge
[12:36:28] GCHW Node added: ATI SMBus
[12:36:28] GCHW Node added: Standard Enhanced PCI to USB Host Controller
[12:36:28] GCHW Node added: Standard OpenHCD USB Host Controller
[12:36:28] GCHW Node added: Standard OpenHCD USB Host Controller
[12:36:28] GCHW Node added: Standard Dual Channel PCI IDE Controller
[12:36:28] GCHW Node added: PCI standard ISA bridge
[12:36:28] GCHW Node added: Standard Dual Channel PCI IDE Controller
[12:36:28] GCHW Node added: Microsoft UAA Bus Driver for High Definition Audio
[12:36:28] GCHW Node added: PCI standard host CPU bridge
[12:36:28] GCHW Node added: ATI Radeon Xpress 1100
[12:36:28] GCHW Node added: PCI standard PCI-to-PCI bridge
[12:36:28] GCHW Node added: PCI standard PCI-to-PCI bridge
[12:36:28] GCHW Node added: PCI standard host CPU bridge
[12:36:28] GCHW Node added: PCI standard host CPU bridge
[12:36:28] GCHW Node added: PCI standard host CPU bridge
[12:36:28] GCHW Node added: PCI standard host CPU bridge
[12:36:28] GCHW Node added: Realtek RTL8139/810x Family Fast Ethernet NIC
[12:36:28] GCHW Node added: OHCI Compliant IEEE 1394 Host Controller
[12:36:28] GCHW Node added: O2Micro Integrated MMC/SD Controller
[12:36:28] GCHW Node added: O2Micro Integrated MS/MSPRO Controller
[12:36:28] GCHW Node added: Atheros AR5005G Wireless Network Adapter
[12:36:28] GCHW Node added: Primary IDE Channel
[12:36:28] GCHW Node added: Secondary IDE Channel
[12:36:28] GCHW Node added: Primary IDE Channel
[12:36:28] GCHW Node added: Secondary IDE Channel
[12:36:28] GCHW Node added: Microsoft Tun Miniport Adapter
[12:36:28] GCHW Node added: ACPI Multiprocessor PC
[12:36:28] GCHW Node added: Microsoft Composite Battery
[12:36:28] GCHW Node added: Volume Manager
[12:36:28] GCHW Node added: AFD
[12:36:28] GCHW Node added: 1394 ARP Client Protocol
[12:36:28] GCHW Node added: Beep
[12:36:28] GCHW Node added: dmboot
[12:36:28] GCHW Node added: dmload
[12:36:28] GCHW Node added: Symantec Eraser Control driver
[12:36:28] GCHW Node added: Fips
[12:36:28] GCHW Node added: Generic Packet Classifier
[12:36:28] GCHW Node added: HTTP
[12:36:28] GCHW Node added: iaStor
[12:36:28] GCHW Node added: IPv6 Windows Firewall Driver
[12:36:28] GCHW Node added: IP Traffic Filter Driver
[12:36:28] GCHW Node added: IP Network Address Translator
[12:36:28] GCHW Node added: IPSEC driver
[12:36:28] GCHW Node added: ksecdd
[12:36:28] GCHW Node added: McAfee Inc.
[12:36:28] GCHW Node added: McAfee Inc.
[12:36:28] GCHW Node added: McAfee Inc.
[12:36:28] GCHW Node added: McAfee Inc.
[12:36:28] GCHW Node added: McAfee Inc.
[12:36:28] GCHW Node added: mnmdd
[12:36:28] GCHW Node added: mountmgr
[12:36:28] GCHW Node added: MPFP
[12:36:28] GCHW Node added: NDIS System Driver
[12:36:28] GCHW Node added: Remote Access NDIS TAPI Driver
[12:36:28] GCHW Node added: NDIS Usermode I/O Protocol
[12:36:28] GCHW Node added: NDProxy
[12:36:28] GCHW Node added: NetBios over Tcpip
[12:36:28] GCHW Node added: Null
[12:36:28] GCHW Node added: nvatabus
[12:36:28] GCHW Node added: nvraid
[12:36:28] GCHW Node added: PartMgr
[12:36:28] GCHW Node added: ParVdm
[12:36:28] GCHW Node added: Remote Access Auto Connection Driver
[12:36:28] GCHW Node added: RDPCDD
[12:36:28] GCHW Node added: SiSRaid2
[12:36:28] GCHW Node added: TCP/IP Protocol Driver
[12:36:28] GCHW Node added: Microsoft IPv6 Protocol Driver
[12:36:28] GCHW Node added: VgaSave
[12:36:28] GCHW Node added: viamraid
[12:36:28] GCHW Node added: VolSnap
[12:36:28] GCHW Node added: Remote Access IP ARP Driver
[12:36:28] GCHW Node added: Audio Codecs
[12:36:28] GCHW Node added: Legacy Audio Drivers
[12:36:28] GCHW Node added: Media Control Devices
[12:36:28] GCHW Node added: Legacy Video Capture Devices
[12:36:28] GCHW Node added: Video Codecs
[12:36:28] GCHW Node added: WAN Miniport (L2TP)
[12:36:28] GCHW Node added: WAN Miniport (IP)
[12:36:28] GCHW Node added: WAN Miniport (PPPOE)
[12:36:28] GCHW Node added: WAN Miniport (PPTP)
[12:36:28] GCHW Node added: Packet Scheduler Miniport
[12:36:28] GCHW Node added: Packet Scheduler Miniport
[12:36:28] GCHW Node added: Direct Parallel
[12:36:28] GCHW Node added: Terminal Server Keyboard Driver
[12:36:28] GCHW Node added: Terminal Server Mouse Driver
[12:36:28] GCHW Node added: Plug and Play Software Device Enumerator
[12:36:28] GCHW Node added: Microcode Update Device
[12:36:28] GCHW Node added: Microsoft System Management BIOS Driver
[12:36:28] GCHW Node added: Generic volume
[12:36:28] GCHW Node added: Generic volume
[12:36:28] GCHW Node added: Microsoft Kernel System Audio Device
[12:36:28] GCHW Node added: Microsoft Kernel Wave Audio Mixer
[12:36:28] GCHW Node added: Microsoft WINMM WDM Audio Compatibility Driver
[12:36:28] GCHW Node added: USB Root Hub
[12:36:28] GCHW Node added: USB Root Hub
[12:36:28] GCHW Node added: USB Root Hub
[12:36:28] GCHW Node added: USB Mass Storage Device
[12:36:28] GCHW Node added: USB Human Interface Device
[12:36:28] GCHW Node added: Disk drive
[12:36:28] GCHW Node added: 1394 Net Adapter
[12:36:30] ExpressUI Running NeroVision Express 3 SE Version: 3.1.0.25
[12:36:37] DVDEngine DVDENGINE.DLL Version Information: Product Version: 3.1.0.11, File Version: 3.1.0.77, Interface Version: 4.0.0.2
[12:36:37] DVDEngine BEGIN: IDVDEngineManagerImpl – CreateDVDVideoSession
[12:36:37] DVDEngine END: IDVDEngineManagerImpl – CreateDVDVideoSession
[12:36:37] DVDEngine BEGIN: IDVDVideoSessionImpl – ~IDVDVideoSessionImpl
[12:36:37] DVDEngine END: IDVDVideoSessionImpl – ~IDVDVideoSessionImpl
[12:38:33] AMCUIBase VOB import of c:\Documents and Settings\kieran\My Documents\My Videos\videos\VIDEO_TS\VTS_01_3.VOB started, 1 files in group
[12:38:33] AMCUIBase — AddFile() returned 1
[12:38:33] AMCUIBase — SetSource() returned 1
[12:39:10] AMCUIBase — AnalyzeFile() returned 1
[12:39:10] AMCUIBase — 1 valid segments found
[12:39:11] AMCUIBase — Using original file
[12:39:11] MMTools SourceBuilder: building c:\Documents and Settings\kieran\My Documents\My Videos\videos\VIDEO_TS\VTS_01_3.VOB audio/0
[12:39:12] MMTools SourceBuilder: — used source filters —
[12:39:12] MMTools {E436EBB5-524F-11CE-9F53-0020AF0BA770} – File Source (Async.)
[12:39:12] MMTools {A336CD3B-599C-4F70-A34D-E88EDE4B64C3} – Nero Splitter
[12:39:12] MMTools {138130AF-A79B-45D5-B4AA-87697457BA87} – Nero Digital Audio Decoder
[12:39:12] MMTools SourceBuilder: file type MPEG2 – audio
[12:39:12] MMTools ——————–
[12:39:12] MMTools SourceBuilder: building c:\Documents and Settings\kieran\My Documents\My Videos\videos\VIDEO_TS\VTS_01_3.VOB video/0
[12:39:13] MMTools SourceBuilder: — used source filters —
[12:39:13] MMTools {E436EBB5-524F-11CE-9F53-0020AF0BA770} – File Source (Async.)
[12:39:13] MMTools {A336CD3B-599C-4F70-A34D-E88EDE4B64C3} – Nero Splitter
[12:39:13] MMTools {C0BA9CF8-96E0-4C34-B5DE-E92C3FC05ED6} – Nero Video Decoder
[12:39:13] MMTools SourceBuilder: file type MPEG2 – video
[12:39:13] MMTools ——————–
[12:39:50] DVDEngine BEGIN: IDVDEngineManagerImpl – CreateDVDVideoSession
[12:39:50] DVDEngine END: IDVDEngineManagerImpl – CreateDVDVideoSession
[12:39:50] DVDEngine BEGIN: IDVDVideoSessionImpl – ~IDVDVideoSessionImpl
[12:39:50] DVDEngine END: IDVDVideoSessionImpl – ~IDVDVideoSessionImpl
[12:39:50] MMTools SourceBuilder: building cached c:\Documents and Settings\kieran\My Documents\My Videos\videos\VIDEO_TS\VTS_01_3.VOB video/0
[12:40:08] DVDEngine BEGIN: IDVDEngineManagerImpl – CreateDVDVideoSession
[12:40:08] DVDEngine END: IDVDEngineManagerImpl – CreateDVDVideoSession
[12:40:08] DVDEngine BEGIN: IDVDVideoSessionImpl – ~IDVDVideoSessionImpl
[12:40:08] DVDEngine END: IDVDVideoSessionImpl – ~IDVDVideoSessionImpl
[12:40:11] MMTools SourceBuilder: building cached c:\Documents and Settings\kieran\My Documents\My Videos\videos\VIDEO_TS\VTS_01_3.VOB audio/0
[12:40:11] MMTools SourceBuilder: building cached c:\Documents and Settings\kieran\My Documents\My Videos\videos\VIDEO_TS\VTS_01_3.VOB video/0
[12:40:13] ExpressUI Burn process started by user.
[12:40:13] ExpressUI Destination: HL-DT-ST DVD-RW GWA-4082N
[12:40:13] ExpressUI Directory for temporary files: C:\DOCUME~1\kieran\LOCALS~1\Temp
[12:40:13] ExpressUI Available hard disk space for temporary files: 81924.656 MB
[12:40:13] ExpressUI ——<NeroVision Project Information>——–
[12:40:13] ExpressUI — Project type: DVD-Video
[12:40:13] ExpressUI — Project video options —
[12:40:13] ExpressUI Video mode: PAL
[12:40:13] ExpressUI Aspect ratio: Automatic
[12:40:13] ExpressUI Quality: Automatic
[12:40:13] ExpressUI Resolution: Automatic
[12:40:13] ExpressUI Sample format: Automatic
[12:40:13] ExpressUI File type: MPEG-2
[12:40:13] ExpressUI Audio format: Stereo
[12:40:13] ExpressUI Encoding mode: Fast Encoding (1-Pass)
[12:40:13] ExpressUI — Project space information —
[12:40:13] ExpressUI Used disc space: 1.02 GB
[12:40:13] ExpressUI — Project contents —
[12:40:13] ExpressUI Sample format: Automatic
[12:40:13] ExpressUI Audio format: Stereo
[12:40:13] ExpressUI Encoding mode: Fast Encoding (1-Pass)
[12:40:13] ExpressUI Number of titles: 1
[12:40:13] ExpressUI 1. VTS_01_3 (Video Title, 0h 36m 05s)
[12:40:13] ExpressUI Video mode: PAL
[12:40:13] ExpressUI Aspect ratio: 16:9
[12:40:13] ExpressUI Quality: Standard play (5073 kbps)
[12:40:13] ExpressUI Resolution: 720 x 576 (CCIR-601 D1)
[12:40:13] ExpressUI Audio SmartEncoding ratio: 0.0 %
[12:40:13] ExpressUI Video SmartEncoding ratio: 100.0 %
[12:40:13] ExpressUI ——–<End of Project Information>———-
[12:40:13] ExpressUI ——Recording Parameters——
[12:40:13] ExpressUI Book Type: 1
[12:40:13] ExpressUI Destination Device: HL-DT-ST DVD-RW GWA-4082N (Capabilities: 0000E017)
[12:40:13] ExpressUI Recording Flags: 12
[12:40:13] ExpressUI Recording Speed: 0
[12:40:13] ExpressUI Volume Name: DVD
[12:40:13] ExpressUI Burn-at-once flag: 0
[12:40:13] ExpressUI –End of recording parameters—
[12:40:14] DVDEngine BEGIN: IDVDEngineManagerImpl – CreateDVDVideoSession
[12:40:14] DVDEngine END: IDVDEngineManagerImpl – CreateDVDVideoSession
[12:40:14] DVDEngine BEGIN: IDVDSessionBaseImpl – RegisterApplicationService
[12:40:14] DVDEngine ..Application service registered…
[12:40:14] DVDEngine END: IDVDSessionBaseImpl – RegisterApplicationService
[12:40:14] DVDEngine BEGIN: IDVDSessionBaseImpl – RegisterCallback
[12:40:14] DVDEngine ..Session callback registered…
[12:40:14] DVDEngine END: IDVDSessionBaseImpl – RegisterCallback
[12:40:14] DVDEngine BEGIN: IDVDVideoSessionImpl – Prepare
[12:40:14] DVDEngine **BEGIN: _DVDVideo – Prepare
[12:40:14] DVDEngine ..VTS_Ns=1…
[12:40:14] DVDEngine ****BEGIN: _DVDVideoBase – Prepare VMG
[12:40:14] DVDEngine …VMGM_VOBS_exist = false
[12:40:14] DVDEngine ****END: _DVDVideoBase – Prepare VMG
[12:40:14] DVDEngine ****BEGIN: _DVDVideoBase – Prepare VTS#1
[12:40:14] DVDEngine …VTSM_VOBS_exist = false
[12:40:14] DVDEngine ******BEGIN: VTSTT_VOBS#1 – Process Create
[12:40:14] DVDEngine ********BEGIN: _VOBS – Process VOB
[12:40:14] DVDEngine **********BEGIN: _VOBS – _M_analyze_cnv_input
[12:40:14] DVDEngine …Duration 21652800000
[12:40:14] DVDEngine …_streamtime_frame_duration is 400000
[12:40:14] DVDEngine …Stream 0 is ‘Video’
[12:40:14] DVDEngine …Stream 1 is ‘Audio’
[12:40:14] DVDEngine **********END: _VOBS – _M_analyze_cnv_input
[12:40:14] NeroVision Analyze video stream
[12:40:14] NeroVision Seg. | frames | weight | volume
[12:40:14] NeroVision ——+———+——–+——–
[12:40:14] NeroVision 0 | 54131 | 1 | 54131
[12:40:14] NeroVision ——+———+——–+——–
[12:40:14] NeroVision total : 54131
[12:40:14] NeroVision Estimate Size
[12:40:14] NeroVision +——-+——+——–+———-+———
[12:40:14] NeroVision |Stream | Seg. | UnComp.| Duration | Size (KB)
[12:40:14] NeroVision +——-+——+——–+———-+———
[12:40:14] NeroVision | 0 | 0 | 0 | 2165.24 | 963616
[12:40:14] NeroVision | 1 | 0 | 1 | 2165.28 | 60628
[12:40:14] NeroVision +——-+——+——–+———-+———
[12:40:14] NeroVision total data size : 1049055160 bytes
[12:40:14] NeroVision multiplexed size : 1089998848 bytes
[12:40:14] MMTools SourceBuilder: building cached c:\Documents and Settings\kieran\My Documents\My Videos\videos\VIDEO_TS\VTS_01_3.VOB audio/0
[12:40:14] DVDEngine ********END: _VOBS – Process VOB
[12:40:14] DVDEngine ******END: VTSTT_VOBS#1 – Process Create
[12:40:14] DVDEngine ****END: _DVDVideoBase – Prepare VTS#1
[12:40:14] DVDEngine **END: _DVDVideo – Prepare
[12:40:14] DVDEngine ..Estimated size=1.02 GB
[12:40:14] DVDEngine ..Estimated duration=3 min 15 sec
[12:40:14] DVDEngine END: IDVDVideoSessionImpl – Prepare
[12:40:14] DVDEngine BEGIN: IDVDVideoSessionImpl – CreateVOBs
[12:40:14] DVDEngine **BEGIN: _DVDVideo – Create
[12:40:14] DVDEngine ****BEGIN: Create – VTSTT_VOBS#1
[12:40:14] DVDEngine ******BEGIN: VTSTT_VOBS#1 – Process Create
[12:40:14] DVDEngine ********BEGIN: _VOBS – Process VOB
[12:40:14] DVDEngine **********BEGIN: _VOBS – _M_analyze_cnv_input
[12:40:14] DVDEngine …Duration 21652800000
[12:40:14] DVDEngine …_streamtime_frame_duration is 400000
[12:40:14] DVDEngine …Stream 0 is ‘Video’
[12:40:14] DVDEngine …Stream 1 is ‘Audio’
[12:40:14] DVDEngine **********END: _VOBS – _M_analyze_cnv_input
[12:40:14] NeroVision Analyze video stream
[12:40:14] NeroVision Seg. | frames | weight | volume
[12:40:14] NeroVision ——+———+——–+——–
[12:40:14] NeroVision 0 | 54131 | 1 | 54131
[12:40:14] NeroVision ——+———+——–+——–
[12:40:14] NeroVision total : 54131
[12:40:14] NeroVision Set Preview Channel
[12:40:14] NeroVision Set Preview Channel
[12:40:14] MMTools SourceBuilder: building cached c:\Documents and Settings\kieran\My Documents\My Videos\videos\VIDEO_TS\VTS_01_3.VOB audio/0
[12:40:15] DVDEngine …New VOB 1
[12:40:15] DVDEngine ..+VOB#1: VOB_IDN=1, SA=0, VOB_V_S_PTM=29904
[12:40:15] DVDEngine …New CELL 1
[12:40:15] DVDEngine ….+Cell#1: C_IDN=1
[12:43:42] DVDEngine ….|Cell#1: C_IDN=1, [0;524085], VOBU_Ns=4480, C_PBTM=36m05s.07
[12:43:42] DVDEngine ..|VOB#1: VOB_IDN=1, [0;524085], C_Ns=1, VOB_V_S_PTM=29904, VOB_V_E_PTM=194905104
[12:43:46] DVDEngine ********END: _VOBS – Process VOB
[12:43:46] DVDEngine ********BEGIN: VTSTT_VOBS#1 – INFORMATION after Create
[12:43:46] DVDEngine —————————————————————————————-
[12:43:46] DVDEngine General information:
[12:43:46] DVDEngine ..size=524086 (1.00 GB)
[12:43:46] DVDEngine ..capacity=524086 (1.00 GB)
[12:43:46] DVDEngine ..VOB_Ns=1
[12:43:46] DVDEngine ..C_Ns=1
[12:43:46] DVDEngine ..VOBU_Ns=4480
[12:43:46] DVDEngine VOB information:
[12:43:46] DVDEngine …VOB#1: VOB_IDN=1, [0;524085], C_Ns=1, VOB_V_S_PTM=29904, VOB_V_E_PTM=194905104
[12:43:46] DVDEngine …..Cell#1: C_IDN=1, [0;524085], VOBU_Ns=4480, C_PBTM=36m05s.07
[12:43:46] DVDEngine —————————————————————————————-
[12:43:46] DVDEngine ********END: VTSTT_VOBS#1 – INFORMATION after Create
[12:43:46] DVDEngine ******END: VTSTT_VOBS#1 – Process Create
[12:43:46] DVDEngine ******BEGIN: VTSTT_VOBS#1 – Verify
[12:43:46] DVDEngine ******END: VTSTT_VOBS#1 – Verify
[12:43:46] DVDEngine ..VTSTT_VOBS: size=1.00 GB (1,073,328,128 bytes)
[12:43:46] DVDEngine ****END: Create – VTSTT_VOBS#1
[12:43:46] DVDEngine **END: _DVDVideo – Create
[12:43:46] DVDEngine END: IDVDVideoSessionImpl – CreateVOBs
[12:43:46] DVDEngine BEGIN: IDVDVideoSessionImpl – CreateDesc
[12:43:46] DVDEngine **BEGIN: _DVDVideo – Create
[12:43:46] DVDEngine ****BEGIN: Create – VTSI#1
[12:43:46] DVDEngine ******BEGIN: VTSI#1 – Create
[12:43:46] DVDEngine …VTSM_VOBS exists = false
[12:43:46] DVDEngine …VTSM_PGCI_UT exists = true
[12:43:46] DVDEngine …VTS_TMAPT exists = true
[12:43:46] DVDEngine …VTSI_MAT created…
[12:43:46] DVDEngine …VTS_PTT_SRPT created…
[12:43:46] DVDEngine …VTS_PGCIT created…
[12:43:46] DVDEngine …VTS_C_ADT created…
[12:43:46] DVDEngine …VTS_VOBU_ADMAP created…
[12:43:46] DVDEngine …VTSM_PGCI_UT created…
[12:43:46] DVDEngine …VTS_TMAPT created…
[12:43:46] DVDEngine ******END: VTSI#1 – Create
[12:43:46] DVDEngine ******BEGIN: VTSI#1 – Verify
[12:43:46] DVDEngine ******END: VTSI#1 – Verify
[12:43:46] DVDEngine ..VTSI: size=34.0 KB (34,816 bytes)
[12:43:46] DVDEngine ****END: Create – VTSI#1
[12:43:46] DVDEngine ****BEGIN: Create – VMGI
[12:43:46] DVDEngine ******BEGIN: VMGI – Create
[12:43:46] DVDEngine …VMGM_VOBS exists = false
[12:43:46] DVDEngine …VMGM_PGCI_UT exists = true
[12:43:46] DVDEngine …PTL_MAIT exists = false
[12:43:46] DVDEngine …TXTDT_MG exists = false
[12:43:46] DVDEngine …FP_PGC_exist = true…
[12:43:46] DVDEngine …FP_PGC2_exist = false…
[12:43:46] DVDEngine …VMGI_MAT created…
[12:43:46] DVDEngine …TT_SRPT created…
[12:43:46] DVDEngine …VTS_ATRT created…
[12:43:46] DVDEngine …VMGM_PGCI_UT created…
[12:43:46] DVDEngine ******END: VMGI – Create
[12:43:46] DVDEngine ******BEGIN: VMGI – Verify
[12:43:46] DVDEngine ******END: VMGI – Verify
[12:43:46] DVDEngine ..VMGI: size=8.00 KB (8,192 bytes)
[12:43:46] DVDEngine ****END: Create – VMGI
[12:43:46] DVDEngine **END: _DVDVideo – Create
[12:43:46] DVDEngine END: IDVDVideoSessionImpl – CreateDesc
[12:43:46] DVDEngine BEGIN: IDVDSessionBaseImpl – GetDiscCaps
[12:43:46] DVDEngine ..Caps=DSCCAP_VLMNM_UDF | DSCCAP_VLMNM_ISO9660
[12:43:46] DVDEngine END: IDVDSessionBaseImpl – GetDiscCaps
[12:43:47] DVDEngine BEGIN: IDVDSessionBaseImpl – SetLabel
[12:43:47] DVDEngine Volume name (ISO9660)="DVD"
[12:43:47] DVDEngine END: IDVDSessionBaseImpl – SetLabel
[12:43:47] DVDEngine BEGIN: IDVDSessionBaseImpl – SetLabel
[12:43:47] DVDEngine Volume name (UDF)="DVD"
[12:43:47] DVDEngine END: IDVDSessionBaseImpl – SetLabel
[12:43:47] DVDEngine BEGIN: IDVDVideoSessionImpl – GetDiscContent
[12:43:47] DVDEngine **BEGIN: _DVDVideo – Fill FileSystemDescContainer
[12:43:47] DVDEngine ..File: ‘VIDEO_TS\VIDEO_TS.IFO’ (VMGI), location={undefined}, size=8.00 KB (8,192 bytes)
[12:43:47] DVDEngine ..File: ‘VIDEO_TS\VIDEO_TS.BUP’ (VMGI), location={undefined}, size=8.00 KB (8,192 bytes)
[12:43:47] DVDEngine ..File: ‘VIDEO_TS\VTS_01_0.IFO’ (VTSI), location={undefined}, size=34.0 KB (34,816 bytes)
[12:43:47] DVDEngine ..File: ‘VIDEO_TS\VTS_01_1.VOB’ (VTSTT_VOBS), location={undefined}, size=1.00 GB (1,073,328,128 bytes)
[12:43:47] DVDEngine ..File: ‘VIDEO_TS\VTS_01_0.BUP’ (VTSI), location={undefined}, size=34.0 KB (34,816 bytes)
[12:43:47] DVDEngine **END: _DVDVideo – Fill FileSystemDescContainer
[12:43:47] DVDEngine END: IDVDVideoSessionImpl – GetDiscContent
[12:43:47] DVDEngine BEGIN: IDVDSessionBaseImpl – RegisterCallback
[12:43:47] DVDEngine ..Session callback unregistered…
[12:43:47] DVDEngine END: IDVDSessionBaseImpl – RegisterCallback
[12:43:48] NeroVision Process information:
[12:43:48] NeroVision ——————–
[12:43:48] NeroVision Address Version Module name
[12:43:48] NeroVision —————————————————–
[12:43:48] NeroVision 0×00330000 3.1.0.25 C:\Program Files\Ahead\NeroVision\GCLib.dll
[12:43:48] NeroVision 0×003C0000 3.1.0.25 C:\Program Files\Ahead\NeroVision\GDIPainter.dll
[12:43:48] NeroVision 0×003D0000 3.1.0.25 C:\Program Files\Ahead\NeroVision\AMCLib.dll
[12:43:48] NeroVision 0×003E0000 3.1.0.25 C:\Program Files\Ahead\NeroVision\AMCDOM.dll
[12:43:48] NeroVision 0×00400000 3.1.0.25 C:\Program Files\Ahead\NeroVision\NeroVision.exe
[12:43:48] NeroVision 0×00470000 3.1.0.25 C:\Program Files\Ahead\NeroVision\AMCUIBase.dll
[12:43:48] NeroVision 0×006A0000 3.1.0.25 C:\Program Files\Ahead\NeroVision\GCCore.dll
[12:43:48] NeroVision 0×00720000 3.1.0.25 C:\Program Files\Ahead\NeroVision\AMCDocBase.dll
[12:43:48] NeroVision 0×008D0000 3.1.0.25 C:\Program Files\Ahead\NeroVision\MMTools.dll
[12:43:48] NeroVision 0×01070000 8.1.126.0 C:\Program Files\McAfee\MSK\mskoeplg.dll
[12:43:48] NeroVision 0×01260000 1.2.12.2315 C:\Program Files\Common Files\Ahead\Lib\AdvrCntr.dll
[12:43:48] NeroVision 0×01500000 7.0.46.0 C:\WINDOWS\system32\IMAGXPR7.DLL
[12:43:48] NeroVision 0×01620000 7.0.476.0 C:\windows\system32\ImagXR7.dll
[12:43:48] NeroVision 0×01780000 7.0.46.0 C:\windows\system32\ImagX7.dll
[12:43:48] NeroVision 0×01920000 3.1.0.25 C:\Program Files\Ahead\NeroVision\GCFX.DLL
[12:43:48] NeroVision 0×01DB0000 1.1.0.865 C:\Program Files\Ahead\NeroVision\NeVideoFX.dll
[12:43:48] NeroVision 0×02620000 1.0.2.0 C:\Program Files\Ahead\NeroVision\NeVideoFXW.dll
[12:43:48] NeroVision 0×02BC0000 3.1.0.25 C:\Program Files\Ahead\NeroVision\GCHW.DLL
[12:43:48] NeroVision 0×03530000 6.6.0.19 C:\Program Files\Ahead\Nero\NeroAPI.dll
[12:43:48] NeroVision 0×04160000 6.6.0.19 C:\Program Files\Ahead\Nero\NeroErr.dll
[12:43:48] NeroVision 0×041B0000 2.0.2.18 C:\Program Files\Ahead\Nero\NeRSDB.dll
[12:43:48] NeroVision 0×04460000 1.0.0.17 C:\Program Files\Common Files\Ahead\Lib\DriveLocker.dll
[12:43:48] NeroVision 0×04B00000 3.1.0.25 C:\Program Files\Ahead\NeroVision\ExpressUI.dll
[12:43:48] NeroVision 0×04EF0000 3.1.0.25 C:\Program Files\Ahead\NeroVision\GCHWCfg.dll
[12:43:48] NeroVision 0×04F10000 3.1.0.25 C:\Program Files\Ahead\NeroVision\GCLocale.dll
[12:43:48] NeroVision 0×04F20000 3.1.0.25 C:\Program Files\Ahead\NeroVision\ExpressDoc.dll
[12:43:48] NeroVision 0×057C0000 3.1.0.25 C:\Program Files\Ahead\NeroVision\DVDUI.dll
[12:43:48] NeroVision 0×057F0000 3.1.0.25 C:\Program Files\Ahead\NeroVision\DVDDoc.dll
[12:43:48] NeroVision 0×05890000 3.1.0.11 C:\Program Files\Ahead\NeroVision\DVDEngine.dll
[12:43:48] NeroVision 0×059F0000 2.0.0.38 C:\Program Files\Ahead\NeroVision\NeroMediaCon.DLL
[12:43:48] NeroVision 0×05F40000 1.0.0.4 C:\Program Files\Common Files\Ahead\DSFilter\NeResize.ax
[12:43:48] NeroVision 0×05F50000 1.0.0.77 C:\Program Files\Common Files\Ahead\DSFilter\NeroVideoProc.ax
[12:43:48] NeroVision 0×05F80000 2.0.0.2 C:\Program Files\Common Files\Ahead\DSFilter\NeroFormatConv.ax
[12:43:48] NeroVision 0×06000000 3.1.0.25 C:\Program Files\Ahead\NeroVision\GCCapture.ax
[12:43:48] NeroVision 0×06040000 3.1.0.25 C:\Program Files\Ahead\NeroVision\GCFilter.ax
[12:43:48] NeroVision 0×06100000 3.525.1117.0 C:\windows\system32\odbcint.dll
[12:43:48] NeroVision 0×061A0000 1.0.3.4 C:\Program Files\Common Files\Ahead\DSFilter\NeSplitter.ax
[12:43:48] NeroVision 0×07160000 5.2.5721.5145 C:\windows\system32\Audiodev.dll
[12:43:48] NeroVision 0×077C0000 2.0.2.48 C:\Program Files\Common Files\Ahead\DSFilter\NeVideo.ax
[12:43:48] NeroVision 0×07C80000 1.2.0.6 C:\Program Files\Common Files\Ahead\DSFilter\NeAudioConv.ax
[12:43:48] NeroVision 0×10000000 6.6.0.0 C:\Program Files\Ahead\NeroVision\HDCC.dll
[12:43:48] NeroVision 0×10930000 5.2.5721.5145 C:\WINDOWS\system32\PortableDeviceApi.dll
[12:43:48] NeroVision 0×11C70000 11.0.5721.5145 C:\windows\system32\WMASF.DLL
[12:43:48] NeroVision 0×13000000 2.0.1.74 C:\Program Files\Ahead\Nero\WNASPI32.Dll
[12:43:48] NeroVision 0×15000000 6.6.0.19 C:\Program Files\Ahead\Nero\image.dll
[12:43:48] NeroVision 0×15110000 11.0.5721.5145 C:\windows\system32\WMVCore.DLL
[12:43:48] NeroVision 0×16210000 5.2.5721.5145 C:\windows\system32\wpdshext.dll
[12:43:48] NeroVision 0×19000000 6.6.0.19 C:\Program Files\Ahead\Nero\MMC.DLL
[12:43:48] NeroVision 0×1C400000 1.4.90.5 C:\Program Files\Common Files\Ahead\DSFilter\NeAudio.ax
[12:43:48] NeroVision 0×20000000 5.1.2600.2180 C:\windows\system32\xpsp2res.dll
[12:43:48] NeroVision 0×21000000 6.6.0.19 C:\Program Files\Ahead\Nero\neroscsi.dll
[12:43:48] NeroVision 0×22000000 6.6.0.19 C:\Program Files\Ahead\Nero\newtrf.dll
[12:43:48] NeroVision 0×4EC50000 5.1.3102.2180 C:\windows\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.2600.2180_x-ww_522f9f82\gdiplus.dll
[12:43:48] NeroVision 0×4F680000 5.3.2600.2180 C:\WINDOWS\system32\dxdiagn.dll
[12:43:48] NeroVision 0×58390000 1.0.0.0 C:\WINDOWS\system32\l3codeca.acm
[12:43:48] NeroVision 0×5AD70000 6.0.2900.2523 C:\windows\system32\UxTheme.dll
[12:43:48] NeroVision 0×5B860000 5.1.2600.2976 C:\windows\system32\NETAPI32.dll
[12:43:48] NeroVision 0×5CAD0000 6.0.2900.2180 C:\windows\system32\shmedia.dll
[12:43:48] NeroVision 0×5EDD0000 5.1.2600.2180 C:\windows\system32\OLEPRO32.DLL
[12:43:48] NeroVision 0×60CA0000 6.5.2600.2180 C:\WINDOWS\system32\qedit.dll
[12:43:48] NeroVision 0×71AA0000 5.1.2600.2180 C:\windows\system32\WS2HELP.dll
[12:43:48] NeroVision 0×71AB0000 5.1.2600.2180 C:\windows\system32\WS2_32.dll
[12:43:48] NeroVision 0×71AD0000 5.1.2600.2180 C:\windows\system32\wsock32.dll
[12:43:48] NeroVision 0×71B20000 5.1.2600.2180 C:\windows\system32\MPR.dll
[12:43:48] NeroVision 0×71BF0000 5.1.2600.2180 C:\windows\System32\SAMLIB.dll
[12:43:48] NeroVision 0×71C10000 5.1.2600.2180 C:\windows\System32\ntlanman.dll
[12:43:48] NeroVision 0×71C80000 5.1.2600.2180 C:\windows\System32\NETRAP.dll
[12:43:48] NeroVision 0×71C90000 5.1.2600.2180 C:\windows\System32\NETUI1.dll
[12:43:48] NeroVision 0×71CD0000 5.1.2600.2180 C:\windows\System32\NETUI0.dll
[12:43:48] NeroVision 0×72D10000 5.1.2600.0 C:\windows\system32\msacm32.drv
[12:43:48] NeroVision 0×72D20000 5.1.2600.2180 C:\windows\system32\wdmaud.drv
[12:43:48] NeroVision 0×73000000 5.1.2600.2180 C:\windows\system32\WINSPOOL.DRV
[12:43:48] NeroVision 0×732E0000 5.1.2600.0 C:\windows\system32\RICHED32.DLL
[12:43:48] NeroVision 0×736B0000 6.5.2600.2180 C:\windows\system32\msdmo.dll
[12:43:48] NeroVision 0×73760000 5.3.2600.2180 C:\windows\system32\DDRAW.dll
[12:43:48] NeroVision 0×73940000 5.3.2600.2180 C:\windows\system32\D3DIM700.DLL
[12:43:48] NeroVision 0×73B30000 5.1.2600.2709 C:\windows\system32\mscms.dll
[12:43:48] NeroVision 0×73B50000 5.1.2600.2180 C:\windows\system32\AVIFIL32.dll
[12:43:48] NeroVision 0×73BC0000 5.1.2600.2180 C:\windows\system32\DCIMAN32.dll
[12:43:48] NeroVision 0×73D70000 6.0.2900.2180 C:\WINDOWS\system32\shgina.dll
[12:43:48] NeroVision 0×73DD0000 6.2.4.0 C:\windows\system32\MFC42.DLL
[12:43:48] NeroVision 0×73EE0000 5.3.2600.2180 C:\windows\system32\KsUser.dll
[12:43:48] NeroVision 0×73F10000 5.3.2600.2180 C:\windows\system32\dsound.dll
[12:43:48] NeroVision 0×74320000 3.525.1117.0 C:\windows\system32\ODBC32.dll
[12:43:48] NeroVision 0×74810000 6.5.2600.2749 C:\windows\system32\QUARTZ.dll
[12:43:48] NeroVision 0×74980000 8.70.1113.0 C:\windows\system32\msxml3.dll
[12:43:48] NeroVision 0×74AD0000 6.0.2900.2180 C:\windows\system32\POWRPROF.dll
[12:43:48] NeroVision 0×74D30000 5.1.2600.0 C:\windows\system32\oledlg.dll
[12:43:48] NeroVision 0×74E30000 5.0.0.0 C:\windows\system32\RICHED20.dll
[12:43:48] NeroVision 0×74ED0000 5.1.2600.2180 C:\WINDOWS\system32\wbem\wbemsvc.dll
[12:43:48] NeroVision 0×74EF0000 5.1.2600.2180 C:\WINDOWS\system32\wbem\wbemprox.dll
[12:43:48] NeroVision 0×75290000 5.1.2600.2180 C:\WINDOWS\system32\wbem\wbemcomn.dll
[12:43:48] NeroVision 0×754D0000 5.131.2600.2180 C:\windows\system32\CRYPTUI.dll
[12:43:48] NeroVision 0×75690000 5.1.2600.2180 C:\WINDOWS\system32\wbem\fastprox.dll
[12:43:48] NeroVision 0×757F0000 6.5.2600.2180 C:\WINDOWS\system32\qcap.dll
[12:43:48] NeroVision 0×75970000 5.1.2600.2603 C:\windows\system32\MSGINA.dll
[12:43:48] NeroVision 0×75A70000 5.1.2600.2180 C:\windows\system32\MSVFW32.dll
[12:43:48] NeroVision 0×75F40000 6.5.2600.2180 C:\WINDOWS\system32\devenum.dll
[12:43:48] NeroVision 0×75F60000 5.1.2600.2180 C:\windows\System32\drprov.dll
[12:43:48] NeroVision 0×75F70000 5.1.2600.2180 C:\windows\System32\davclnt.dll
[12:43:48] NeroVision 0×75F80000 6.0.2900.3020 C:\windows\system32\browseui.dll
[12:43:48] NeroVision 0×76360000 5.1.2600.2180 C:\windows\system32\WINSTA.dll
[12:43:48] NeroVision 0×76380000 5.1.2600.2180 C:\windows\system32\MSIMG32.dll
[12:43:48] NeroVision 0×763B0000 6.0.2900.2180 C:\windows\system32\comdlg32.dll
[12:43:48] NeroVision 0×76600000 5.1.2600.2180 C:\windows\System32\CSCDLL.dll
[12:43:48] NeroVision 0×767A0000 5.1.2600.2180 C:\windows\system32\NTDSAPI.dll
[12:43:48] NeroVision 0×76990000 5.1.2600.2180 C:\windows\system32\ntshrui.dll
[12:43:48] NeroVision 0×769C0000 5.1.2600.2180 C:\windows\system32\USERENV.dll
[12:43:48] NeroVision 0×76B20000 6.5.0.2284 C:\windows\system32\ATL.DLL
[12:43:48] NeroVision 0×76B40000 5.1.2600.2180 C:\windows\system32\WINMM.dll
[12:43:48] NeroVision 0×76C30000 5.131.2600.2180 C:\windows\system32\WINTRUST.dll
[12:43:48] NeroVision 0×76C90000 5.1.2600.2180 C:\windows\system32\IMAGEHLP.dll
[12:43:48] NeroVision 0×76F20000 5.1.2600.2938 C:\windows\system32\DNSAPI.dll
[12:43:48] NeroVision 0×76F60000 5.1.2600.2180 C:\windows\system32\WLDAP32.dll
[12:43:48] NeroVision 0×76FD0000 3.0.0.4414 C:\windows\system32\CLBCATQ.DLL
[12:43:48] NeroVision 0×77050000 3.0.0.4414 C:\windows\system32\COMRes.dll
[12:43:48] NeroVision 0×77120000 5.1.2600.2180 C:\windows\system32\OLEAUT32.dll
[12:43:48] NeroVision 0×771B0000 6.0.2900.3020 C:\windows\system32\WININET.dll
[12:43:48] NeroVision 0×773D0000 6.0.2900.2982 C:\windows\WinSxS\X86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\COMCTL32.dll
[12:43:48] NeroVision 0×774E0000 5.1.2600.2726 C:\windows\system32\ole32.dll
[12:43:48] NeroVision 0×77760000 6.0.2900.3020 C:\windows\system32\shdocvw.dll
[12:43:48] NeroVision 0×77920000 5.1.2600.2180 C:\windows\system32\SETUPAPI.dll
[12:43:48] NeroVision 0×77A20000 5.1.2600.2180 C:\windows\System32\cscui.dll
[12:43:48] NeroVision 0×77A80000 5.131.2600.2180 C:\windows\system32\CRYPT32.dll
[12:43:48] NeroVision 0×77B20000 5.1.2600.2180 C:\windows\system32\MSASN1.dll
[12:43:48] NeroVision 0×77B40000 5.1.2600.2180 C:\windows\system32\appHelp.dll
[12:43:48] NeroVision 0×77BD0000 5.1.2600.2180 C:\windows\system32\midimap.dll
[12:43:48] NeroVision 0×77BE0000 5.1.2600.2180 C:\windows\system32\MSACM32.dll
[12:43:48] NeroVision 0×77C00000 5.1.2600.2180 C:\windows\system32\VERSION.dll
[12:43:48] NeroVision 0×77C10000 6.1.8638.2180 C:\windows\system32\msvcrt.dll
[12:43:48] NeroVision 0×77D40000 5.1.2600.2622 C:\windows\system32\USER32.dll
[12:43:48] NeroVision 0×77DD0000 5.1.2600.2180 C:\windows\system32\ADVAPI32.dll
[12:43:48] NeroVision 0×77E70000 5.1.2600.2794 C:\windows\system32\RPCRT4.dll
[12:43:48] NeroVision 0×77F10000 5.1.2600.2818 C:\windows\system32\GDI32.dll
[12:43:48] NeroVision 0×77F60000 6.0.2900.3020 C:\windows\system32\SHLWAPI.dll
[12:43:48] NeroVision 0×77FE0000 5.1.2600.2180 C:\windows\system32\Secur32.dll
[12:43:48] NeroVision 0×780C0000 6.0.8972.0 C:\Program Files\Ahead\NeroVision\MSVCP60.dll
[12:43:48] NeroVision 0×7C800000 5.1.2600.2945 C:\windows\system32\kernel32.dll
[12:43:48] NeroVision 0×7C900000 5.1.2600.2180 C:\windows\system32\ntdll.dll
[12:43:48] NeroVision 0×7C9C0000 6.0.2900.2951 C:\windows\system32\SHELL32.dll
[12:43:48] NeroVision Book type: ‘Automatic’
[12:43:48] NeroVision Properties of your project:
[12:43:48] NeroVision Aspect ratio: Automatic
[12:43:48] NeroVision Video mode: PAL
[12:43:48] NeroVision Quality: Automatic
[12:43:48] NeroVision Used disc space: 1.02 GB
[12:43:48] NeroVision Your project contains the following:
[12:43:48] NeroVision Sample format: Automatic
[12:43:48] NeroVision Audio format: Stereo
[12:43:48] NeroVision Encoding mode: Fast Encoding (1-Pass)
[12:43:48] NeroVision Number of titles: 1
[12:43:48] NeroVision 1. VTS_01_3 (Video Title, 0h 36m 05s)
[12:43:48] NeroVision Video mode: PAL
[12:43:48] NeroVision Aspect ratio: 16:9
[12:43:48] NeroVision Quality: Standard play (5073 kbps)
[12:43:48] NeroVision Resolution: 720 x 576 (CCIR-601 D1)
[12:43:48] NeroVision Audio SmartEncoding ratio: 0.0 %
[12:43:48] NeroVision Video SmartEncoding ratio: 100.0 %1A20-030E-0300-2274-3112-5835
[12:43:48] NeroVision Windows XP 5.1
[12:43:48] NeroVision IA32
[12:43:48] NeroVision WinAspi: -
[12:43:48] NeroVision ahead WinASPI: File ‘C:\Program Files\Ahead\Nero\Wnaspi32.dll’: Ver=2.0.1.74, size=164112 bytes, created 26/10/2004 17:35:32
[12:43:48] NeroVision Nero API version: 6.6.0.19
[12:43:48] NeroVision Using interface version: 6.6.0.14
[12:43:48] NeroVision Installed in: C:\Program Files\Ahead\Nero\
[12:43:48] NeroVision Application: ahead\NeroVision
[12:43:48] NeroVision Internal Version: 6, 6, 0, 19b
[12:43:48] NeroVision === Scsi-Device-Map ===
[12:43:48] NeroVision DiskPeripheral : FUJITSU MHV2120BH atapi Port 0 ID 0 DMA: On
[12:43:48] NeroVision CdRomPeripheral : HL-DT-ST DVD-RW GWA-4082N atapi Port 3 ID 0 DMA: On
[12:43:48] NeroVision === CDRom-Device-Map ===
[12:43:48] NeroVision HL-DT-ST DVD-RW GWA-4082N D: CDRom0
[12:43:48] NeroVision =======================
[12:43:48] NeroVision AutoRun : 1
[12:43:48] NeroVision Excluded drive IDs:
[12:43:48] NeroVision WriteBufferSize: 83886080 (0) Byte
[12:43:48] NeroVision ShowDrvBufStat : 0
[12:43:48] NeroVision BUFE : 0
[12:43:48] NeroVision Physical memory : 1918MB (1964132kB)
[12:43:48] NeroVision Free physical memory: 1379MB (1412132kB)
[12:43:48] NeroVision Memory in use : 28 %
[12:43:48] NeroVision Uncached PFiles: 0×0
[12:43:48] NeroVision Use Inquiry : 1
[12:43:48] NeroVision Global Bus Type: default (0)
[12:43:48] NeroVision Check supported media : Disabled (0)
[12:43:48] NeroVision 14.1.2007
[12:43:48] NeroVision NeroAPI
[12:43:48] NeroVision Existing drivers:
[12:43:48] NeroVision Registry Keys:
[12:43:48] NeroVision HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon\AllocateCDROMs : 0 (Security Option)

what kind of DVD is it? copyed or from the video store?

if it’s copyed i hav no idea but it it’s from the store i suggest down loading this…

http://www.softpedia.com/progDownload/DVD-Shrink-Download-4128.html

SIM card microSD card reader Windows, MAC, Linux compatible

Features SIM card reader: Read, edit, backup telephone directory and SMS messages from SIM card to PC and vice versa Software compatible with: Windows 2000/XP/Me/Vista, Mac 9.2, Mac OSX, Linux RedHat, and Linux Fedora microSD card reader: reads directly from the microSD memory card with no adapter needed USB 2.0 compatible Keychain attachment included

Read the rest of this entry »