(String resource, String name)
| 277 | } |
| 278 | |
| 279 | @SuppressWarnings("unused") |
| 280 | private void describeVideo(String resource, String name) throws IOException { |
| 281 | VideoReader vr = new VideoReader(resource); |
| 282 | //List<Map<String, Object>> contents = vr.getContents(true); |
| 283 | System.out.println("codec = " + vr.getCodec()); |
| 284 | main.setTitle(name + " " + vr.getFileType() + "|" + vr.getCodec()); |
| 285 | } |
| 286 | |
| 287 | private void showProperty(String key) { |
| 288 | System.out.println(key + "=" + HTML5Video.getProperty(jsvideo, key)); |
nothing calls this directly
no test coverage detected