Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 474346

Summary: media-video/dvdrip-0.98.11-r1: uses ffmpeg command directly and does not work with libav
Product: Gentoo Linux Reporter: Nikoli <nikoli>
Component: Current packagesAssignee: Luca Barbato <lu_zero>
Status: RESOLVED FIXED    
Severity: normal CC: media-video
Priority: Normal    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---
Bug Depends on:    
Bug Blocks: 474408    

Description Nikoli 2013-06-22 20:24:56 UTC
'grep -Ri avconv' finds nothing in sources, but 'grep -R ffmpeg' finds a lot:
$ cat lib/Video/DVDRip/Title.pm|grep 'ffmpeg '
        . "ffmpeg -r $frame_rate -i - -an -r 1 -ss '$start' -vframes 1 snapshot%03d.png ";

$ cat lib/Video/DVDRip/Depend.pm |grep -i ffmpeg -a2
        suggested => "6.2.3",
    },
    ffmpeg => {
        order       => ++$ORDER,
        command     => "ffmpeg",
        comment     => __ "FFmpeg video converter command line program",
        optional    => 1,
        version_cmd => "ffmpeg -version",
        get_version => sub {
            my ($cmd) = @_;
Comment 1 Samuli Suominen (RETIRED) gentoo-dev 2014-03-27 19:29:11 UTC
so, what's the command that should be used that is in both, ffmpeg and libav, then?
Comment 2 Samuli Suominen (RETIRED) gentoo-dev 2014-03-27 19:29:46 UTC
if there is none, then sounds like libav should be creating a compability symlink
Comment 3 Luca Barbato gentoo-dev 2014-07-23 18:48:39 UTC
that syntax is deprecated even in recent ffmpeg version so I doubt a symlink would do any good. 

ubuntu has a patch for it I think anyway.
Comment 5 Samuli Suominen (RETIRED) gentoo-dev 2014-07-24 03:38:55 UTC
the patch is no good, it simply does s/ffmpeg/avconv/
Comment 6 Pacho Ramos gentoo-dev 2015-10-27 18:53:21 UTC
[master 3ab3271] media-video/dvdrip: Support libav too (#474346)
 2 files changed, 110 insertions(+)
 create mode 100644 media-video/dvdrip/dvdrip-0.98.11-r3.ebuild
 create mode 100644 media-video/dvdrip/files/dvdrip-0.98.11-libav.patch