mediatoascii 0.8.0

Utilities for converting media files (images/videos) to ascii outputs (output media file or print to console). Supports most standard image formats, and video formats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash

# Note: If developing on windows, you might need to run this command to get rid of /r in this script file:
#   sed -i 's/\r$//' devtool
# Or make sure your git has autocrlf off: https://stackoverflow.com/questions/29045140/env-bash-r-no-such-file-or-directory

set -euo pipefail
set -x

build() {
  cargo build --release
  mv target/release/mediatoascii bin/
}

# Comment set +x out to show commands run
set +x
$@