Method New initializes the MediaInfo handle @throws NativeException JNative Exception
()
| 81 | * @throws NativeException JNative Exception |
| 82 | */ |
| 83 | private void New() throws NativeException, Exception |
| 84 | { |
| 85 | /* Getting the handle */ |
| 86 | new_jnative = new JNative(libraryName, "MediaInfoA_New"); |
| 87 | new_jnative.setRetVal(Type.INT); |
| 88 | new_jnative.invoke(); |
| 89 | handle = new_jnative.getRetVal(); |
| 90 | Option("CharSet", "UTF-8"); |
| 91 | } |
| 92 | |
| 93 | |
| 94 | /** |