Package com.arthenica.ffmpegkit
Class MediaInformationSession
- java.lang.Object
-
- com.arthenica.ffmpegkit.AbstractSession
-
- com.arthenica.ffmpegkit.MediaInformationSession
-
- All Implemented Interfaces:
Session
public class MediaInformationSession extends AbstractSession implements Session
A custom FFprobe session, which produces a
MediaInformation
object using the FFprobe output.
-
-
Field Summary
-
Fields inherited from class com.arthenica.ffmpegkit.AbstractSession
arguments, createTime, DEFAULT_TIMEOUT_FOR_ASYNCHRONOUS_MESSAGES_IN_TRANSMIT, endTime, failStackTrace, future, logCallback, logRedirectionStrategy, logs, logsLock, returnCode, sessionId, sessionIdGenerator, startTime, state
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MediaInformationSession
create(java.lang.String[] arguments)
Creates a new media information session.static MediaInformationSession
create(java.lang.String[] arguments, MediaInformationSessionCompleteCallback completeCallback)
Creates a new media information session.static MediaInformationSession
create(java.lang.String[] arguments, MediaInformationSessionCompleteCallback completeCallback, LogCallback logCallback)
Creates a new media information session.MediaInformationSessionCompleteCallback
getCompleteCallback()
Returns the session specific complete callback.MediaInformation
getMediaInformation()
Returns the media information extracted in this session.boolean
isFFmpeg()
Returns whether it is anFFmpeg
session or not.boolean
isFFprobe()
Returns whether it is anFFprobe
session or not.boolean
isMediaInformation()
Returns whether it is aMediaInformation
session or not.void
setMediaInformation(MediaInformation mediaInformation)
Sets the media information extracted in this session.java.lang.String
toString()
-
Methods inherited from class com.arthenica.ffmpegkit.AbstractSession
addLog, cancel, getAllLogs, getAllLogs, getAllLogsAsString, getAllLogsAsString, getArguments, getCommand, getCreateTime, getDuration, getEndTime, getFailStackTrace, getFuture, getLogCallback, getLogRedirectionStrategy, getLogs, getLogsAsString, getOutput, getReturnCode, getSessionId, getStartTime, getState, thereAreAsynchronousMessagesInTransmit, waitForAsynchronousMessagesInTransmit
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.arthenica.ffmpegkit.Session
addLog, cancel, getAllLogs, getAllLogs, getAllLogsAsString, getAllLogsAsString, getArguments, getCommand, getCreateTime, getDuration, getEndTime, getFailStackTrace, getFuture, getLogCallback, getLogRedirectionStrategy, getLogs, getLogsAsString, getOutput, getReturnCode, getSessionId, getStartTime, getState, thereAreAsynchronousMessagesInTransmit
-
-
-
-
Method Detail
-
create
public static MediaInformationSession create(java.lang.String[] arguments)
Creates a new media information session.- Parameters:
arguments
- command arguments- Returns:
- created session
-
create
public static MediaInformationSession create(java.lang.String[] arguments, MediaInformationSessionCompleteCallback completeCallback)
Creates a new media information session.- Parameters:
arguments
- command argumentscompleteCallback
- session specific complete callback- Returns:
- created session
-
create
public static MediaInformationSession create(java.lang.String[] arguments, MediaInformationSessionCompleteCallback completeCallback, LogCallback logCallback)
Creates a new media information session.- Parameters:
arguments
- command argumentscompleteCallback
- session specific complete callbacklogCallback
- session specific log callback- Returns:
- created session
-
getMediaInformation
public MediaInformation getMediaInformation()
Returns the media information extracted in this session.- Returns:
- media information extracted or null if the command failed or the output can not be parsed
-
setMediaInformation
public void setMediaInformation(MediaInformation mediaInformation)
Sets the media information extracted in this session.- Parameters:
mediaInformation
- media information extracted
-
getCompleteCallback
public MediaInformationSessionCompleteCallback getCompleteCallback()
Returns the session specific complete callback.- Returns:
- session specific complete callback
-
isFFmpeg
public boolean isFFmpeg()
Description copied from interface:Session
Returns whether it is anFFmpeg
session or not.
-
isFFprobe
public boolean isFFprobe()
Description copied from interface:Session
Returns whether it is anFFprobe
session or not.
-
isMediaInformation
public boolean isMediaInformation()
Description copied from interface:Session
Returns whether it is aMediaInformation
session or not.- Specified by:
isMediaInformation
in interfaceSession
- Returns:
- true if it is a
MediaInformation
session, false otherwise
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-