sya

split youtube audio tracks, with an optional pyqt gui
git clone git://src.gearsix.net/sya
Log | Files | Refs | Atom | README

BUGS.md (676B)


      1 # BUGS
      2 
      3 ## Legend
      4 
      5 [ ] = Not started
      6 [x] = Won't do
      7 [~] = Doing
      8 [*] = Done
      9 - ... = Note about the above item
     10 
     11 ## List
     12 
     13 ---
     14 
     15 **2021-07-31** [*] don't apply file numbering when song names include file number already
     16 
     17 	- Instead file numbering is just removed from track titles using regex.
     18 
     19 	#regex-improvement
     20 
     21 ---
     22 
     23 **2021-06-22** [*] handle multiple timestamp regex matches
     24 	When there are multiple matches for the timestamp regex in a line, the last match is used as the timestamp.
     25 
     26 	Discovered that the following line causes an issue because 2019 is counted as a timestamp
     27 	`58:18     C4C - Melted w_ Hazy Year (Chillhop Winter Essentials 2019).`
     28 	
     29 	#regex-improvement
     30 
     31 ---