congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
Media.nativeAddSlave
Code IndexAdd Tabnine to your IDE (free)

How to use
nativeAddSlave
method
in
org.videolan.libvlc.Media

Best Java code snippets using org.videolan.libvlc.Media.nativeAddSlave (Showing top 5 results out of 315)

origin: mrmaffen/vlc-android-sdk

/**
 * Add a slave to the current media.
 *
 * A slave is an external input source that may contains an additional subtitle
 * track (like a .srt) or an additional audio track (like a .ac3).
 *
 * This function must be called before the media is parsed (via {@link #parseAsync(int)}} or
 * before the media is played (via {@link MediaPlayer#play()})
 */
public void addSlave(Slave slave) {
  nativeAddSlave(slave.type, slave.priority, slave.uri);
}
origin: wobiancao/RtspServerAndVlcPlay

/**
 * Add a slave to the current media.
 *
 * A slave is an external input source that may contains an additional subtitle
 * track (like a .srt) or an additional audio track (like a .ac3).
 *
 * This function must be called before the media is parsed (via {@link #parseAsync(int)}} or
 * before the media is played (via {@link MediaPlayer#play()})
 */
public void addSlave(Slave slave) {
  nativeAddSlave(slave.type, slave.priority, slave.uri);
}
origin: ymcao/YaPlayer

/**
 * Add a slave to the current media.
 *
 * A slave is an external input source that may contains an additional subtitle
 * track (like a .srt) or an additional audio track (like a .ac3).
 *
 * This function must be called before the media is parsed (via {@link #parseAsync(int)}} or
 * before the media is played (via {@link MediaPlayer#play()})
 */
public void addSlave(Slave slave) {
  nativeAddSlave(slave.type, slave.priority, slave.uri);
}
origin: pedroSG94/vlc-example-streamplayer

/**
 * Add a slave to the current media.
 *
 * A slave is an external input source that may contains an additional subtitle
 * track (like a .srt) or an additional audio track (like a .ac3).
 *
 * This function must be called before the media is parsed (via {@link #parseAsync(int)}} or
 * before the media is played (via {@link MediaPlayer#play()})
 */
public void addSlave(Slave slave) {
  nativeAddSlave(slave.type, slave.priority, slave.uri);
}
origin: Shirlman/YiPlayer

/**
 * Add a slave to the current media.
 *
 * A slave is an external input source that may contains an additional subtitle
 * track (like a .srt) or an additional audio track (like a .ac3).
 *
 * This function must be called before the media is parsed (via {@link #parseAsync(int)}} or
 * before the media is played (via {@link MediaPlayer#play()})
 */
public void addSlave(Slave slave) {
  nativeAddSlave(slave.type, slave.priority, slave.uri);
}
org.videolan.libvlcMedianativeAddSlave

Popular methods of Media

  • <init>
  • addOption
    Add an option to this Media. This Media should be alive (not released).
  • release
  • setHWDecoderEnabled
    Add or remove hw acceleration media options
  • parse
    Parse the media synchronously with a flag. This Media should be alive (not released).
  • parseAsync
    Parse the media asynchronously with a flag. This Media should be alive (not released). To track when
  • getMediaCodecModule
  • getTrack
    Get a Track The Track can be casted to AudioTrack, VideoTrack or SubtitleTrack in function of the Tr
  • getTrackCount
    Get the Track count.
  • getTracks
  • isReleased
  • nativeAddOption
  • isReleased,
  • nativeAddOption,
  • nativeClearSlaves,
  • nativeGetDuration,
  • nativeGetMeta,
  • nativeGetMrl,
  • nativeGetSlaves,
  • nativeGetState,
  • nativeGetTracks

Popular in Java

  • Creating JSON documents from java classes using gson
  • putExtra (Intent)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now