Formato de vídeo para iPhone e Android?

6

Existe um formato que funciona tanto no iPhone quanto no Android?

Eu tenho tentado codificar vídeos em MP4 usando ffmpeg - no entanto, usando libx264 ou mpeg4 - os vídeos funcionam apenas no Android ou no iPhone - nunca os dois.

Isso é possível? Se sim, quais seriam os parâmetros?

Obrigado

    
por Euro N 08.06.2010 / 10:32

1 resposta

3

De este post :

Both the iPhone and Google Android phones seem to have limited codec support when it comes to video. Both support MP4, so I did a bit of searching on the internet to find out how to convert to a suitable format using MPlayer's MEncoder.

Video cannot have a high compression rate, and the video size generally needs to be scaled down to 480:352. The video codec used here is x264 with a bitrate of 512.

mencoder <inputfile> -o <outputfile>.mp4 \
  -vf dsize=480:352:2,scale=-8:-8,harddup \
  -oac faac -faacopts mpeg=4:object=2:raw:br=128 \
  -of lavf -lavfopts format=mp4 -ovc x264 -sws 9 \
  -x264encopts nocabac:level_idc=30:bframes=0:bitrate=512:threads=auto:turbo=1:global_header:threads=auto:subq=5:frameref=6:partitions=all:trellis=1:chroma_me:me=umh
    
por 09.06.2010 / 12:51