我正在研究基于maven的android项目.我需要将libs文件夹的所有jar文件添加到maven本地存储库中,因为maven中央存储库中没有许多jar文件.为此,我将使用以下命令.但我的问题是如何从任何外部jar获取group-id,artifact-id.
假设我在这种情况下有picasso.jar我也不知道版本.
mvn install:install-file
-Dfile=<path-to-file>
-DgroupId=<group-id>
-DartifactId=<artifact-id>
-Dversion=<version>
-Dpackaging=<packaging>
-DgeneratePom=true
Where:<path-to-file> the path to the file to load
<group-id> the group that the file should be registered under
<artifact-id> the artifact name for the file
<version> the version of the file
<packaging> the packaging of the file e.g. jar
Run Code Online (Sandbox Code Playgroud)
请帮我.
提前致谢
我正在使用以下FFMPEG命令在android中合并mp4视频。但是合并后视频会旋转90度。
我被困了两天。如果有什么想法的话,我会高度推荐。
提前致谢 !
complexCommand = new String[] {
"ffmpeg",
"-y",
"-i",
recordpath + "Vid1.mp4",
"-i",
recordpath + "Vid2.mp4",
"-strict",
"experimental",
"-filter_complex",
"[0:v]scale=w=640:h=480[v1]; [1:v]scale=w=640:h=480[v2]; [v1][0:a][v2][1:a] concat=n=2:v=1:a=1 [v] [a]",
"-map", "[v]", "-map", "[a]", "-b", "2097k", "-vcodec",
"mpeg4","-ab","64k","-ac","2","-ar","22050", recordpath + "Outputnew.mp4"};
Run Code Online (Sandbox Code Playgroud) 我需要在我的 android 应用程序中添加视频过滤器,比如Instagram。我搜索了很多,但没有找到太多东西。有没有像aviary sdk这样的用于图像编辑的库?