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
| set +x | |
| ffmpeg -r 60 -f image2 -pattern_type glob -i "$1/*.JPG" -an -vf "fps=60, scale=-1:1080" -crf 15 "$1.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
| set PATH=T:\depot_tools;%PATH% | |
| set GYP_GENERATORS=ninja | |
| pushd skia && ^ | |
| cmd /C python gyp_skia ^ | |
| -Dskia_angle=1 ^ | |
| -Dskia_arch_type=x86_64 ^ | |
| -Dskia_warnings_as_errors=0 && ^ | |
| ninja -C out\Release_64 SampleApp && ^ | |
| popd |