VLC如何在与选项一起使用时应用给定内容的自动循环?以下操作无法循环。
private void start() {
frame.setVisible(true);
String mrl = "file:///home/sun/Downloads/t1.avi";
// fails
// String[] options = {
// "--loops",
// "--repeat",};
///Applications/VLC.app/Contents/MacOS/VLC -vv qtcapture:// --sout='#transcode{vcodec=h264,vb=768,fps=25.0,scale=1}:standard{access=udp,mux=ts{dts-delay=9000},dst=239.0.0.5}'
//mediaPlayer.playMedia(mrl, options);
//String[] options = {"--loops"};
// no luck fails too
mediaPlayer.playMedia(mrl,
":sout ':standard{loop}'");
}
如果您使用VLCJ
,我建议您调用mediaPlayer.setRepeat(true);
。它在我的VLCJ项目中工作如下:
mediaPlayer.setRepeat(true);
mediaPlayer.setPlaySubItems(true);
mediaPlayer.playMedia(mrl, options);
用JRE 1.6 32-bit
:测试
VLCJ 1.2.0
+VLC引擎libVLC 1.1.11
(Windows 32位)VLCJ 2.1.0-SNAPSHOT
+夜间构建VLC引擎libVLC 2.1.0
(Windows 32位)
我相信你有错别字;文档中的选项是"--loop"。
以下是所需的全部内容:
vlc --loop video.mp4
要从Java实现这一点,您可以:
public class Player {
public static final void main(String args[]) {
try {
Runtime.getRuntime().exec("vlc --loop "+args[0]);
} catch (Exception e) {
System.out.println(e.toString());
}
}
}
然后:
java Player filename.mp4
在最新版本中,不需要复杂的脚本。单击"工具">"首选项"。查看界面的左下角,"显示设置"单选按钮应设置为"全部"。看左边的面板,点击"播放列表"。勾选"全部重复"复选框。