1
1
# YouTube to MP3 Auto Tagger
2
- Quick and dirty code to convert YouTube videos to MP3 and automatically adds ID3 tags based on uploader name, title, and thumbnail
2
+ A GUI wrapper for yt-dlp that downloads YouTube videos to MP3 and automatically adds ID3 tags based on uploader name, title, and thumbnail
3
3
4
4
###
5
5
![ image] ( https://user-images.githubusercontent.com/21994085/232991117-a41a33e1-f45a-4043-aa6a-e886a31d2f11.png )
@@ -10,22 +10,13 @@ Quick and dirty code to convert YouTube videos to MP3 and automatically adds ID3
10
10
###
11
11
![ image] ( https://user-images.githubusercontent.com/21994085/199175477-b2d6d5ae-d7db-455c-813f-ad1d3af7fac5.png )
12
12
13
- # Usage
14
- - Create 2 folders where ran (downloaded, completed)
15
- - Create a text file (songs.txt) and list songs to download by length
16
- - Create a text file (blacklist.txt)
17
- - Include both ffmpeg.exe + yt-dlp.exe where executed
18
- - Files that are downloaded and tagged are moved to the completed folder
19
13
14
+ If you don't want to use the built-in GUI builder to create a "task file", you can write it manually in your file of choice
15
+
16
+ Each line will be treated as a download job (video), you may use either the full ` youtube.com ` or shortened ` youtu.be ` link
20
17
```
21
- Downloading Parts of a video
22
18
URL,START_TIME-END_TIME (HH:MM:SS Timestamp Format)
23
- To download the entire video. Only enter the URL on a new line in songs.txt
24
-
25
- BLACKLIST:
26
- Enter each term to be removed/replaced in the title and author on a new line in blacklist.txt in this format:
27
- WORD_TO_BE_REPLACED:REPLACEMENT_WORD
28
-
29
- To remove a word (no replacement):
30
- WORD_TO_BE_REMOVED:
31
19
```
20
+
21
+ ex: ` https://www.youtube.com/watch?v=qvj_QSqOrBw,00:01:10-00:01:40 `
22
+ - Download video ` https://www.youtube.com/watch?v=qvj_QSqOrBw ` from ` 1 min 10s ` to ` 1 min 40s ` (30s total)
0 commit comments