diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-03-09 22:52:09 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2020-03-09 22:52:09 +0530 |
commit | 9a58a5901fa18b8db30d21077a28659932de76f3 (patch) | |
tree | c8a6246c58f1cb8613e735492ba0606dd0211bae | |
parent | 29df89f0d46e897ab8e4dcab2db4012a276a279b (diff) |
Updated Readme with Argparse
-rw-r--r-- | README.md | 19 |
1 files changed, 17 insertions, 2 deletions
@@ -1,6 +1,20 @@ # vaporwave generator 旺育栄 A vaporwave music (+art, +video soon, I promise) generator bodged together using code from various sources. Runs on Python3 +``` +usage: main.py [-h] [-M] [-V] [-i INPUT] + +This program takes YouTube URL or title of a song and converts it into +vaporwave + +optional arguments: + -h, --help show this help message and exit + -M, --music generate v a p o r w a v e music + -V, --version show program version + -i INPUT, --input INPUT + input url +``` + ## Installation This was tested on macOS Catalina ( so should work on almost all macOS versions). @@ -28,11 +42,11 @@ pip install -r requirements.txt ### YouTube URL ``` -python3 main.py <YOUTUBE_URL> +python3 main.py -M -i <YOUTUBE_URL> ``` ### Song Title ``` -python3 main.py Song Title +python3 main.py -M -i Song Title ``` ## Bugs @@ -49,4 +63,5 @@ This project is a result of bodging and therefore has tons of bugs which need to ## Credits @WJLiddy His repo `Macintech` forms the base code for the music generator + @felipecustodio Using his repo `virtualdreamsbot` YouTube DL code ( Hopefully I will be able to integrate this project as a Telegram Bot)
\ No newline at end of file |