Converta o itouch mp4 para o ipod video mp4 com o Linux

2

Alguém sabe como eu posso converter arquivos mp4 feitos para o iphone / itouch em arquivos de vídeo que funcionem em um ipod comum que suporte vídeo com Linux.

A linha de comando seria melhor, o suporte multicore também seria bom.

    
por Kyle Brandt 03.03.2010 / 01:38

4 respostas

2

Eu sugeriria Handbrake .

HandBrake is an open-source, GPL-licensed, multiplatform, multithreaded video transcoder, available for MacOS X, Linux and Windows.

Além disso, possui predefinições internas para iPod e iPhone e pode ser usado com uma GUI ou CLI.

    
por 03.03.2010 / 01:53
1

Eu instalei o ffmpeg, libfaad, libfaac e x264 e tenho usado este comando

ffmpeg -i "file.avi" -acodec libfaac -ab 128k -s 640x480 -vcodec libx264 -vpre hq -vpre ipod640 -threads 0 -f ipod "file.m4v"  

Eu construo o ffmpeg dessa maneira

svn checkout svn://svn.ffmpeg.org/ffmpeg/trunk ffmpeg
cd ffmpeg
./configure --enable-gpl --enable-version3 --enable-nonfree --enable-postproc --enable-pthreads --enable-libfaac --enable-libfaad --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libx264 --enable-libxvid --enable-x11grab
make all
    
por 03.03.2010 / 05:08
0

O FFmpeg é provavelmente o melhor conversor de vídeo gratuito disponível.

link

    
por 03.03.2010 / 03:36
0

O Avidemux tem algumas predefinições incorporadas para produtos da Apple:

Avidemux is a free video editor designed for simple cutting, filtering and encoding tasks. It supports many file types, including AVI, DVD compatible MPEG files, MP4 and ASF, using a variety of codecs. Tasks can be automated using projects, job queue and powerful scripting capabilities.

Avidemux is available for Linux, BSD, Mac OS X and Microsoft Windows under the GNU GPL license. The program was written from scratch by Mean, but code from other people and projects has been used as well. Patches, translations and even bug reports are always welcome.

    
por 10.05.2010 / 12:26