Compare commits
2 commits
e016083f1c
...
5686cd5a46
Author | SHA1 | Date | |
---|---|---|---|
5686cd5a46 | |||
27be7fc410 |
2 changed files with 15 additions and 3 deletions
12
README.md
12
README.md
|
@ -1,3 +1,15 @@
|
|||
# meme-classifier
|
||||
|
||||
python project for classifying memes
|
||||
|
||||
## Dependencies
|
||||
|
||||
- python3 (obviously)
|
||||
- mpv
|
||||
- ffmpeg
|
||||
|
||||
### Installing dependencies
|
||||
|
||||
On Debian, the projects dependencies can be installed using the following command:
|
||||
|
||||
```sudo apt install python3 mpv ffmpeg```
|
||||
|
|
4
main.py
4
main.py
|
@ -14,9 +14,9 @@ def main():
|
|||
|
||||
parser.add_argument("OUTPUT", help="folder for output", type=str)
|
||||
|
||||
parser.add_argument("-n", "--name", action="store_true")
|
||||
parser.add_argument("-n", "--name", action="store_true", help="rename videos")
|
||||
|
||||
parser.add_argument("-c", "--classify", action="store_true")
|
||||
parser.add_argument("-c", "--classify", action="store_true", help="assign a category to videos to move them into corresponding folders")
|
||||
|
||||
parser.add_argument(
|
||||
"-r",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue