Skip to content

Commit

Permalink
Version 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
navanchauhan committed Mar 10, 2020
1 parent 862b078 commit c79a3bb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,19 @@
A vaporwave music + image + video (+art soon, I promise) generator bodged together using code from various sources. Runs on Python 3. VHSVideo option is really really slow (Seconds per frame is 7.)

```
usage: main.py [-h] [-M] [-P] [-V] [-i INPUT]
usage: main.py [-h] [-M] [-P] [-V] [-v] [-i INPUT] [-o OUTPUT]
This program takes YouTube URL or title of a song and converts it into
vaporwave
| V A P O R W A V E || G E N E R A T O R |
optional arguments:
-h, --help show this help message and exit
-M, --music generate v a p o r w a v e music
-P, --picture generate VHS Style image
-V, --version show program version
-V, --video VHS Style Video
-v, --version show program version
-i INPUT, --input INPUT
-o OUTPUT, --output OUTPUT
Output for specifying output video
```

If the program gives an error for sox, try running `ulimit -n 999'`
Expand All @@ -37,7 +38,7 @@ Linking to Bandcamp soon

### V H S V I D E O

See the in.mp4 and out.mp4 in the assets folder
See `in.mp4` and `out.mp4` in the `assets` folder

## Installation

Expand Down Expand Up @@ -91,7 +92,7 @@ This project is a result of bodging and therefore has tons of bugs which need to
There might be a problem with the generated video not having audio, for that run the following

`ffmpeg -i video.mp4 -vn -acodec copy output-audio.aac`
`ffmpeg -i output.mp4 -i output-audio.aac -c copy output-with-audio.mp4'
`ffmpeg -i output.mp4 -i output-audio.aac -c copy output-with-audio.mp4`


## To-Do
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
version = 2.0
style = False

text = 'This program takes YouTube URL or title of a song and converts it into vaporwave'
text = '| V A P O R W A V E || G E N E R A T O R |'

parser = argparse.ArgumentParser(description = text)
parser.add_argument("-M", "--music", help="generate v a p o r w a v e music", action="store_true")
Expand Down

0 comments on commit c79a3bb

Please sign in to comment.