R
R
rumkin2016-05-24 17:28:46
fmpeg
rumkin, 2016-05-24 17:28:46

What is the error of converting mov to mp4 for android?

I convert videos for viewing on mobile platforms. In two versions:

  1. mp4 (Android) -> mp4 resize
  2. mov (iOS) -> mp4 resize, convert

The first option works on both Android and iOS. The second one doesn't work on Andorid.
ffmpeg command example:
ffmpeg -i app/data/storage/68/fa/39/68fa392b-df25-4622-93ab-cf9bf1253f63 \
       -y -b:a 128k -ac 2 -acodec libfdk_aac -b:v 300k -vcodec libx264 \
       -filter:v scale=w=320:h=trunc(ow/a/2)*2 -vprofile baseline \
       -movflags faststart -f mp4 \
       app/data/storage/68/fa/39/68fa392b-df25-4622-93ab-cf9bf1253f63.mp4

ffprobe output for the resulting file:
ffprobe version N-80026-g936751b Copyright (c) 2007-2016 the FFmpeg developers
  built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04.3)
  configuration: --extra-libs=-ldl --prefix=/opt/ffmpeg --mandir=/usr/share/man --enable-avresample --disable-debug --enable-nonfree --enable-gpl --enable-version3 --enable-libopencore-amrnb --enable-libopencore-amrwb --disable-decoder=amrnb --disable-decoder=amrwb --enable-libpulse --enable-libfreetype --enable-gnutls --enable-libx264 --enable-libx265 --enable-libfdk-aac --enable-libvorbis --enable-libmp3lame --enable-libopus --enable-libvpx --enable-libspeex --enable-libass --enable-avisynth --enable-libsoxr --enable-libxvid --enable-libvidstab
  libavutil      55. 24.100 / 55. 24.100
  libavcodec     57. 42.100 / 57. 42.100
  libavformat    57. 36.100 / 57. 36.100
  libavdevice    57.  0.101 / 57.  0.101
  libavfilter     6. 45.100 /  6. 45.100
  libavresample   3.  0.  0 /  3.  0.  0
  libswscale      4.  1.100 /  4.  1.100
  libswresample   2.  0.101 /  2.  0.101
  libpostproc    54.  0.100 / 54.  0.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '68fa392b-df25-4622-93ab-cf9bf1253f63.mp4':
  Metadata:
    major_brand     : isom
    minor_version   : 512
    compatible_brands: isomiso2avc1mp41
    encoder         : Lavf57.36.100
  Duration: 00:00:00.65, start: 0.000000, bitrate: 297 kb/s
    Stream #0:0(und): Video: h264 (Constrained Baseline) (avc1 / 0x31637661), yuv420p, 320x568, 178 kb/s, 30 fps, 30 tbr, 15360 tbn (default)
    Metadata:
      handler_name    : VideoHandler
    Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 129 kb/s (default)
    Metadata:
      handler_name    : SoundHandler

What could be the problem? How to look for her?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
R
rumkin, 2016-05-24
@rumkin

The problem turned out to be in the file name containing a colon.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question