Skip to content

Commit 079af80

Browse files
committed
update names
1 parent d92718b commit 079af80

File tree

2 files changed

+34
-31
lines changed

2 files changed

+34
-31
lines changed

README.md

Lines changed: 31 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,40 @@
11
# yt-timestamp-gen
2+
23
Create a lists of cumulated timestamps out of audio files from one directory using the Mutagen Python library. What you can easily paste afterwards to your description box on Youtube. There is an option to turn on enumeration for tracks in case the filenames do not start with numbering. It is a simple console application.
34

45
## Usage:
5-
1. Paste the full path to the directory that contains the audio files that you would like to create the timestamps from. (e.g. "C:\Music\MyAlbum")
6-
2. Decide if you need enumeration
7-
3. Done!
6+
7+
1. Paste the full path to the directory that contains the audio files that you would like to create the timestamps from. (e.g. "C:\Music\MyAlbum")
8+
2. Decide if you need enumeration
9+
3. Done!
810

911
## Output example:
10-
01. {filename1} - 00:00
11-
02. {filename2} - 03:54
12-
03. {filename3} - 07:09
12+
13+
1. {filename1} - 00:00
14+
2. {filename2} - 03:54
15+
3. {filename3} - 07:09
1316

1417
### Supported file extensions:
15-
- AAC
16-
- AC3
17-
- AIFF
18-
- ASF
19-
- DSDIFF
20-
- DSF
21-
- FLAC
22-
- MonkeysAudio
23-
- MP3
24-
- MP4
25-
- Musepack
26-
- OggFLAC
27-
- OggOpus
28-
- OggSpeex
29-
- OggTheora
30-
- OggVorbis
31-
- OptimFrog
32-
- SMF
33-
- TAK
34-
- TrueAudio
35-
- WAVE
36-
- WavPack
3718

19+
- AAC
20+
- AC3
21+
- AIFF
22+
- ASF
23+
- DSDIFF
24+
- DSF
25+
- FLAC
26+
- MonkeysAudio
27+
- MP3
28+
- MP4
29+
- Musepack
30+
- OggFLAC
31+
- OggOpus
32+
- OggSpeex
33+
- OggTheora
34+
- OggVorbis
35+
- OptimFrog
36+
- SMF
37+
- TAK
38+
- TrueAudio
39+
- WAVE
40+
- WavPack

yt-timestamps-gen.py renamed to yt-timestamp-gen.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from mutagen.wavpack import WavPack
2626

2727

28-
class YTtimestamps:
28+
class YTtimestamp:
2929
def __init__(self, path, isNum):
3030
self.path = path + "\*"
3131
self.filePaths = glob(self.path)
@@ -163,5 +163,5 @@ def Run(self):
163163
isNum = True
164164
else:
165165
isNum = False
166-
MyYTtimestamps = YTtimestamps(path, isNum)
167-
MyYTtimestamps.Run()
166+
MyYTtimestamp = YTtimestamp(path, isNum)
167+
MyYTtimestamp.Run()

0 commit comments

Comments
 (0)