From 8544def27df3ff4d0ac07b2dfd221f34406227e2 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Tue, 2 Jul 2013 16:37:48 +0200 Subject: libav no longer ships ffmpeg, so use avconv --- backend/zmusic/endpoints/song.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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": -- cgit v1.2.3-59-g8ed1b