This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ffmpeg -f concat -safe 0 -i list.txt -c copy | \ | |
| ffmpeg -i pipe:0 \ | |
| -vf "tblend=average,framestep=2,tblend=average,framestep=2,tblend=average,framestep=2,tblend=average,framestep=2,tblend=average,framestep=2,setpts=0.03125*PTS" \ | |
| -r 30 \ | |
| output.mp4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| plugins { | |
| id "org.jetbrains.gradle.plugin.idea-ext" version "0.3" | |
| } | |
| | |
| import static org.jetbrains.gradle.ext.ActionDelegationConfig.TestRunner.* | |
| import org.jetbrains.gradle.ext.* | |
| | |
| idea.project { | |
| jdkName = '1.8' | |
| languageLevel = '1.8' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.google.gson.GsonBuilder | |
| import java.io.File | |
| fun forEachEntry(action: (it: FullEntry) -> Unit) { | |
| val gson = GsonBuilder().create() | |
| var i = 0 | |
| File("/Users/sergey/Downloads/container-8490.log").forEachLine { | |
| val first = it.indexOf('{') | |
| if (first > 0) { | |
| val info = it.substring(0, first) |