-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPython-scripts.py
More file actions
36 lines (28 loc) · 1.33 KB
/
Python-scripts.py
File metadata and controls
36 lines (28 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import os
from pydub import AudioSegment
from pydub.playback import play
def is_muziekbestand(bestandsnaam):
# Definieer extensies van muziekbestanden
muziek_extensies=['.mp3','.wav','.flac','.ogg','.m4a']
return any(bestandsnaam.lower().endswith(ext) for ext in muziek_extensies)
def convert_to_mp3(invoer_map, uitvoer_map):
# Als de uitvoer_map niet bestaat, maak die dan.
if not os.path.exists(uitvoer_map):
os.makedirs(uitvoer_map)
# Voor elk bestand in de invoer_map.
for bestandsnaam in os.listdir(invoer_map):
# Filter de muziek uit de bestanden van de invoer_map.
if is_muziekbestand(bestandsnaam):
bestandspad = os.path.join(invoer_map, bestandsnaam)
try:
# Converteer elk muziekbestand naar mp3-formaat
convert_to_mp3(bestandspad, uitvoer_map)
except Exception as e:
# Geef error weer voor debugging
print(f"Error processing {bestandsnaam}: {str(e)}")
if __name__ == "__main__":
# Maak de invoermap gelijk aan de huidige map.
invoer_map = os.path.dirname(os.path.realpath(__file__))
# Vraag de gebruiker waar de uitvoermap moet worden opgeslagen en sla deze op in uitvoermap.
uitvoer_map = input("Wat is de uitvoermap: ")
convert_to_mp3(invoer_map, uitvoer_map)