<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc --> <title>FFprobeKit (FFmpegKit)</title> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="FFprobeKit (FFmpegKit)"; } } catch(err) { } //--> var methods = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9,"i8":9,"i9":9,"i10":9,"i11":9,"i12":9,"i13":9,"i14":9,"i15":9,"i16":9,"i17":9,"i18":9}; var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../com/arthenica/ffmpegkit/package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-all.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../com/arthenica/ffmpegkit/FFmpegSession.html" title="class in com.arthenica.ffmpegkit"><span class="typeNameLink">Prev Class</span></a></li> <li><a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit"><span class="typeNameLink">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?com/arthenica/ffmpegkit/FFprobeKit.html" target="_top">Frames</a></li> <li><a href="FFprobeKit.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary: </li> <li>Nested | </li> <li>Field | </li> <li>Constr | </li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail: </li> <li>Field | </li> <li>Constr | </li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">com.arthenica.ffmpegkit</div> <h2 title="Class FFprobeKit" class="title">Class FFprobeKit</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>com.arthenica.ffmpegkit.FFprobeKit</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="typeNameLabel">FFprobeKit</span> extends java.lang.Object</pre> <div class="block"><p>Main class to run <code>FFprobe</code> commands. Supports executing commands both synchronously and asynchronously. <pre> FFprobeSession session = FFprobeKit.execute("-hide_banner -v error -show_entries format=size -of default=noprint_wrappers=1 file1.mp4"); FFprobeSession asyncSession = FFprobeKit.executeAsync("-hide_banner -v error -show_entries format=size -of default=noprint_wrappers=1 file1.mp4", executeCallback); </pre> <p>Provides overloaded <code>execute</code> methods to define session specific callbacks. <pre> FFprobeSession session = FFprobeKit.executeAsync("-hide_banner -v error -show_entries format=size -of default=noprint_wrappers=1 file1.mp4", executeCallback, logCallback); </pre> <p>It can extract media information for a file or a url, using <a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#getMediaInformation-java.lang.String-"><code>getMediaInformation(String)</code></a> method. <pre> MediaInformationSession session = FFprobeKit.getMediaInformation("file1.mp4"); </pre></div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#execute-java.lang.String-">execute</a></span>(java.lang.String command)</code> <div class="block">Synchronously executes FFprobe command provided.</div> </td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#execute-java.lang.String:A-">execute</a></span>(java.lang.String[] arguments)</code> <div class="block">Synchronously executes FFprobe with arguments provided.</div> </td> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#executeAsync-java.lang.String:A-com.arthenica.ffmpegkit.ExecuteCallback-">executeAsync</a></span>(java.lang.String[] arguments, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback)</code> <div class="block">Asynchronously executes FFprobe with arguments provided.</div> </td> </tr> <tr id="i3" class="rowColor"> <td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#executeAsync-java.lang.String:A-com.arthenica.ffmpegkit.ExecuteCallback-java.util.concurrent.ExecutorService-">executeAsync</a></span>(java.lang.String[] arguments, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, java.util.concurrent.ExecutorService executorService)</code> <div class="block">Asynchronously executes FFprobe with arguments provided.</div> </td> </tr> <tr id="i4" class="altColor"> <td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#executeAsync-java.lang.String:A-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-">executeAsync</a></span>(java.lang.String[] arguments, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, <a href="../../../com/arthenica/ffmpegkit/LogCallback.html" title="interface in com.arthenica.ffmpegkit">LogCallback</a> logCallback)</code> <div class="block">Asynchronously executes FFprobe with arguments provided.</div> </td> </tr> <tr id="i5" class="rowColor"> <td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#executeAsync-java.lang.String:A-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-java.util.concurrent.ExecutorService-">executeAsync</a></span>(java.lang.String[] arguments, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, <a href="../../../com/arthenica/ffmpegkit/LogCallback.html" title="interface in com.arthenica.ffmpegkit">LogCallback</a> logCallback, java.util.concurrent.ExecutorService executorService)</code> <div class="block">Asynchronously executes FFprobe with arguments provided.</div> </td> </tr> <tr id="i6" class="altColor"> <td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#executeAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-">executeAsync</a></span>(java.lang.String command, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback)</code> <div class="block">Asynchronously executes FFprobe command provided.</div> </td> </tr> <tr id="i7" class="rowColor"> <td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#executeAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-java.util.concurrent.ExecutorService-">executeAsync</a></span>(java.lang.String command, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, java.util.concurrent.ExecutorService executorService)</code> <div class="block">Asynchronously executes FFprobe command provided.</div> </td> </tr> <tr id="i8" class="altColor"> <td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#executeAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-">executeAsync</a></span>(java.lang.String command, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, <a href="../../../com/arthenica/ffmpegkit/LogCallback.html" title="interface in com.arthenica.ffmpegkit">LogCallback</a> logCallback)</code> <div class="block">Asynchronously executes FFprobe command provided.</div> </td> </tr> <tr id="i9" class="rowColor"> <td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#executeAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-java.util.concurrent.ExecutorService-">executeAsync</a></span>(java.lang.String command, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, <a href="../../../com/arthenica/ffmpegkit/LogCallback.html" title="interface in com.arthenica.ffmpegkit">LogCallback</a> logCallback, java.util.concurrent.ExecutorService executorService)</code> <div class="block">Asynchronously executes FFprobe command provided.</div> </td> </tr> <tr id="i10" class="altColor"> <td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/MediaInformationSession.html" title="class in com.arthenica.ffmpegkit">MediaInformationSession</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#getMediaInformation-java.lang.String-">getMediaInformation</a></span>(java.lang.String path)</code> <div class="block">Extracts media information for the file specified with path.</div> </td> </tr> <tr id="i11" class="rowColor"> <td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/MediaInformationSession.html" title="class in com.arthenica.ffmpegkit">MediaInformationSession</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#getMediaInformation-java.lang.String-int-">getMediaInformation</a></span>(java.lang.String path, int waitTimeout)</code> <div class="block">Extracts media information for the file specified with path.</div> </td> </tr> <tr id="i12" class="altColor"> <td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/MediaInformationSession.html" title="class in com.arthenica.ffmpegkit">MediaInformationSession</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#getMediaInformationAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-">getMediaInformationAsync</a></span>(java.lang.String path, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback)</code> <div class="block">Extracts media information for the file specified with path asynchronously.</div> </td> </tr> <tr id="i13" class="rowColor"> <td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/MediaInformationSession.html" title="class in com.arthenica.ffmpegkit">MediaInformationSession</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#getMediaInformationAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-java.util.concurrent.ExecutorService-">getMediaInformationAsync</a></span>(java.lang.String path, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, java.util.concurrent.ExecutorService executorService)</code> <div class="block">Extracts media information for the file specified with path asynchronously.</div> </td> </tr> <tr id="i14" class="altColor"> <td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/MediaInformationSession.html" title="class in com.arthenica.ffmpegkit">MediaInformationSession</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#getMediaInformationAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-java.util.concurrent.ExecutorService-int-">getMediaInformationAsync</a></span>(java.lang.String path, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, <a href="../../../com/arthenica/ffmpegkit/LogCallback.html" title="interface in com.arthenica.ffmpegkit">LogCallback</a> logCallback, java.util.concurrent.ExecutorService executorService, int waitTimeout)</code> <div class="block">Extracts media information for the file specified with path asynchronously.</div> </td> </tr> <tr id="i15" class="rowColor"> <td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/MediaInformationSession.html" title="class in com.arthenica.ffmpegkit">MediaInformationSession</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#getMediaInformationAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-int-">getMediaInformationAsync</a></span>(java.lang.String path, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, <a href="../../../com/arthenica/ffmpegkit/LogCallback.html" title="interface in com.arthenica.ffmpegkit">LogCallback</a> logCallback, int waitTimeout)</code> <div class="block">Extracts media information for the file specified with path asynchronously.</div> </td> </tr> <tr id="i16" class="altColor"> <td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/MediaInformationSession.html" title="class in com.arthenica.ffmpegkit">MediaInformationSession</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#getMediaInformationFromCommand-java.lang.String-">getMediaInformationFromCommand</a></span>(java.lang.String command)</code> <div class="block">Extracts media information using the command provided asynchronously.</div> </td> </tr> <tr id="i17" class="rowColor"> <td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/MediaInformationSession.html" title="class in com.arthenica.ffmpegkit">MediaInformationSession</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#getMediaInformationFromCommandAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-int-">getMediaInformationFromCommandAsync</a></span>(java.lang.String command, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, <a href="../../../com/arthenica/ffmpegkit/LogCallback.html" title="interface in com.arthenica.ffmpegkit">LogCallback</a> logCallback, int waitTimeout)</code> <div class="block">Extracts media information using the command provided asynchronously.</div> </td> </tr> <tr id="i18" class="altColor"> <td class="colFirst"><code>static java.util.List<<a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a>></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFprobeKit.html#listSessions--">listSessions</a></span>()</code> <div class="block">Lists all FFprobe sessions in the session history.</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="execute-java.lang.String:A-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>execute</h4> <pre>public static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a> execute(java.lang.String[] arguments)</pre> <div class="block"><p>Synchronously executes FFprobe with arguments provided.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>arguments</code> - FFprobe command options/arguments as string array</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>FFprobe session created for this execution</dd> </dl> </li> </ul> <a name="executeAsync-java.lang.String:A-com.arthenica.ffmpegkit.ExecuteCallback-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>executeAsync</h4> <pre>public static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a> executeAsync(java.lang.String[] arguments, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback)</pre> <div class="block"><p>Asynchronously executes FFprobe with arguments provided.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>arguments</code> - FFprobe command options/arguments as string array</dd> <dd><code>executeCallback</code> - callback that will be called when the execution is completed</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>FFprobe session created for this execution</dd> </dl> </li> </ul> <a name="executeAsync-java.lang.String:A-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>executeAsync</h4> <pre>public static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a> executeAsync(java.lang.String[] arguments, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, <a href="../../../com/arthenica/ffmpegkit/LogCallback.html" title="interface in com.arthenica.ffmpegkit">LogCallback</a> logCallback)</pre> <div class="block"><p>Asynchronously executes FFprobe with arguments provided.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>arguments</code> - FFprobe command options/arguments as string array</dd> <dd><code>executeCallback</code> - callback that will be notified when execution is completed</dd> <dd><code>logCallback</code> - callback that will receive logs</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>FFprobe session created for this execution</dd> </dl> </li> </ul> <a name="executeAsync-java.lang.String:A-com.arthenica.ffmpegkit.ExecuteCallback-java.util.concurrent.ExecutorService-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>executeAsync</h4> <pre>public static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a> executeAsync(java.lang.String[] arguments, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, java.util.concurrent.ExecutorService executorService)</pre> <div class="block"><p>Asynchronously executes FFprobe with arguments provided.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>arguments</code> - FFprobe command options/arguments as string array</dd> <dd><code>executeCallback</code> - callback that will be called when the execution is completed</dd> <dd><code>executorService</code> - executor service that will be used to run this asynchronous operation</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>FFprobe session created for this execution</dd> </dl> </li> </ul> <a name="executeAsync-java.lang.String:A-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-java.util.concurrent.ExecutorService-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>executeAsync</h4> <pre>public static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a> executeAsync(java.lang.String[] arguments, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, <a href="../../../com/arthenica/ffmpegkit/LogCallback.html" title="interface in com.arthenica.ffmpegkit">LogCallback</a> logCallback, java.util.concurrent.ExecutorService executorService)</pre> <div class="block"><p>Asynchronously executes FFprobe with arguments provided.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>arguments</code> - FFprobe command options/arguments as string array</dd> <dd><code>executeCallback</code> - callback that will be notified when execution is completed</dd> <dd><code>logCallback</code> - callback that will receive logs</dd> <dd><code>executorService</code> - executor service that will be used to run this asynchronous operation</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>FFprobe session created for this execution</dd> </dl> </li> </ul> <a name="execute-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>execute</h4> <pre>public static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a> execute(java.lang.String command)</pre> <div class="block"><p>Synchronously executes FFprobe command provided. Space character is used to split command into arguments. You can use single or double quote characters to specify arguments inside your command.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>command</code> - FFprobe command</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>FFprobe session created for this execution</dd> </dl> </li> </ul> <a name="executeAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>executeAsync</h4> <pre>public static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a> executeAsync(java.lang.String command, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback)</pre> <div class="block"><p>Asynchronously executes FFprobe command provided. Space character is used to split command into arguments. You can use single or double quote characters to specify arguments inside your command.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>command</code> - FFprobe command</dd> <dd><code>executeCallback</code> - callback that will be called when the execution is completed</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>FFprobe session created for this execution</dd> </dl> </li> </ul> <a name="executeAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>executeAsync</h4> <pre>public static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a> executeAsync(java.lang.String command, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, <a href="../../../com/arthenica/ffmpegkit/LogCallback.html" title="interface in com.arthenica.ffmpegkit">LogCallback</a> logCallback)</pre> <div class="block"><p>Asynchronously executes FFprobe command provided. Space character is used to split command into arguments. You can use single or double quote characters to specify arguments inside your command.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>command</code> - FFprobe command</dd> <dd><code>executeCallback</code> - callback that will be notified when execution is completed</dd> <dd><code>logCallback</code> - callback that will receive logs</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>FFprobe session created for this execution</dd> </dl> </li> </ul> <a name="executeAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-java.util.concurrent.ExecutorService-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>executeAsync</h4> <pre>public static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a> executeAsync(java.lang.String command, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, java.util.concurrent.ExecutorService executorService)</pre> <div class="block"><p>Asynchronously executes FFprobe command provided. Space character is used to split command into arguments. You can use single or double quote characters to specify arguments inside your command.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>command</code> - FFprobe command</dd> <dd><code>executeCallback</code> - callback that will be called when the execution is completed</dd> <dd><code>executorService</code> - executor service that will be used to run this asynchronous operation</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>FFprobe session created for this execution</dd> </dl> </li> </ul> <a name="executeAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-java.util.concurrent.ExecutorService-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>executeAsync</h4> <pre>public static <a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a> executeAsync(java.lang.String command, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, <a href="../../../com/arthenica/ffmpegkit/LogCallback.html" title="interface in com.arthenica.ffmpegkit">LogCallback</a> logCallback, java.util.concurrent.ExecutorService executorService)</pre> <div class="block"><p>Asynchronously executes FFprobe command provided. Space character is used to split command into arguments. You can use single or double quote characters to specify arguments inside your command.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>command</code> - FFprobe command</dd> <dd><code>executeCallback</code> - callback that will be called when the execution is completed</dd> <dd><code>logCallback</code> - callback that will receive logs</dd> <dd><code>executorService</code> - executor service that will be used to run this asynchronous operation</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>FFprobe session created for this execution</dd> </dl> </li> </ul> <a name="getMediaInformation-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getMediaInformation</h4> <pre>public static <a href="../../../com/arthenica/ffmpegkit/MediaInformationSession.html" title="class in com.arthenica.ffmpegkit">MediaInformationSession</a> getMediaInformation(java.lang.String path)</pre> <div class="block"><p>Extracts media information for the file specified with path.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>path</code> - path or uri of a media file</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>media information session created for this execution</dd> </dl> </li> </ul> <a name="getMediaInformation-java.lang.String-int-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getMediaInformation</h4> <pre>public static <a href="../../../com/arthenica/ffmpegkit/MediaInformationSession.html" title="class in com.arthenica.ffmpegkit">MediaInformationSession</a> getMediaInformation(java.lang.String path, int waitTimeout)</pre> <div class="block"><p>Extracts media information for the file specified with path.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>path</code> - path or uri of a media file</dd> <dd><code>waitTimeout</code> - max time to wait until media information is transmitted</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>media information session created for this execution</dd> </dl> </li> </ul> <a name="getMediaInformationAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getMediaInformationAsync</h4> <pre>public static <a href="../../../com/arthenica/ffmpegkit/MediaInformationSession.html" title="class in com.arthenica.ffmpegkit">MediaInformationSession</a> getMediaInformationAsync(java.lang.String path, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback)</pre> <div class="block"><p>Extracts media information for the file specified with path asynchronously.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>path</code> - path or uri of a media file</dd> <dd><code>executeCallback</code> - callback that will be called when the execution is completed</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>media information session created for this execution</dd> </dl> </li> </ul> <a name="getMediaInformationAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-int-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getMediaInformationAsync</h4> <pre>public static <a href="../../../com/arthenica/ffmpegkit/MediaInformationSession.html" title="class in com.arthenica.ffmpegkit">MediaInformationSession</a> getMediaInformationAsync(java.lang.String path, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, <a href="../../../com/arthenica/ffmpegkit/LogCallback.html" title="interface in com.arthenica.ffmpegkit">LogCallback</a> logCallback, int waitTimeout)</pre> <div class="block"><p>Extracts media information for the file specified with path asynchronously.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>path</code> - path or uri of a media file</dd> <dd><code>executeCallback</code> - callback that will be notified when execution is completed</dd> <dd><code>logCallback</code> - callback that will receive logs</dd> <dd><code>waitTimeout</code> - max time to wait until media information is transmitted</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>media information session created for this execution</dd> </dl> </li> </ul> <a name="getMediaInformationAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-java.util.concurrent.ExecutorService-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getMediaInformationAsync</h4> <pre>public static <a href="../../../com/arthenica/ffmpegkit/MediaInformationSession.html" title="class in com.arthenica.ffmpegkit">MediaInformationSession</a> getMediaInformationAsync(java.lang.String path, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, java.util.concurrent.ExecutorService executorService)</pre> <div class="block"><p>Extracts media information for the file specified with path asynchronously.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>path</code> - path or uri of a media file</dd> <dd><code>executeCallback</code> - callback that will be called when the execution is completed</dd> <dd><code>executorService</code> - executor service that will be used to run this asynchronous operation</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>media information session created for this execution</dd> </dl> </li> </ul> <a name="getMediaInformationAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-java.util.concurrent.ExecutorService-int-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getMediaInformationAsync</h4> <pre>public static <a href="../../../com/arthenica/ffmpegkit/MediaInformationSession.html" title="class in com.arthenica.ffmpegkit">MediaInformationSession</a> getMediaInformationAsync(java.lang.String path, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, <a href="../../../com/arthenica/ffmpegkit/LogCallback.html" title="interface in com.arthenica.ffmpegkit">LogCallback</a> logCallback, java.util.concurrent.ExecutorService executorService, int waitTimeout)</pre> <div class="block"><p>Extracts media information for the file specified with path asynchronously.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>path</code> - path or uri of a media file</dd> <dd><code>executeCallback</code> - callback that will be notified when execution is completed</dd> <dd><code>logCallback</code> - callback that will receive logs</dd> <dd><code>executorService</code> - executor service that will be used to run this asynchronous operation</dd> <dd><code>waitTimeout</code> - max time to wait until media information is transmitted</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>media information session created for this execution</dd> </dl> </li> </ul> <a name="getMediaInformationFromCommand-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getMediaInformationFromCommand</h4> <pre>public static <a href="../../../com/arthenica/ffmpegkit/MediaInformationSession.html" title="class in com.arthenica.ffmpegkit">MediaInformationSession</a> getMediaInformationFromCommand(java.lang.String command)</pre> <div class="block"><p>Extracts media information using the command provided asynchronously.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>command</code> - FFprobe command that prints media information for a file in JSON format</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>media information session created for this execution</dd> </dl> </li> </ul> <a name="getMediaInformationFromCommandAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-int-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getMediaInformationFromCommandAsync</h4> <pre>public static <a href="../../../com/arthenica/ffmpegkit/MediaInformationSession.html" title="class in com.arthenica.ffmpegkit">MediaInformationSession</a> getMediaInformationFromCommandAsync(java.lang.String command, <a href="../../../com/arthenica/ffmpegkit/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit">ExecuteCallback</a> executeCallback, <a href="../../../com/arthenica/ffmpegkit/LogCallback.html" title="interface in com.arthenica.ffmpegkit">LogCallback</a> logCallback, int waitTimeout)</pre> <div class="block"><p>Extracts media information using the command provided asynchronously.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>command</code> - FFprobe command that prints media information for a file in JSON format</dd> <dd><code>executeCallback</code> - callback that will be notified when execution is completed</dd> <dd><code>logCallback</code> - callback that will receive logs</dd> <dd><code>waitTimeout</code> - max time to wait until media information is transmitted</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>media information session created for this execution</dd> </dl> </li> </ul> <a name="listSessions--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>listSessions</h4> <pre>public static java.util.List<<a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit">FFprobeSession</a>> listSessions()</pre> <div class="block"><p>Lists all FFprobe sessions in the session history.</div> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>all FFprobe sessions in the session history</dd> </dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../com/arthenica/ffmpegkit/package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-all.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../com/arthenica/ffmpegkit/FFmpegSession.html" title="class in com.arthenica.ffmpegkit"><span class="typeNameLink">Prev Class</span></a></li> <li><a href="../../../com/arthenica/ffmpegkit/FFprobeSession.html" title="class in com.arthenica.ffmpegkit"><span class="typeNameLink">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?com/arthenica/ffmpegkit/FFprobeKit.html" target="_top">Frames</a></li> <li><a href="FFprobeKit.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary: </li> <li>Nested | </li> <li>Field | </li> <li>Constr | </li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail: </li> <li>Field | </li> <li>Constr | </li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>