bst-player,GWT,媒体容器无法完全显示

时间:2013-07-12 02:37:36

标签: gwt web

this是我用来显示视频和音频的工具。 我使用的是bst-player-api-2.0.3.jar和core-player-provider-2.0.jar

this是我使用的代码。

它显示如下(添加到父面板后,它可以播放声音):

enter image description here

我试过这些代码:

player.setSize("100%", "100%");
panel.setHeight("1000px");
player.setSize("300px", "300px");

我也尝试:(整个代码)

   SimplePanel panel = new SimplePanel();
    panel.setSize("1000px", "1000px");
    AbstractMediaPlayer player = null;
        try {
            player = new WinMediaPlayer("C:/Documents and Settings/dell/Application Data/Tencent/QQMusic/Cache/WhirlCache/转身之间.mp3", true, "300px", "400px");
            player.setResizeToVideoSize(true);
            panel.setWidget(player);
        } catch (PluginVersionException e) {
            panel.setWidget(new HTML(
                    ".. some nice message telling the user to download plugin first .."));
        } catch (PluginNotFoundException e) {
            panel.setWidget(new HTML(
                    ".. another nice message telling the user to download plugin.."));
        }

         add(panel);

1 个答案:

答案 0 :(得分:0)

我还没有解决我的issue,但是我可以指导你做我做的所有事情吗,确保你使用WinMediaPlayer工作* .wma视频和正确的位置,测试它使用一些爬行应用程序(我使用wget),通过更改面板而不是播放器来更改视频窗口小部件的大小。