Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Ok, the MRL you have provided us <a href="http://network.absoluteradio.co.uk/core/audio/wmp/live.asx?service=vr" rel="nofollow">http://network.absoluteradio.co.uk/core/audio/wmp/live.asx?service=vr</a> is a MMS server that may pull a ASX (XML) metafile which may contain at least one sub-item. </p> <p><a href="http://all-streaming-media.com/faq/streaming-media/Metafiles-ASX-Advanced-Stream-Redirector.htm" rel="nofollow">http://all-streaming-media.com/faq/streaming-media/Metafiles-ASX-Advanced-Stream-Redirector.htm</a></p> <p>To be able to play this type of streaming media and go through each sub-item, you need to do the following code snippet:</p> <pre><code>VideoPanel.getMediaPlayer().setRepeat(true); VideoPanel.getMediaPlayer().setPlaySubItems(true); VideoPanel.getMediaPlayer().prepareMedia(media, options); try { Thread.sleep(2000); } catch (InterruptedException e) { e.printStackTrace(); } for(String s: VideoPanel.getMediaPlayer().subItems()) System.out.println(s); VideoPanel.getMediaPlayer().play(); </code></pre> <p>For the example MRL above, it will list down all sub-items as follows:</p> <pre><code>http://wms.absoluteradio.co.uk/g1/absoluteradio.co.uk/prerolls/ar_account_1310455302_hi.wma mms://wms.absoluteradio.co.uk/absoluteradio.co.uk/vr_lo?u= http://wms.absoluteradio.co.uk/absoluteradio.co.uk/vr_lo?u= mmsu://wms.absoluteradio.co.uk/absoluteradio.co.uk/vr_lo?u= mmst://wms.absoluteradio.co.uk/absoluteradio.co.uk/vr_lo?u= mms://wms.absoluteradio.co.uk/absoluteradio.co.uk/prerolls/problems_lo.wma </code></pre> <p>To stop playing all of them, set the following code snippet:</p> <pre><code>VideoPanel.getMediaPlayer().setRepeat(false); VideoPanel.getMediaPlayer().setPlaySubItems(false); VideoPanel.getMediaPlayer().stop(); </code></pre> <p>For a better explanation, refer to: <a href="http://code.google.com/p/vlcj/wiki/HowToHandleYouTubeMedia" rel="nofollow">http://code.google.com/p/vlcj/wiki/HowToHandleYouTubeMedia</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload