aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--backend/zmusic/endpoints/song.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/zmusic/endpoints/song.py b/backend/zmusic/endpoints/song.py
index 25558b9..01c8002 100644
--- a/backend/zmusic/endpoints/song.py
+++ b/backend/zmusic/endpoints/song.py
@@ -36,7 +36,7 @@ def song(id, ext):
if ext not in [ "ogg", "mp3", "flac", "wav", "webm" ]:
return abort(404)
- transcode_options = [ 'ffmpeg', '-loglevel', 'quiet', '-i', song.filename, '-f', ext, '-y' ];
+ transcode_options = [ 'avconv', '-loglevel', 'quiet', '-i', song.filename, '-f', ext, '-y' ];
if ext == "ogg" or ext == "webm":
transcode_options.extend([ '-acodec', 'libvorbis', '-aq', '5' ])
elif ext == "mp3":