Why would I need ffmpeg instead of mp3gain? The extract-replaygain script seems 
to specifically require either mp3gain or replaygain for it to work. I can’t 
see any reference to ffmpeg



if (($file =~ /\.mp3$/i) || (test_mime() =~ /audio\/mpeg/))  {

  if (`which mp3gain`) {

    my $out = `mp3gain -q "$file" 2> /dev/null` ;
    $out =~ /Recommended "Track" dB change: (.*)$/m || die ;
    print "$1 dB\n" ;

  } elsif (`which replaygain`) {
    use_replaygain()
  } else {

    print STDERR "Cannot find mp3gain nor replaygain binaries!\n";


> On 9 Apr 2019, at 5:35 pm, Yamakaky <notificati...@github.com> wrote:
> 
> It replaces mp3gain and friends with only ffmpeg which you still need to 
> install. Running the script will check if ffmpeg is present.
> 
> —
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub 
> <https://github.com/savonet/liquidsoap/issues/749#issuecomment-481137775>, or 
> mute the thread 
> <https://github.com/notifications/unsubscribe-auth/Am23yz_v2-L5jvhNNgHCsQqEVGmRZaTZks5vfELPgaJpZM4cgQ_c>.
> 
> _______________________________________________
> Savonet-users mailing list
> Savonet-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/savonet-users

_______________________________________________
Savonet-users mailing list
Savonet-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to