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 | |
find . -name "*.MOV" -exec ffmpeg -i "{}" -c:v libx265 -c:a aac -crf 14 -x265-params open-gop=0 "{}.mp4" \; | |
# add if remove original file: | |
# -exec rm "{}" \; |
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
/** | |
* @param {A1} value The value which should be reduced to n significant digits. E.g. 668951.12345 | |
* @param {3} nDigits Number of significant digits in cell. Default 3. | |
* @return The value of a cell with N significant digits. E.g. 669000 | |
* @customfunction | |
*/ | |
function sigDigits(value, nDigits) { | |
var value = value || 668951.12345 | |
var nDigits = nDigits || 3 | |
valueRounded = +value.toFixed(0) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.