From 27be7fc410792d7ffc83066493e96469ddca4d73 Mon Sep 17 00:00:00 2001 From: Roxi Dittberner Date: Tue, 21 Oct 2025 23:30:18 +0200 Subject: [PATCH 1/2] Added dependency info to readme --- README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 16b637c..6f68778 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,15 @@ # meme-classifier -python project for classifying memes \ No newline at end of file +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``` From 5686cd5a46c61240b033e271f720ef175296bec5 Mon Sep 17 00:00:00 2001 From: Roxi Dittberner Date: Tue, 21 Oct 2025 23:31:58 +0200 Subject: [PATCH 2/2] added help messages to more options --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 076b86a..da54363 100755 --- a/main.py +++ b/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",