gpt4 book ai didi

java - 使用 JavaFX 播放 QuickTime 视频

转载 作者:行者123 更新时间:2023-11-29 04:38:30 24 4
gpt4 key购买 nike

我尝试用 JavaFX 打开 MOV 视频文件:

Media media = new Media ("file:/tmp/file.MOV");

但它会抛出一个 MediaException:MEDIA_UNSUPPORTED。

但是,如果我只是将文件扩展名从 .MOV 更改为 .MP4,它就可以完美运行,并且视频播放没有错误。

如何强制 JavaFX 播放我的文件而不必重命名它?

最佳答案

嗯,那两个小时很有趣。干得好!只需确保您有一个零字节的 mp4 文件,就像示例中那样。它的工作原理非常关键。

public class TestFrame extends Application {
public static void main(String[] args) {
launch(args);
}

@Override
public void start(Stage primaryStage) throws Exception {
StackPane root = new StackPane();
File actualFile = new File("shelter.mov");
File emptyfile = new File("blank.mp4");
Media media = new Media(emptyfile.toURI().toString());
copyData(media, actualFile);
MediaPlayer mediaPlayer = null;
try {
mediaPlayer = new MediaPlayer(media);
} catch (Exception e) {
e.printStackTrace();
}
mediaPlayer.setAutoPlay(true);
MediaView mediaView = new MediaView(mediaPlayer);
root.getChildren().add(mediaView);
Scene scene = new Scene(root, 720, 480);
primaryStage.setTitle("Hello World!");
primaryStage.setScene(scene);
primaryStage.show();
}

private void copyData(Media media, File f) {
try {
Field locatorField = media.getClass().getDeclaredField("jfxLocator");
// Inside block credits:
// http://stackoverflow.com/questions/3301635/change-private-static-final-field-using-java-reflection
{
Field modifiersField = Field.class.getDeclaredField("modifiers");
modifiersField.setAccessible(true);
modifiersField.setInt(locatorField, locatorField.getModifiers() & ~Modifier.FINAL);
locatorField.setAccessible(true);
}
CustomLocator customLocator = new CustomLocator(f.toURI());
customLocator.init();
customLocator.hack("video/mp4", 100000, f.toURI());
locatorField.set(media, customLocator);
} catch (NoSuchFieldException | SecurityException | IllegalArgumentException | IllegalAccessException e) {
e.printStackTrace();
} catch (URISyntaxException e) {
e.printStackTrace();
}
}

static class CustomLocator extends Locator {
public CustomLocator(URI uri) throws URISyntaxException {
super(uri);
}

@Override
public void init() {
try {
super.init();
} catch (Exception e) {
}
}

public void hack(String type, long length, URI uri){
this.contentType = type;
this.contentLength = length;
this.uri = uri;
this.cacheMedia();
}
}
}

工作原理:通常情况下,默认的定位器会抛出一个关于内容类型的异常,一切都到此为止。将 Media 的定位器替换为自定义定位器,然后手动设置 contentType、长度和 uri 使其可以无声播放。

关于java - 使用 JavaFX 播放 QuickTime 视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40249034/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com