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 | |
# discordencode - encodes a video file to under 8MiB for Discord | |
usage () { | |
echo "Usage: [NOAUDIO=1] [VPRESET=x264-preset] discordencode input output.mp4" | |
} | |
if [ -z "$1" ] | |
then | |
usage | |
exit 1 | |
fi |
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
# Maintainer: Youngbin Han <[email protected]> | |
# Maintainer: xDShot <[email protected]> | |
pkgname=micro | |
pkgver=1.0.3 | |
pkgrel=1 | |
pkgdesc="A modern and intuitive terminal-based text editor" | |
arch=('x86_64' 'i686') | |
url="https://github.com/zyedidia/micro" | |
license=('MIT') | |
makedepends=('go') |