581 lines
32 KiB
HTML
581 lines
32 KiB
HTML
<!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>FFmpegKit (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="FFmpegKit (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};
|
|
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/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit"><span class="typeNameLink">Prev Class</span></a></li>
|
|
<li><a href="../../../com/arthenica/ffmpegkit/FFmpegKitConfig.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/FFmpegKit.html" target="_top">Frames</a></li>
|
|
<li><a href="FFmpegKit.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 FFmpegKit" class="title">Class FFmpegKit</h2>
|
|
</div>
|
|
<div class="contentContainer">
|
|
<ul class="inheritance">
|
|
<li>java.lang.Object</li>
|
|
<li>
|
|
<ul class="inheritance">
|
|
<li>com.arthenica.ffmpegkit.FFmpegKit</li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
<div class="description">
|
|
<ul class="blockList">
|
|
<li class="blockList">
|
|
<hr>
|
|
<br>
|
|
<pre>public class <span class="typeNameLabel">FFmpegKit</span>
|
|
extends java.lang.Object</pre>
|
|
<div class="block"><p>Main class to run <code>FFmpeg</code> commands. Supports executing commands both
|
|
synchronously and asynchronously.
|
|
<pre>
|
|
FFmpegSession session = FFmpegKit.execute("-i file1.mp4 -c:v libxvid file1.avi");
|
|
|
|
FFmpegSession asyncSession = FFmpegKit.executeAsync("-i file1.mp4 -c:v libxvid file1.avi", executeCallback);
|
|
</pre>
|
|
<p>Provides overloaded <code>execute</code> methods to define session specific callbacks.
|
|
<pre>
|
|
FFmpegSession asyncSession = FFmpegKit.executeAsync("-i file1.mp4 -c:v libxvid file1.avi", executeCallback, logCallback, statisticsCallback);
|
|
</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 void</code></td>
|
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFmpegKit.html#cancel--">cancel</a></span>()</code>
|
|
<div class="block">Cancels all running sessions.</div>
|
|
</td>
|
|
</tr>
|
|
<tr id="i1" class="rowColor">
|
|
<td class="colFirst"><code>static void</code></td>
|
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFmpegKit.html#cancel-long-">cancel</a></span>(long sessionId)</code>
|
|
<div class="block">Cancels the session specified with <code>sessionId</code>.</div>
|
|
</td>
|
|
</tr>
|
|
<tr id="i2" class="altColor">
|
|
<td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</a></code></td>
|
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFmpegKit.html#execute-java.lang.String-">execute</a></span>(java.lang.String command)</code>
|
|
<div class="block">Synchronously executes FFmpeg command provided.</div>
|
|
</td>
|
|
</tr>
|
|
<tr id="i3" class="rowColor">
|
|
<td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</a></code></td>
|
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFmpegKit.html#execute-java.lang.String:A-">execute</a></span>(java.lang.String[] arguments)</code>
|
|
<div class="block">Synchronously executes FFmpeg with arguments provided.</div>
|
|
</td>
|
|
</tr>
|
|
<tr id="i4" class="altColor">
|
|
<td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</a></code></td>
|
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFmpegKit.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 FFmpeg with arguments provided.</div>
|
|
</td>
|
|
</tr>
|
|
<tr id="i5" class="rowColor">
|
|
<td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</a></code></td>
|
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFmpegKit.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 FFmpeg with arguments provided.</div>
|
|
</td>
|
|
</tr>
|
|
<tr id="i6" class="altColor">
|
|
<td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</a></code></td>
|
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFmpegKit.html#executeAsync-java.lang.String:A-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-com.arthenica.ffmpegkit.StatisticsCallback-">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,
|
|
<a href="../../../com/arthenica/ffmpegkit/StatisticsCallback.html" title="interface in com.arthenica.ffmpegkit">StatisticsCallback</a> statisticsCallback)</code>
|
|
<div class="block">Asynchronously executes FFmpeg with arguments provided.</div>
|
|
</td>
|
|
</tr>
|
|
<tr id="i7" class="rowColor">
|
|
<td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</a></code></td>
|
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFmpegKit.html#executeAsync-java.lang.String:A-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-com.arthenica.ffmpegkit.StatisticsCallback-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,
|
|
<a href="../../../com/arthenica/ffmpegkit/StatisticsCallback.html" title="interface in com.arthenica.ffmpegkit">StatisticsCallback</a> statisticsCallback,
|
|
java.util.concurrent.ExecutorService executorService)</code>
|
|
<div class="block">Asynchronously executes FFmpeg with arguments provided.</div>
|
|
</td>
|
|
</tr>
|
|
<tr id="i8" class="altColor">
|
|
<td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</a></code></td>
|
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFmpegKit.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 FFmpeg command provided.</div>
|
|
</td>
|
|
</tr>
|
|
<tr id="i9" class="rowColor">
|
|
<td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</a></code></td>
|
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFmpegKit.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 FFmpeg command provided.</div>
|
|
</td>
|
|
</tr>
|
|
<tr id="i10" class="altColor">
|
|
<td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</a></code></td>
|
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFmpegKit.html#executeAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-com.arthenica.ffmpegkit.StatisticsCallback-">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,
|
|
<a href="../../../com/arthenica/ffmpegkit/StatisticsCallback.html" title="interface in com.arthenica.ffmpegkit">StatisticsCallback</a> statisticsCallback)</code>
|
|
<div class="block">Asynchronously executes FFmpeg command provided.</div>
|
|
</td>
|
|
</tr>
|
|
<tr id="i11" class="rowColor">
|
|
<td class="colFirst"><code>static <a href="../../../com/arthenica/ffmpegkit/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</a></code></td>
|
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFmpegKit.html#executeAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-com.arthenica.ffmpegkit.StatisticsCallback-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,
|
|
<a href="../../../com/arthenica/ffmpegkit/StatisticsCallback.html" title="interface in com.arthenica.ffmpegkit">StatisticsCallback</a> statisticsCallback,
|
|
java.util.concurrent.ExecutorService executorService)</code>
|
|
<div class="block">Asynchronously executes FFmpeg command provided.</div>
|
|
</td>
|
|
</tr>
|
|
<tr id="i12" class="altColor">
|
|
<td class="colFirst"><code>static java.util.List<<a href="../../../com/arthenica/ffmpegkit/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</a>></code></td>
|
|
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/arthenica/ffmpegkit/FFmpegKit.html#listSessions--">listSessions</a></span>()</code>
|
|
<div class="block">Lists all FFmpeg 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/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</a> execute(java.lang.String[] arguments)</pre>
|
|
<div class="block"><p>Synchronously executes FFmpeg with arguments provided.</div>
|
|
<dl>
|
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
|
<dd><code>arguments</code> - FFmpeg command options/arguments as string array</dd>
|
|
<dt><span class="returnLabel">Returns:</span></dt>
|
|
<dd>FFmpeg 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/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</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 FFmpeg with arguments provided.</div>
|
|
<dl>
|
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
|
<dd><code>arguments</code> - FFmpeg 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>FFmpeg session created for this execution</dd>
|
|
</dl>
|
|
</li>
|
|
</ul>
|
|
<a name="executeAsync-java.lang.String:A-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-com.arthenica.ffmpegkit.StatisticsCallback-">
|
|
<!-- -->
|
|
</a>
|
|
<ul class="blockList">
|
|
<li class="blockList">
|
|
<h4>executeAsync</h4>
|
|
<pre>public static <a href="../../../com/arthenica/ffmpegkit/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</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,
|
|
<a href="../../../com/arthenica/ffmpegkit/StatisticsCallback.html" title="interface in com.arthenica.ffmpegkit">StatisticsCallback</a> statisticsCallback)</pre>
|
|
<div class="block"><p>Asynchronously executes FFmpeg with arguments provided.</div>
|
|
<dl>
|
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
|
<dd><code>arguments</code> - FFmpeg command options/arguments as string array</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>statisticsCallback</code> - callback that will receive statistics</dd>
|
|
<dt><span class="returnLabel">Returns:</span></dt>
|
|
<dd>FFmpeg 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/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</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 FFmpeg with arguments provided.</div>
|
|
<dl>
|
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
|
<dd><code>arguments</code> - FFmpeg 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>FFmpeg session created for this execution</dd>
|
|
</dl>
|
|
</li>
|
|
</ul>
|
|
<a name="executeAsync-java.lang.String:A-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-com.arthenica.ffmpegkit.StatisticsCallback-java.util.concurrent.ExecutorService-">
|
|
<!-- -->
|
|
</a>
|
|
<ul class="blockList">
|
|
<li class="blockList">
|
|
<h4>executeAsync</h4>
|
|
<pre>public static <a href="../../../com/arthenica/ffmpegkit/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</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,
|
|
<a href="../../../com/arthenica/ffmpegkit/StatisticsCallback.html" title="interface in com.arthenica.ffmpegkit">StatisticsCallback</a> statisticsCallback,
|
|
java.util.concurrent.ExecutorService executorService)</pre>
|
|
<div class="block"><p>Asynchronously executes FFmpeg with arguments provided.</div>
|
|
<dl>
|
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
|
<dd><code>arguments</code> - FFmpeg command options/arguments as string array</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>statisticsCallback</code> - callback that will receive statistics</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>FFmpeg 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/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</a> execute(java.lang.String command)</pre>
|
|
<div class="block"><p>Synchronously executes FFmpeg 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> - FFmpeg command</dd>
|
|
<dt><span class="returnLabel">Returns:</span></dt>
|
|
<dd>FFmpeg 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/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</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 FFmpeg 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> - FFmpeg 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>FFmpeg session created for this execution</dd>
|
|
</dl>
|
|
</li>
|
|
</ul>
|
|
<a name="executeAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-com.arthenica.ffmpegkit.StatisticsCallback-">
|
|
<!-- -->
|
|
</a>
|
|
<ul class="blockList">
|
|
<li class="blockList">
|
|
<h4>executeAsync</h4>
|
|
<pre>public static <a href="../../../com/arthenica/ffmpegkit/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</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,
|
|
<a href="../../../com/arthenica/ffmpegkit/StatisticsCallback.html" title="interface in com.arthenica.ffmpegkit">StatisticsCallback</a> statisticsCallback)</pre>
|
|
<div class="block"><p>Asynchronously executes FFmpeg 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> - FFmpeg 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>statisticsCallback</code> - callback that will receive statistics</dd>
|
|
<dt><span class="returnLabel">Returns:</span></dt>
|
|
<dd>FFmpeg 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/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</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 FFmpeg 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> - FFmpeg 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>FFmpeg session created for this execution</dd>
|
|
</dl>
|
|
</li>
|
|
</ul>
|
|
<a name="executeAsync-java.lang.String-com.arthenica.ffmpegkit.ExecuteCallback-com.arthenica.ffmpegkit.LogCallback-com.arthenica.ffmpegkit.StatisticsCallback-java.util.concurrent.ExecutorService-">
|
|
<!-- -->
|
|
</a>
|
|
<ul class="blockList">
|
|
<li class="blockList">
|
|
<h4>executeAsync</h4>
|
|
<pre>public static <a href="../../../com/arthenica/ffmpegkit/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</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,
|
|
<a href="../../../com/arthenica/ffmpegkit/StatisticsCallback.html" title="interface in com.arthenica.ffmpegkit">StatisticsCallback</a> statisticsCallback,
|
|
java.util.concurrent.ExecutorService executorService)</pre>
|
|
<div class="block"><p>Asynchronously executes FFmpeg 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> - FFmpeg 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>statisticsCallback</code> - callback that will receive statistics</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>FFmpeg session created for this execution</dd>
|
|
</dl>
|
|
</li>
|
|
</ul>
|
|
<a name="cancel--">
|
|
<!-- -->
|
|
</a>
|
|
<ul class="blockList">
|
|
<li class="blockList">
|
|
<h4>cancel</h4>
|
|
<pre>public static void cancel()</pre>
|
|
<div class="block"><p>Cancels all running sessions.
|
|
|
|
<p>This function does not wait for termination to complete and returns immediately.</div>
|
|
</li>
|
|
</ul>
|
|
<a name="cancel-long-">
|
|
<!-- -->
|
|
</a>
|
|
<ul class="blockList">
|
|
<li class="blockList">
|
|
<h4>cancel</h4>
|
|
<pre>public static void cancel(long sessionId)</pre>
|
|
<div class="block"><p>Cancels the session specified with <code>sessionId</code>.
|
|
|
|
<p>This function does not wait for termination to complete and returns immediately.</div>
|
|
<dl>
|
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
|
<dd><code>sessionId</code> - id of the session that will be cancelled</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/FFmpegSession.html" title="class in com.arthenica.ffmpegkit">FFmpegSession</a>> listSessions()</pre>
|
|
<div class="block"><p>Lists all FFmpeg sessions in the session history.</div>
|
|
<dl>
|
|
<dt><span class="returnLabel">Returns:</span></dt>
|
|
<dd>all FFmpeg 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/ExecuteCallback.html" title="interface in com.arthenica.ffmpegkit"><span class="typeNameLink">Prev Class</span></a></li>
|
|
<li><a href="../../../com/arthenica/ffmpegkit/FFmpegKitConfig.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/FFmpegKit.html" target="_top">Frames</a></li>
|
|
<li><a href="FFmpegKit.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>
|