Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. |
|
|
Thread Tools | Search this Thread | Display Modes |
15th February 2007, 18:42 | #1 | Link |
Registered User
Join Date: May 2004
Posts: 25
|
Maybe is possible to remove area code check from bdjava blackups
Hello everybody, I've between my hand a Java BluRay Title.
I notive that the java structure is similar to this: PlayMenuMain.class 00001.jar 00002.jar 00003.jar Every jar is a language: inside 00001 i have menu in english, inside 00002 I have menu in spanish etc etc.. The interest is in "PlayMenuMain.class", that is the first file the player load: if i decompile this java file with DJ Java Decompiler I have inside the code: Code:
public void startXlet() throws XletStateChangeException { Debug.info(this, "startXlet"); System.out.println("*************************************"); System.out.println("***** *****"); System.out.println("***** WEI V7 ENG *****"); System.out.println("***** *****"); System.out.println("*************************************"); if(!PlayerConfiguration.isRegionCodeMatch(2)) { (new InitialisePlayable(9, null)).play(); return; } (new InitialisePlayable(8, null)).play(); setScreenResolution(1920, 1080); timer = new Timer(); scene = HSceneFactory.getInstance().getDefaultHScene(); scene.setVisible(true); scene.setBackground(new Color(0, 0, 0, 0)); sceneGraphics = (Graphics2D)scene.getGraphics(); sceneGraphics.setComposite(AlphaComposite.Src); etc etc etc ... This is the region code check. If you delete the check the disc doesn't check if the player has the right zone. So you can have codefree bluray backups. |
Thread Tools | Search this Thread |
Display Modes | |
|
|