- retrieve a gif using tenor and/or giphy apis
- transform the gif into an "ascii gif"
- display the gif on the command line
- enjoy!
cargo install ascii-gif
# retrieve a gif using tenor random api and querying "pikachu"
ascii-gif --query "pikachu" --tenor
# retrieve a gif using tenor random api and querying "pikachu"
ascii-gif --query "pikachu" --giphy
# retrieve the gif with id 15452657 using tenor api
ascii-gif --id "15452657" --tenor
# retrieve the gif with id U2nN0ridM4lXy using giphy api
ascii-gif --id "U2nN0ridM4lXy" --giphy
The ascii encoding can be performed using 10 or 70 characters.
The default encoding uses 10 characters.
It is possible to use 70 characters encoding using the --encoding
parameter
ascii-gif --id "U2nN0ridM4lXy" --giphy --encoding 70
todos
- enhance ascii transformation (choose better characters / enrich characters)
- turn code into better rust