-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
33 lines (25 loc) · 1.17 KB
/
plugin.xml
File metadata and controls
33 lines (25 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="com.ffmpeg.commandline"
version="0.7.0">
<name>FFMPEG Commandline Plugin</name>
<engines>
<engine name="cordova" version=">=3.4.0"/>
</engines>
<asset src="www/FFMPEGCommandline.js" target="js/FFMPEGCommandline.js"/>
<js-module src="www/FFMPEGCommandline.js" name="hello">
<clobbers target="FFMPEGCommandline" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="FFMPEGCommandline">
<param name="android-package" value="com.ffmpeg.commandline.FFMPEGCommandline"/>
</feature>
</config-file>
<source-file src="src/android/FFMPEGCommandline.java" target-dir="src/com/ffmpeg/commandline/"/>
<source-file src="src/android/ShellUtils.java" target-dir="src/com/ffmpeg/commandline"/>
<source-file src="src/android/FFMPEGWrapper.java" target-dir="src/com/ffmpeg/commandline"/>
<source-file src="src/android/BinaryInstaller.java" target-dir="src/com/ffmpeg/commandline"/>
<resource-file src="res/raw/ffmpeg" target="res/raw/ffmpeg" />
</platform>
</plugin>