Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

14 řádky
440 B

  1. import os, inspect
  2. import subprocess
  3. musicdir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))+"/music"+"/1"
  4. for (path, dirnames, filenames) in os.walk(musicdir):
  5. #folders.extend(os.path.join(path, name) for name in dirnames)
  6. for name in filenames:
  7. file = os.path.join(path, name)
  8. #os.system("mpg123 " + "'" + file + "'")
  9. #os.system("")
  10. subprocess.run(["mpg123", file])