小编DJt*_*ari的帖子

如何知道maven android项目中任何外部jar的groupid和artifactid

我正在研究基于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)

请帮我.

提前致谢

android maven

7
推荐指数
2
解决办法
1万
查看次数

FFMPEG命令问题,用于在Android中合并mp4视频

我正在使用以下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)

video android ffmpeg

5
推荐指数
1
解决办法
859
查看次数

如何在android上像instagram一样实现视频过滤器

我需要在我的 android 应用程序中添加视频过滤器,比如Instagram。我搜索了很多,但没有找到太多东西。有没有像aviary sdk这样的用于图像编辑的库?

video android

5
推荐指数
1
解决办法
6478
查看次数

标签 统计

android ×3

video ×2

ffmpeg ×1

maven ×1