Some Questions

Started by Mulder3, 07. Feb 2008, 02:09

previous topic - next topic
Go Down

ApexDE


Can anyone try this modified tv2client?

I modified stub method SetMacrovision(bool enable) to always set the argument of TV2Engine_MacrovisionEnable() to false... It should disable Macrovison...


REMOVED COPYRIGHT-PROTECTED FILE


Too Bad this file got removed. I am really interested in this, as my TV f*cks up on the damn Macrovision. It shows a green bar on top of the picture. What bytes do i need to change?

Thanks!

warrmr



Can anyone try this modified tv2client?

I modified stub method SetMacrovision(bool enable) to always set the argument of TV2Engine_MacrovisionEnable() to false... It should disable Macrovison...


REMOVED COPYRIGHT-PROTECTED FILE


Too Bad this file got removed. I am really interested in this, as my TV f*cks up on the damn Macrovision. It shows a green bar on top of the picture. What bytes do i need to change?

Thanks!




You would need to edit this section of code to set the enable flag to false.

Code: [Select]

        public void SetMacrovision(bool enable)
        {
            TV2Engine_MacrovisionEnable(enable);
        }

verg0

#17
16. Dec 2008, 16:00 Last Edit: 16. Dec 2008, 16:05 by verg0
Like this ??


        }

        public static void SetMacrovision(bool enable)
        {
            _engine.SetMacrovision(false); // changed 'enable' to false
        }

PS: Whats this part of code for?

        [DllImport("TV2Engine.dll")]
        private static extern void TV2Engine_MacrovisionEnable([MarshalAs(UnmanagedType.U1)] bool enable);

mce2222

macrovision is disabled using native code (in tv2engine.dll) that directly accesses the hardware. to use the dll from c# you need to declare the DllImport.

the way you changed the setMacroVision method would work, but only if setMacroVision would be called at all...
if I remember correct, it is never called because Macrovision is enabled by default and there is no way to turn it off by configuration.

so to make it work, you need to call the setMacroVision method during init somewhere.

misa_reg

Hello!

I have KISS KMM3010 (T-Home) device, and I would like to copy the recorded videos to my computer.

I try to remote access the device with http or telnet (cehcek the dhcp table), but not response. Do you have any working remote connection?

If i remove the harddisk, and copy the content, the files not playable (encrypted)?

asgard


Hello!

I have KISS KMM3010 (T-Home) device, and I would like to copy the recorded videos to my computer.

I try to remote access the device with http or telnet (cehcek the dhcp table), but not response. Do you have any working remote connection?

Read the tutorial...see the wiki: http://www.t-hack.com/wiki



If i remove the harddisk, and copy the content, the files not playable (encrypted)?

your right, its encrypted...

Go Up