Fixed the encoder adding 'lame', 'ffmpeg', 'xld' to the end of the encoder path which was breaking encoding on windows. Also prevent Headphones from daemonizing under Windows

This commit is contained in:
rembo10
2012-12-05 05:06:49 -05:00
parent 7c482b3604
commit 3b757cfce0
5 changed files with 39 additions and 15 deletions
+4 -1
View File
@@ -109,7 +109,10 @@ def main():
headphones.initialize()
if headphones.DAEMON:
headphones.daemonize()
if sys.platform == "win32":
print "Daemonize not supported under Windows, starting normally"
else:
headphones.daemonize()
#configure the connection to the musicbrainz database
headphones.mb.startmb()