npm install [email protected] --global
texel index.js --open
ffmpeg -framerate 24 -i tmp/%03d.png -y output.gif
ffmpeg -framerate 24 -i tmp/%03d.png -y -c:v libx264 -profile:v high -crf 20 -pix_fmt yuv420p output.mp4
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
from plexapi.server import PlexServer | |
import glob | |
import re | |
import codecs | |
# create a directoy called listas_filmaffinity and put there the txt files with the movies | |
# the name of the txt file will be the name of the collection | |
# the content of the txt file will be the movies of the collection | |
# the format of the txt file will be: title (year) | |
# example: listas_filmaffinity/terror.txt |
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 | |
# | |
# Install: | |
# 1. Copy this file as `.git/hooks/pre-commit` | |
# 2. Make it executable `chmod +x .git/hooks/pre-commit` | |
# 3. Set your desired options in the `WORKFORCE_PRECOMMIT` ENV var | |
# | |
# Posible options: eslint, jstest, rubocop, rubytest | |
# | |
# Sample config: in your ~/.bashrc | ~/.zshrc | ... |