- Fork https://github.com/github/dmca
- Download latest youtube-dl source code from https://yt-dl.org/latest
- Extract
tar -xvf youtube-dl-2020.09.20.tar.gz - Push code to your fork as the GitHub CEO
tar -xvf youtube-dl-2020.09.20.tar.gz
| /* sample cubic beziers */ | |
| linear = [0.250, 0.250, 0.750, 0.750]; | |
| ease = [0.250, 0.100, 0.250, 1.000]; | |
| easeIn = [0.420, 0.000, 1.000, 1.000]; | |
| easeOut = [0.000, 0.000, 0.580, 1.000]; | |
| easeInOut = [0.420, 0.000, 0.580, 1.000]; | |
| function reverseCubicBezier(cubicBezier) { | |
| return [ | |
| 1 - cubicBezier[2], |