Check the copyright laws and the term of service before using it. You might be breaking the law!
- Open the Network tab of the Chrome Inspector
#!/bin/sh | |
for f in *.mp4; do | |
echo "Processing $f" | |
mkdir -p output; | |
ffmpeg -i "$f" "output/${f%}.mp3" | |
done |
#!/bin/bash | |
# see: https://medium.com/@colten_jackson/doing-the-gif-thing-on-debian-82b9760a8483 | |
SOURCE=$1 | |
DESTINATION="${SOURCE%.*}.gif" | |
# Palette generation | |
ffmpeg -i $SOURCE -vf fps=7,scale=320:-1:flags=lanczos,palettegen temp_palette.png | |
# Conversion |
#!/usr/bin/env python3 | |
""" | |
Author: Gian Segato | |
Usage: | |
tz 15 to pt | |
tz: exec name |
set nocompatible " required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" let Vundle manage Vundle, required | |
Plugin 'gmarik/Vundle.vim' |