Skip to content

Commit

Permalink
RxFFmpeg V3.1.0 :
Browse files Browse the repository at this point in the history
1、新增OpenSSL 支持HTTPS
  • Loading branch information
microshow committed Apr 26, 2020
1 parent cba0834 commit a9791ce
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Language: [English](README_EN.md)
| mp3lame || 支持MP3音频编解码 |
| fdk-aac || 支持AAC音频编解码 |
| 格式转换 || 如: avi > mp4 > avi; mp3 > aac > mp3 等 |
| https | × | 【已列入到 3.1.0 版本计划中...】 |
| https | × | version >= 3.1.0 支持 https |
| [常用命令](preview/docs/cmd.md) || 持续更新 [点击查看](preview/docs/cmd.md) |


Expand All @@ -84,7 +84,7 @@ allprojects {
```groovy
dependencies {
implementation 'com.github.microshow:RxFFmpeg:3.0.0'
implementation 'com.github.microshow:RxFFmpeg:3.1.0'
}
```
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -94,5 +94,5 @@ dependencies {

implementation project(path: ':rxffmpeg')

// implementation 'com.github.microshow:RxFFmpeg:3.0.0'
// implementation 'com.github.microshow:RxFFmpeg:3.1.0'
}
4 changes: 2 additions & 2 deletions configs.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ ext {
//支持包版本
supportLibValue = "28.0.0"
//应用 versionCode
versionCodeValue = 300
versionCodeValue = 310
//应用 version 名称,更多设置里显示的
versionNameValue = "3.0.0"
versionNameValue = "3.1.0"

}
Binary file modified preview/app-release.apk
Binary file not shown.
10 changes: 10 additions & 0 deletions preview/docs/cmd.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,16 @@ ffmpeg -y -i null.ape -ar 44100 -ac 2 -ab 16k -vol 50 -f mp3 null.mp3

-vol <百分比> 设定音量

# 在线视频处理(支持 http / https / rtmp / hls / m3u8...等等)

* 下载rtmp(湖南卫视)直播流的10秒视频转成mp4,并保存到本地

```java

ffmpeg -y -i rtmp://58.200.131.2:1935/livetv/hunantv -t 10 -preset superfast /storage/emulated/0/1/result.mp4

```


# 高级用法

Expand Down
Binary file modified rxffmpeg/libs/arm64-v8a/librxffmpeg-core.so
Binary file not shown.
Binary file modified rxffmpeg/libs/arm64-v8a/librxffmpeg-invoke.so
Binary file not shown.
Binary file modified rxffmpeg/libs/armeabi-v7a/librxffmpeg-core.so
Binary file not shown.
Binary file modified rxffmpeg/libs/armeabi-v7a/librxffmpeg-invoke.so
Binary file not shown.
Binary file modified rxffmpeg/libs/x86/librxffmpeg-core.so
Binary file not shown.
Binary file modified rxffmpeg/libs/x86/librxffmpeg-invoke.so
Binary file not shown.
Binary file modified rxffmpeg/libs/x86_64/librxffmpeg-core.so
Binary file not shown.
Binary file modified rxffmpeg/libs/x86_64/librxffmpeg-invoke.so
Binary file not shown.

0 comments on commit a9791ce

Please sign in to comment.