You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (videos == null || videos!!.isEmpty()) {
callback!!.onFailure(IOException("File not exists"))
return
}
for (v in videos!!) {
if (!v.canRead()) {
callback!!.onFailure(IOException("Can't read the file. Missing permission?"))
return
}
}
val outputLocation = getConvertedFile(outputPath, outputFileName)
val inputCommand = arrayListOf<String>()
//Add all paths
for (i in videos!!) {
inputCommand.add("-i")
inputCommand.add(i.path)
}
//Apply filter graph
inputCommand.add("-filter_complex")
//Compose concatenation commands
val stringBuilder = StringBuilder()
Can you please help me out i wand to add transition between videos
i want to achive something like this
https://www.youtube.com/watch?v=INiRu2_XdJE
https://www.youtube.com/watch?v=V-lL1MTPkSQ
fun mergeWithFade() {
// stringBuilder.append("[1:v][0:v]blend=all_expr='A*(if(gte(T,3),1,T/3))+B*(1-(if(gte(T,3),1,T/3)))'[v0];");
The text was updated successfully, but these errors were encountered: