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 | |
| # This script will convert all .mov files in the current directory to .mp4 files | |
| # using the H.264 codec. It will also scale the video to 1920x1080. | |
| # The output files will be placed in a subdirectory called "compressed". | |
| # This script requires ffmpeg to be installed. | |
| mkdir compressed | |
| # ffmpeg -i P1012602.MOV -vf scale=1920x1080:flags=lanczos "compressed/output.mp4" | |
| # For each mov file in the directory do the following: |
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
| ######################### | |
| # .gitignore file for Xcode5 / OS X Source projects | |
| # | |
| # Version 2.1 | |
| # For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects | |
| # | |
| # 2014 updates: | |
| # - ignore Xcode 5 source control files | |
| # - Ignore `Pods` folder | |
| # |