Video Transcoder & Screen Recorder

Mike Wright mike.wright at mailinator.com
Thu Jul 25 15:10:18 UTC 2013


07/25/2013 01:26 AM, Junayeed Ahnaf wrote:
> Hello,
>
> I couldn't install handbrake on fedora (a search showed me that
> Handbrake doesn't compile on F19 due to some issue in llvm). So, I was
> wondering what better alternate is there for video transcoding?
>

I recently had success using ffmpeg transcoding my .flv files into .mp4 
and all my .mp4 files into .mp3.

e.g. transcode .flv to .mp4:
ffmpeg -i "$IN.flv" -acodec copy -vcodec copy "$OUT.mp4"

e.g. transcode only audio from .mp4 to .mp3
ffmpeg -i  "$IN.mp4" -vn -acodec libmp3lame -ac 2 -ab 128k -ar 44100 
"$OUT.mp3"

Hope that helps,
Mike Wright


More information about the users mailing list