@@ -78,7 +78,7 @@ FFmpeg Android runs on the following architectures:
78
78
79
79
```
80
80
dependencies {
81
- implementation 'com.github.SimformSolutionsPvtLtd:SSffmpegVideoOperation:1.0.7 '
81
+ implementation 'com.github.SimformSolutionsPvtLtd:SSffmpegVideoOperation:1.0.8 '
82
82
}
83
83
```
84
84
@@ -88,7 +88,7 @@ This is all you have to do to load the FFmpeg library.
88
88
In this sample code we will run the FFmpeg -version command in background call.
89
89
``` java
90
90
val query: Array<String > = " -i, input,....,...., outout"
91
- CallBackOfQuery(). callQuery(this , query, object : FFmpegCallBack {
91
+ CallBackOfQuery(). callQuery(query, object : FFmpegCallBack {
92
92
override fun statisticsProcess(statistics: Statistics ) {
93
93
Log . i(" FFMPEG LOG : " , statistics. videoFrameNumber)
94
94
}
@@ -115,7 +115,7 @@ In this sample code we will run the FFmpeg -version command in background call.
115
115
val startTimeString = " 00:01:00" (HH : MM : SS )
116
116
val endTimeString = " 00:02:00" (HH : MM : SS )
117
117
val query: Array<String > = FFmpegQueryExtension(). cutVideo(inputPath, startTimeString, endTimeString, outputPath)
118
- CallBackOfQuery(). callQuery(this , query, object : FFmpegCallBack {
118
+ CallBackOfQuery(). callQuery(query, object : FFmpegCallBack {
119
119
override fun statisticsProcess(statistics: Statistics ) {
120
120
Log . i(" FFMPEG LOG : " , statistics. videoFrameNumber)
121
121
}
0 commit comments