diff --git a/bash/1080PBLACK.png b/bash/1080PBLACK.png new file mode 100644 index 0000000..1f8dc83 Binary files /dev/null and b/bash/1080PBLACK.png differ diff --git a/bash/collect.sh b/bash/collect.sh new file mode 100755 index 0000000..c029f9a --- /dev/null +++ b/bash/collect.sh @@ -0,0 +1,9 @@ +export IFS=$'\n'; +for i; + do + for j in $(cat "$i"); + do + cp "$j" . + done; +done; + diff --git a/bash/get_deliveries.sh b/bash/get_deliveries.sh new file mode 100755 index 0000000..e794d5e --- /dev/null +++ b/bash/get_deliveries.sh @@ -0,0 +1,4 @@ +search_string="$1"; +echo $search_string; +find . -n "'*$search_string*'"; + diff --git a/bash/log_punch.sh b/bash/log_punch.sh new file mode 100755 index 0000000..88d2c3c --- /dev/null +++ b/bash/log_punch.sh @@ -0,0 +1 @@ +echo Punch "$1" was logged at $(date +"%Y-%h-%d %r") >> /Users/makinegx15/missed_punches/$(date +"%Y-%h-%d").txt diff --git a/bash/logoutHooks.sh b/bash/logoutHooks.sh new file mode 100755 index 0000000..17cbe83 --- /dev/null +++ b/bash/logoutHooks.sh @@ -0,0 +1,2 @@ +#!/bin/bash +log_punch.sh out diff --git a/bash/make_720p.sh b/bash/make_720p.sh new file mode 100755 index 0000000..03526e6 --- /dev/null +++ b/bash/make_720p.sh @@ -0,0 +1,4 @@ +for i; + do ffmpeg -i "$i" -g 15 -s 1280x720 -c:v libx264 -profile:v main -pix_fmt yuv420p -strict -2 -q 0 -b:v 18000k "${i%.*}_h264.mov" ; +done; + diff --git a/bash/make_h264+.sh b/bash/make_h264+.sh new file mode 100755 index 0000000..bb29bef --- /dev/null +++ b/bash/make_h264+.sh @@ -0,0 +1,4 @@ +for i; + do ffmpeg -i "$i" -c:v libx264 -profile:v main -pix_fmt yuv420p -q 0 -strict -2 "${i%.*}_h264.mov" ; +done; + diff --git a/bash/make_h264.sh b/bash/make_h264.sh new file mode 100755 index 0000000..0ec1fc7 --- /dev/null +++ b/bash/make_h264.sh @@ -0,0 +1,4 @@ +for i; + do ffmpeg -i "$i" -c:v libx264 -profile:v main -pix_fmt yuv420p -q 0 -strict -2 -vb 5000k "${i%.*}_h264.mov" ; +done; + diff --git a/bash/make_hq_h264.sh b/bash/make_hq_h264.sh new file mode 100755 index 0000000..fd3e338 --- /dev/null +++ b/bash/make_hq_h264.sh @@ -0,0 +1,4 @@ +for i; + do ffmpeg -i "$i" -c:v libx264 -profile:v high444 -pix_fmt yuv444p -q 0 -strict -2 -g 15 "${i%.*}_hq_h264.mov" ; +done; + diff --git a/bash/make_mkn_att_review.sh b/bash/make_mkn_att_review.sh new file mode 100755 index 0000000..211702f --- /dev/null +++ b/bash/make_mkn_att_review.sh @@ -0,0 +1,4 @@ +for i; + do ffmpeg -i "$i" -s 960x540 -b:v 900k -b:a 64k -g 15 "${i%.*}.wmv" ; +done; + diff --git a/bash/mount_whitehorse_ALT.command b/bash/mount_whitehorse_ALT.command new file mode 100755 index 0000000..5326f60 --- /dev/null +++ b/bash/mount_whitehorse_ALT.command @@ -0,0 +1,34 @@ +stty -echo +echo Waiting for silly MAC lag... +for i in {1..3}; +do + echo ...$i + sleep 1 +done +echo mounting whitehorse +mkdir /Volumes/whthrs +mount -t smbfs //mak:ale2312x@makineisilon/whitehorse /Volumes/whthrs +echo mounting pegasus +mkdir /Volumes/pgss +mount -t smbfs //eduardo:"pgss%401046"@mak-nas/pegasus /Volumes/pgss +echo done. +sleep 1 +open -a trolCommander + +echo ' /$$$$$$$ /$$ /$$ /$$ /$$ /$$$$$$ /$$ /$$ /$$$$$$ /$$ /$$'; +echo '| $$__ $$| $$ | $$| $$$ | $$ /$$__ $$| $$ | $$ |_ $$_/| $$$ | $$'; +echo '| $$ \ $$| $$ | $$| $$$$| $$| $$ \__/| $$ | $$ | $$ | $$$$| $$'; +echo '| $$$$$$$/| $$ | $$| $$ $$ $$| $$ | $$$$$$$$ | $$ | $$ $$ $$'; +echo '| $$____/ | $$ | $$| $$ $$$$| $$ | $$__ $$ | $$ | $$ $$$$'; +echo '| $$ | $$ | $$| $$\ $$$| $$ $$| $$ | $$ | $$ | $$\ $$$'; +echo '| $$ | $$$$$$/| $$ \ $$| $$$$$$/| $$ | $$ /$$$$$$| $$ \ $$'; +echo '|__/ \______/ |__/ \__/ \______/ |__/ |__/ |______/|__/ \__/'; + +log_punch.sh in + +sleep 25 + +"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" https://timeandlabor.paychex.com/secure/Login.aspx?Alias=0083A8306102 --args --"profile-direory"="Profile 2" > /tmp/chromelog.log & +stty echo + +exit diff --git a/bash/open_with_qt.sh b/bash/open_with_qt.sh new file mode 100755 index 0000000..f772175 --- /dev/null +++ b/bash/open_with_qt.sh @@ -0,0 +1,3 @@ +for i; + do open -a "Quicktime Player" "$i"; +done; diff --git a/bash/open_with_qt7.sh b/bash/open_with_qt7.sh new file mode 100755 index 0000000..df08532 --- /dev/null +++ b/bash/open_with_qt7.sh @@ -0,0 +1,3 @@ +for i; + do open -a "Quicktime Player 7" "$i"; +done; diff --git a/jsx/dependencySearcher.jsx b/jsx/dependencySearcher.jsx new file mode 100644 index 0000000..e0bedcd --- /dev/null +++ b/jsx/dependencySearcher.jsx @@ -0,0 +1 @@ +//Walk the items. search_string = "Element"; project_items = app.project.items for ( var i = 1; i <= project_items.length ; i ++) { var item = project_items[i]; if( item.typeName == "Composition" ) { var comp = item; //alert( comp.name ); var comp = item; for ( var j = 1 ; j <= comp.numLayers ; j ++ ) { var layer = comp.layer(j); if ( layer.matchName == "ADBE AV Layer") //Only go into layers... not cameras and lights. { var effects = layer.property("Effects"); //alert( comp.name + " , " + layer.name ); for ( var k = 1 ; k <= effects.numProperties ; k ++ ) { var effect = effects.property(k); if ( effect.name == search_string ) { layer.comment = "Contains " + effect.name + " layer."; comp.comment = "Contains " + effect.name + " layer."; } //alert( comp.name + " , " + layer.name + " , " + effect.name ); } } } } } \ No newline at end of file