Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kryzar/stupid-serguei-scripts
Stupid useful scripts.
https://github.com/kryzar/stupid-serguei-scripts
Last synced: about 1 month ago
JSON representation
Stupid useful scripts.
- Host: GitHub
- URL: https://github.com/kryzar/stupid-serguei-scripts
- Owner: kryzar
- License: gpl-3.0
- Created: 2020-05-10T21:23:43.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-21T21:01:10.000Z (over 4 years ago)
- Last Synced: 2024-03-04T23:31:53.508Z (10 months ago)
- Language: Shell
- Size: 26.7 MB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Angif
Given a YouTube video url, a starting time and a duration, [Angif](Angif.sh) creates a gif of the video from the starting time and of the duration you gave it. See options below. Default parameters are 10 fps (or native video frame rate if it is less than that) and 800 px width (or native video width if it is less than that).
[Angif](Angif.sh) comes as a single file zsh script.
## Purpose
I made this script when I realised it could be a formidable tool to write [Anki](https://apps.ankiweb.net) flashcards. Apart from my mathematical studies, a great hobby of mine is cooking and I spend quite a lot of time watching videos of chefs cooking ; I always have the pleasure of stumbling upon new techniques and movements (e.g. a gesture technique to [make an omurice](https://www.youtube.com/watch?v=rFAddL8g8mw)). Of course, I want to memorize them, but putting movements or gestures into words can be quite tricky and unproductive. Conversely, being able to observe the movements — with all its finesse and details — is the best way to memorize it when it is impossible to practice on a regular basis.Angif helps me creating flashcards on the spot when watching a video. If there is something in the video I want to memorize, I just just give the relevant extract to Angif and then copy the gif to directly put it as an answer in my Anki flashcard. Here is an example of such a card.
![Anki flashcard using Angif](bin/Anki-example.gif)
There are numerous other things one can memorize with Anki and Angif: tie knots, gardening, dance moves, etc.
## Usage
### Basic usage
```
angif [-h/--help]
angif [options]
```### Options
```
-h/--help display the help message
-d/--directory create the gif in the specified directory
-f/--fps choose the number of fps in the gif, default is minimum of video frame rate and 10 fps
-w/--width choose the width (in px) of the gif, default is minimum of video width and 800 px
```### Examples
```
angif "https://www.youtube.com/watch?v=dQw4w9WgXcQ" 0:43 8
```
This creates an 8 seconds gif from 0:43 seconds in the video, where the script is.
```
angif "https://www.youtube.com/watch?v=dQw4w9WgXcQ" 0:43 8 --dir ~/Downloads
```
This does the same, except that the gif is created in ~/Downloads.### Warning
Depending on your OS, you may need to remove the quotes for the YouTube url. They are required on macOS but some friends had to remove them on Linux systems.## Dependencies
- [zsh](http://zsh.sourceforge.net): this script is to be executed with zsh ;
- [youtube-dl](http://ytdl-org.github.io/youtube-dl/download.html): required to download the video ;
- [FFmpeg](https://ffmpeg.org/download.html): required to download the video, processing it and convert it into a gif.## Maydo
- Find a way to copy the gif to the clipboard ;
- add options to choose maximum possible width or frame rate ;
- rewrite comments ;
- make it work with Bash.## Acknowledgment
Thanks to :
- [Florian Dupeyron](https://github.com/fdmysterious) for helping with the parser ;
- [Quentin Dupré](https://github.com/Nildor) and [thiswillbeyourgithub](https://github.com/thiswillbeyourgithub) for their technical help and re-reading.# 2pdf2images
p l a c e h o l d e r
# Contributing
If you encounter any bug, please let me know. If you wish to contribute or help anyhow, please contact me or send a pull request.# Authors
- Antoine Hugounet: myself, creator of this repo.# License
This project is licensed under the GNU General Public License v3.0 - see the [LICENSE.md](LICENSE.md) file for details.