On Thu, Jul 15, 2010 at 12:17 PM, AG <computing.account@googlemail.com> wrote:
> What recommendations would you have for an app to convert *.mp4 to either
> *.mp3 or *.ogg?
oggconvert?
--
To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Archive: AANLkTilmOwkwn_ULEHEys4i_QWH_xrNDwjhjCKDSspuD@mail .gmail.com">http://lists.debian.org/AANLkTilmOwkwn_ULEHEys4i_QWH_xrNDwjhjCKDSspuD@mail .gmail.com
07-15-2010, 08:13 PM
jeremy jozwik
Converting *.mp4 to *.mp3 or *.ogg
On Thu, Jul 15, 2010 at 12:45 PM, Jordon Bedwell <jordon@envygeeks.com> wrote:
> Usually if the file ends in MP4 it's video, unless they forgot that most
> people use M4A for video (like Apple.) would be better if the OP could
> give us more information on that subject, is it a video or is it audio?
> MP4 Video to MP3 !== TRUE.
oggconvert also does video. changes it to ... *.ogv i believe.
--
To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Archive: AANLkTilTX8IxI-RDpYv336mJehHeA3ySInJshuR5UZz9@mail.gmail.com">htt p://lists.debian.org/AANLkTilTX8IxI-RDpYv336mJehHeA3ySInJshuR5UZz9@mail.gmail.com
07-15-2010, 10:28 PM
Rob Owens
Converting *.mp4 to *.mp3 or *.ogg
On Thu, Jul 15, 2010 at 08:17:28PM +0100, AG wrote:
> Hey all
>
> What recommendations would you have for an app to convert *.mp4 to
> either *.mp3 or *.ogg?
>
soundconverter
-Rob
--
To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Archive: 20100715222846.GA2389@aurora.owens.net">http://lists.debian.org/20100715222846.GA2389@aurora.owens.net
07-16-2010, 12:41 AM
Michael Iatrou
Converting *.mp4 to *.mp3 or *.ogg
When the date was Thursday 15 of July 2010, AG wrote:
> Hey all
>
> What recommendations would you have for an app to convert *.mp4 to
> either *.mp3 or *.ogg?
>
> Thanks for any suggestions.
>
> AG
>
I used a script like this (I just rewrote it from the top of my head, so
this one is untested):
EXT="mp4"
DEST="/home/michael/music"
for F in *.${EXT}; do
N=${F/$EXT/wav}
mplayer -vc dummy -vo null -ao pcm -aofile "${DEST}/${N}" "$F"
normalize "${DEST}/${N}"
lame --verbose -q 2 --abr 192 "${DEST}/${N}" "${DEST}/${F/$EXT/mp3}"
done
The catch with this over-engineered and occasionally inefficient script was
that I would use it for both random audio formats and video files to extract
the audio track (think presentation-to-podcast-like conversion).
--
Michael Iatrou
--
To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Archive: 201007151941.33273.m.iatrou@freemail.gr">http://lists.debian.org/201007151941.33273.m.iatrou@freemail.gr
07-16-2010, 07:07 AM
Andrei Popescu
Converting *.mp4 to *.mp3 or *.ogg
On Jo, 15 iul 10, 20:17:28, AG wrote:
> Hey all
>
> What recommendations would you have for an app to convert *.mp4 to
> either *.mp3 or *.ogg?
pacpl (Perl Audio Converter)
Regards,
Andrei
--
Offtopic discussions among Debian users and developers:
http://lists.alioth.debian.org/mailman/listinfo/d-community-offtopic
07-16-2010, 07:54 AM
Alan Chandler
Converting *.mp4 to *.mp3 or *.ogg
On 15/07/10 20:17, AG wrote:
Hey all
What recommendations would you have for an app to convert *.mp4 to
either *.mp3 or *.ogg?
Thanks for any suggestions.
AG
ffmpeg ?
pretty much the swiss army knife of audio visual conversion.
The version in debian.multimedia.org has more codecs than the main
Debian repository.
--
Alan Chandler
http://www.chandlerfamily.org.uk
--
To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org