Package: devede Version: 3.23.0~ds1-2 Severity: important Tags: patch Dear maintainer,
Devede passes -b:v <bitrate> to avconv, but this does not override default video bitrate comming from -target option. This easily results in output that does not fit selected media capacity, "Adjust disc usage" having no effect. Devede should pass -b <bitrate> to avconv. Maybe this is bug in avconv, not respecting -b:v when -target given, but if I remember devede passes -b <bitrate> to ffmpeg if used, so this is at least inconsistency. Regards, Petr --- System information. --- Architecture: amd64 Kernel: Linux 3.2.0-4-amd64 Debian Release: 7.1 900 stable-updates ftp.cz.debian.org 900 stable security.debian.org 900 stable ftp.cz.debian.org 900 proposed-updates ftp.cz.debian.org 60 stable www.deb-multimedia.org 500 wheezy-backports ftp.cz.debian.org --- Package information. --- Depends (Version) | Installed =====================================-+-============== dvdauthor | 0.7.0-1.1+b2 genisoimage | 9:1.1.11-2 imagemagick | 8:6.7.7.10-5 libav-tools | 6:0.8.6-1 libavcodec-extra-53 | 6:0.8.6-1 libvorbis0a | 1.3.2-1.3 libvorbisfile3 | 1.3.2-1.3 mencoder | 2:1.0~rc4.dfsg1+svn34540-1+b2 mplayer | 2:1.0~rc4.dfsg1+svn34540-1+b2 OR mplayer2 | python-cairo | 1.8.8-1+b2 python-dbus | 1.1.1-1 python-gobject | 3.2.2-2 python-gtk2 (>= 2.16.0) | 2.24.0-3+b1 ttf-freefont | vcdimager | 0.7.24+dfsg-0.1 python (>= 2.6.6-7~) | 2.7.3-4 Recommends (Version) | Installed ==========================-+-=========== libmp3lame0 | 1:3.99.5-dmo2 Package's Suggests field is empty.
Description: Correctly pass bitrate to avconv Use -b <bitrate> which overrides default values comming from -target option, rather than -b:v <bitrate> which does not. Author: Petr Gajdůšek <[email protected]> Last-Update: 2013-06-21 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/devede_avconv_convert.py +++ b/devede_avconv_convert.py @@ -473,7 +473,7 @@ command_var.append("2") if (vcd==False): - command_var.append("-b:v") + command_var.append("-b") command_var.append(str(videorate)+"k") #if disctype!="divx":

