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
#!/bin/bash | |
echo Generating trf files... | |
find . -type f -name 'V100*.MOV' -print0 | \ | |
xargs -0 -P 4 -n 1 -I {} \ | |
ffmpeg -hide_banner -loglevel panic -i {} -b:v 12000k -b:a 1536k -vf vidstabdetect=shakiness=5:show=1:result={}.trf -f null - | |
echo Generating st files... | |
find . -type f -name 'V100*.MOV' -print0 | \ | |
xargs -0 -P 4 -n 1 -I {} \ |
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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>stats</groupId> | |
<artifactId>stats</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
<packaging>jar</packaging> | |
<parent> | |
<groupId>org.springframework.boot</groupId> |
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
# usage: ./eclimd -f .test_eclimrc | |
[email protected]/workspace.test | |
nailgun.server.port=9092 | |
# increase heap space | |
-Xmx256M | |
# increase perm gen size | |
-XX:MaxPermSize=256m |
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
-Declimd.port=9092 | |
-Declipse.home=$ECLIPSE_HOME |