From 42214ad6a1ef98bb0e1861532391ff41c8e6c1f9 Mon Sep 17 00:00:00 2001 From: Wesley Neuhaus <37388141+HugeBob@users.noreply.github.com> Date: Thu, 21 Nov 2024 22:51:01 -0500 Subject: [PATCH] Update .gitignore and README.md --- .gitignore | 11 ++++++++--- README.md | 10 +++++++--- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 3232871..ff70cef 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,8 @@ -ffmpeg.exe -ffplay.exe -ffprobe.exe +# Ignore all .exe files +*.exe +# Ignore all .mp4 files +*.mp4 +# Ignore all .mp3 files +*.mp3 +# Ignore all directories +__pycache__/ diff --git a/README.md b/README.md index 98a1096..7350bc4 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -# YouTubeDownloader +### YouTubeDownloader Basic self hosted, private YouTube downloader client -# Installation +### Installation pip install -r requirements.txt @@ -10,7 +10,11 @@ pip install -r requirements.txt https://ffmpeg.org/download.html # Download to this directory or add to PATH -# Usage +### Usage python main.py # From here, simply open the HTML file in your browser. + +### Update + +git pull