Unix/Linux

NAVIGATION
CATEGORIES
REFERRENCE
LINKS
  • dvd -> mp3?

    11 answers - 91 bytes - related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

    Is there a Linux app that can rip the audio track of a dvd to mp3
    format?
  • No.1 | | 198 bytes | |

    Bob Tennent wrote:
    Is there a Linux app that can rip the audio track of a dvd to mp3
    format?
    LoL! Too many hits on google to answer this at serious ng's!
    Eric
  • No.2 | | 666 bytes | |

    Bob Tennent <BobT@cs.queensu.cawrites:

    >Is there a Linux app that can rip the audio track of a dvd to mp3
    >format?


    mp3 is a propriatary format, encumbered by patents in a number of
    countries. The patent owner has allowed decoders to be used for free, but
    restricts encoders. Thus the use of an mp3 encoder may infringe patent law
    in your country.
    However assuming this has been taken care of, under Linux the primary
    encoder is a program called lame. (Lame Ain't an Mp3 Encoder).
    So convert the dvd tracks to something like a .wav file, and then feed that
    through lame.

  • No.3 | | 862 bytes | |

    Tue, 12 Jul 2005 22:42:41 +0200, Eric Teuber wrote:

    >Is there a Linux app that can rip the audio track of a dvd to mp3
    >format?
    >

    LoL! Too many hits on google to answer this at serious ng's!

    Unfortunately, those Google hits haven't helped. The most likely app,
    dvd::rip, aka perl-Video-DVDRip doesn't install because of dependency
    bugs:

    # yum install perl-Video-DVDRip
    :
    Error: Missing Dependency: libcdio.so.5 is needed by package vcdimager
    Error: Missing Dependency: libiso9660.so.4(IS) is needed by package
    vcdimager

    and I don't have time to resolve the dozens of dependencies that would
    be involved if I tried to build the source or to figure out how to use
    mplayer. I guess I'll complain to the freshrpms maintainer.

  • No.4 | | 566 bytes | |

    Bob Tennent wrote:
    and I don't have time to resolve the dozens of dependencies that would
    be involved if I tried to build the source or to figure out how to use
    mplayer.

    too bad, "i want this and that but i do not have the time", great!

    I guess I'll complain to the freshrpms maintainer.

    complain? really? He/Her/They is/are not responsible for your
    installation and obviously other users do not have your problems if you
    seek at google ;-). But without time, you will never end in a glory ;-)

    Eric
  • No.5 | | 574 bytes | |

    Bob Tennent wrote:
    and I don't have time to resolve the dozens of dependencies that would
    be involved if I tried to build the source or to figure out how to use
    mplayer.

    too bad, "i want this and that but i do not have the time", great!

    I guess I'll complain to the freshrpms maintainer.

    complain? really? He/Her/They is/are not responsible for your
    installation and obviously other users do not have your problems if you
    have a real look at google. But without time, you will never end in a
    glory.

    Eric
  • No.6 | | 1278 bytes | |

    Bob Tennent wrote:
    Tue, 12 Jul 2005 22:42:41 +0200, Eric Teuber wrote:
    >
    >Is there a Linux app that can rip the audio track of a dvd to mp3
    >format?
    >

    LoL! Too many hits on google to answer this at serious ng's!

    Unfortunately, those Google hits haven't helped. The most likely app,
    dvd::rip, aka perl-Video-DVDRip doesn't install because of dependency
    bugs:

    # yum install perl-Video-DVDRip
    :
    Error: Missing Dependency: libcdio.so.5 is needed by package vcdimager
    Error: Missing Dependency: libiso9660.so.4(IS) is needed by package
    vcdimager

    and I don't have time to resolve the dozens of dependencies that would
    be involved if I tried to build the source or to figure out how to use
    mplayer.

    too bad, "i want this and that but i do not have the time", great!

    I guess I'll complain to the freshrpms maintainer.

    complain about what? He/Her/They is/are not responsible for your
    installation and obviously other users do not have your problems if you
    have a real look at google. But without time, you will never end in a
    glory.

    If you had the time you could dissolve the depencies easily.

    Eric

  • No.7 | | 648 bytes | |

    Bob Tennent wrote:
    and I don't have time to resolve the dozens of dependencies that would
    be involved if I tried to build the source or to figure out how to use
    mplayer.

    too bad, "i want this and that but i do not have the time", great!

    I guess I'll complain to the freshrpms maintainer.

    complain about what? He/Her/They is/are not responsible for your
    installation and obviously other users do not have your problems if you
    have a real look at google. But without time, you will never end in a
    glory.

    If you had the time you could dissolve the dependencies easily.

    Eric
  • No.8 | | 1037 bytes | |

    2005-07-13, Eric Teuber <eric000@gmx.netwrote:
    Bob Tennent wrote:
    >and I don't have time to resolve the dozens of dependencies that would
    >be involved if I tried to build the source or to figure out how to use
    >mplayer.
    >
    >

    too bad, "i want this and that but i do not have the time", great!
    >
    >I guess I'll complain to the freshrpms maintainer.
    >>

    >

    complain about what? He/Her/They is/are not responsible for your
    installation and obviously other users do not have your problems if you
    have a real look at google. But without time, you will never end in a
    glory.

    If you had the time you could dissolve the dependencies easily.

    This is the _fourth_ followup I have seen from you to this
    posting. Is your followup really _that_ important? 1/2 :-)

    Robert Riches
    spamtrap42@verizon.net
    (Yes, that is one of my email addresses.)
  • No.9 | | 667 bytes | |

    Tue, 12 Jul 2005 20:29:23 +0000, Bob Tennent wrote:

    Is there a Linux app that can rip the audio track of a dvd to mp3 format?

    Mplayer can rip the audio to wav format, then you can run it through an
    mp3 encoder after that. The command-line options for mplayer are
    extensive and I had to track down the right ones through Google:

    mplayer -dvd://1 -chapter s-e -vo null -ao pcm -aofile out.wav

    Replace s and e with the starting and ending chapters you want to rip;
    leave them out to get the whole thing. I find that the track comes out
    rather quiet and needs to be run through Audacity or something to boost
    its volume though.
  • No.10 | | 301 bytes | |

    Sun, 17 Jul 2005 15:12:14 +0000, Ian Merrithew wrote:

    I find that the track comes out
    rather quiet and needs to be run through Audacity or something to boost
    its volume though.

    as I just figured out, let mplayer do that too with -af volume=12.
    That seems about the right gain.
  • No.11 | | 699 bytes | |

    Sun, 17 Jul 2005 15:12:14 GMT, Ian Merrithew wrote:

    >Is there a Linux app that can rip the audio track of a dvd to mp3 format?
    >

    Mplayer can rip the audio to wav format, then you can run it through an
    mp3 encoder after that. The command-line options for mplayer are
    extensive and I had to track down the right ones through Google:

    mplayer -dvd://1 -chapter s-e -vo null -ao pcm -aofile out.wav

    Replace s and e with the starting and ending chapters you want to rip;

    This mostly worked for me except that one "chapter" seemed to put mplayer
    into an infinite loop. So I used xine -A file for that.

    Bob T.

Re: dvd -> mp3?


max 4000 letters.
Your nickname that display:
In order to stop the spam: 5 + 4 =
QUESTION ON "Unix/Linux"

EMSDN.COM