This file contains 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 | |
# | |
# 2018-04-20 - Matt Crnich - v001 - ffmpeg conversion script, compresses directory to mp4(s) | |
# 2018-04-20 - Matt Crnich - v002 - added pixel format flag so mp4s will play within quicktime on OSX. Also adds thumbnails! | |
# | |
# Props to LordNeckBeard for the help. | |
# | |
for i in `find /input/dir -name "*.mov" -print0 | xargs -0`; | |
do o="output/dir/${i##*/}"; |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE xmeml> | |
<xmeml version="4"> | |
<sequence id="sequence-1" TL.SQAudioVisibleBase="0" TL.SQVideoVisibleBase="0" TL.SQVisibleBaseTime="0" TL.SQAVDividerPosition="0.5" TL.SQHideShyTracks="0" TL.SQHeaderWidth="236" Monitor.ProgramZoomOut="20500520040000" Monitor.ProgramZoomIn="0" TL.SQTimePerPixel="0.19999999999999998" MZ.EditLine="20500520040000" MZ.Sequence.PreviewFrameSizeHeight="720" MZ.Sequence.PreviewFrameSizeWidth="1280" MZ.Sequence.AudioTimeDisplayFormat="200" MZ.Sequence.PreviewRenderingClassID="1297106761" MZ.Sequence.PreviewRenderingPresetCodec="1297107278" MZ.Sequence.PreviewRenderingPresetPath="EncoderPresets/SequencePreview/d8484cf3-c96c-4622-ab1f-ac1a16e196f9/I-Frame Only MPEG.epr" MZ.Sequence.PreviewUseMaxRenderQuality="false" MZ.Sequence.PreviewUseMaxBitDepth="false" MZ.Sequence.EditingModeGUID="d8484cf3-c96c-4622-ab1f-ac1a16e196f9" MZ.Sequence.VideoTimeDisplayFormat="110" MZ.WorkOutPoint="9471558096000" MZ.WorkInPoint="0" MZ.ZeroPoint="0" expl |
This file contains 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 | |
# | |
# 2018-07-17 - Matt Crnich - v001 - Settings for encoding files for GCP Video Intelligence API | |
# 2018-08-06 - Matt Crnich - v002 - Added audio mix down. Mixes multi-track audio down to stereo mix. | |
# | |
# | |
### Medium Preset, Fast Decode Tune with +Faststart at 1920x1080 ### | |
### copy Timecode track ### | |
### mix down multi-track audio track into stereo mix ### |
This file contains 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 | |
# | |
# 2018-09-05 - Matt Crnich - v001 - Setup for ASO Spring Footage | |
# | |
# | |
### Medium Preset, Fast Decode Tune with +Faststart at 1920x1080 ### | |
### copy Timecode track ### | |
### mix down multi-track audio track into stereo mix ### | |
# |
This file contains 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
find /sourceDir -name "*.jpg" -type f | xargs ./shellScript.sh |
This file contains 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/sh | |
# 2018-09-06 - Matthew Crnich - create WMV using FFMPEG | |
# | |
ffmpeg -i "input" -qscale 2 -vcodec msmpeg4 -acodec wmav2 "output.wmv" |
This file contains 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 | |
#File: stillImage-remove-meta-v003.sh | |
# | |
# 2018-11-02 - Matt Crnich - v001 - Use exiftool to remove still image metadata | |
# 2018-11-06 - Matt Crnich - v002 - quieted output | |
# 2018-11-06 - Matt Crnich - v003 - added awk to calculate total number of processed files | |
# | |
# | |
echo "enter path" |
This file contains 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 | |
#File: stillImage-exportCSV-removeMeta | |
# | |
#2019-01-11 Matt Crnich - Hacking on it | |
#2019-01-15 Matt Crnich - Removed find process in favor of exiftool native functionality | |
#2019-01-15 Matt Crnich - Adding function to remove metadata from files | |
#exiftool -IFD1:XResolution -IFD1:YResolution image.jpg | |
#Extract image resolution from EXIF IFD1 information (thumbnail image IFD). |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer