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 | |
| # Usage: | |
| # ./to_discord.sh input.mp4 output.webm | |
| input=$1 | |
| output=$2 | |
| target=$((10 * 1024 * 1024)) # 10 MiB File Size Target | |
| vcodec=libvpx-vp9 # VP9 is used because Discord won't embed AV1 videos. | |
| acodec=libopus |
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 | |
| set -e | |
| # Constants | |
| DP=2 # Decimal Places | |
| # Functions | |
| get_num() |