Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 182249 | Differences between
and this patch

Collapse All | Expand All

(-)src/conversions.py.orig (-1 / +1 lines)
Lines 240-246 Link Here
240
    mp3file=common.gettempfilename("mp3")
240
    mp3file=common.gettempfilename("mp3")
241
    try:
241
    try:
242
        try:
242
        try:
243
            run(ffmpeg, "-i", shortfilename(inputfilename), "-hq", "-ab", `bitrate`, "-ar", `samplerate`, "-ac", `channels`, shortfilename(mp3file))
243
            run(ffmpeg, "-i", shortfilename(inputfilename), "-sameq", "-ab", `bitrate`, "-ar", `samplerate`, "-ac", `channels`, shortfilename(mp3file))
244
        except common.CommandExecutionFailed, e:
244
        except common.CommandExecutionFailed, e:
245
            # we get this exception on bad parameters, or any other
245
            # we get this exception on bad parameters, or any other
246
            # issue so we assume bad parameters for the moment.
246
            # issue so we assume bad parameters for the moment.

Return to bug 182249