Browse Source

add copyright for phschoen

Thomas Buck 3 months ago
parent
commit
3476d2c27e
1 changed files with 1 additions and 2 deletions
  1. 1
    2
      osci-pi.py

+ 1
- 2
osci-pi.py View File

5
 #
5
 #
6
 # ----------------------------------------------------------------------------
6
 # ----------------------------------------------------------------------------
7
 # Copyright (c) 2024 Thomas Buck (thomas@xythobuz.de)
7
 # Copyright (c) 2024 Thomas Buck (thomas@xythobuz.de)
8
+# Copyright (c) 2024 Philipp Schönberger (mail@phschoen.de)
8
 #
9
 #
9
 # This program is free software: you can redistribute it and/or modify
10
 # This program is free software: you can redistribute it and/or modify
10
 # it under the terms of the GNU General Public License as published by
11
 # it under the terms of the GNU General Public License as published by
63
     ("Harley_Matthews", "100"),
64
     ("Harley_Matthews", "100"),
64
 ]
65
 ]
65
 
66
 
66
-
67
 basedir = sys.argv[1]
67
 basedir = sys.argv[1]
68
 if basedir.endswith("/"):
68
 if basedir.endswith("/"):
69
     basedir = basedir.removesuffix("/")
69
     basedir = basedir.removesuffix("/")
79
             break
79
             break
80
     return artist
80
     return artist
81
 
81
 
82
-#originalsongs = os.listdir(basedir)
83
 originalsongs = []
82
 originalsongs = []
84
 originalartists = []
83
 originalartists = []
85
 for fn in glob.iglob(os.path.join(basedir, '**', '*.wav'), recursive=True):
84
 for fn in glob.iglob(os.path.join(basedir, '**', '*.wav'), recursive=True):

Loading…
Cancel
Save