<div dir="ltr">I have MP4 source videos, that contain:<div><br></div><div>video: H264</div><div>audio: G.711 (mulaw) </div><div><br></div><div>I want to use concatenation on source videos to get one MP4 file.</div><div><br></div><div>I used concat filter by first creating a list: mylist.txt file as follows:</div><div><br></div><div><div>file 'v1.mp4'</div><div>file 'v2.mp4'</div><div>file 'v3.mp4'</div></div><div><br></div><div>then envoked ffmpeg command like this:</div><div><br></div><div>ffmpeg -f concat -i mylist.txt -c copy op.mp4 -y<br></div><div><br></div><div>This worked only with files that are mp41 compatible.</div><div><br></div><div>With mp42 files that I mentioned above, I get this error:</div><div><br></div><div><div>[mp4 @ 0x24ca780] Could not find tag for codec pcm_mulaw in stream #1, codec not currently supported in container</div><div>Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument</div></div><div><br></div><div>Full command line:</div><div><br></div><div>--------------------</div><div><div>ffmpeg -f concat -i mylist.txt -c copy op.mp4 -y</div><div>ffmpeg version N-82760-g55affd9 Copyright (c) 2000-2016 the FFmpeg developers</div><div>  built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04.3)</div><div>  configuration: --pkg-config-flags=--static --extra-cflags=-I/home/ubuntu/ffmpeg_build/include --extra-ldflags=-L/home/ubuntu/ffmpeg_build/lib --enable-gpl --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-nonfree</div><div>  libavutil      55. 41.101 / 55. 41.101</div><div>  libavcodec     57. 66.109 / 57. 66.109</div><div>  libavformat    57. 58.101 / 57. 58.101</div><div>  libavdevice    57.  2.100 / 57.  2.100</div><div>  libavfilter     6. 68.100 /  6. 68.100</div><div>  libswscale      4.  3.101 /  4.  3.101</div><div>  libswresample   2.  4.100 /  2.  4.100</div><div>  libpostproc    54.  2.100 / 54.  2.100</div><div>[mov,mp4,m4a,3gp,3g2,mj2 @ 0x23ed7c0] Auto-inserting h264_mp4toannexb bitstream filter</div><div>Guessed Channel Layout for Input Stream #0.0 : mono</div><div>Input #0, concat, from 'mylist.txt':</div><div>  Duration: N/A, start: 0.000000, bitrate: 518 kb/s</div><div>    Stream #0:0(eng): Audio: pcm_mulaw (ulaw / 0x77616C75), 8000 Hz, mono, s16, 64 kb/s</div><div>    Metadata:</div><div>      creation_time   : 2016-12-20T03:41:14.000000Z</div><div>      handler_name    : ?Apple Sound Media Handler</div><div>    Stream #0:1(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080, 454 kb/s, 27.70 fps, 27.70 tbr, 90k tbn, 180k tbc</div><div>    Metadata:</div><div>      creation_time   : 2016-12-20T03:41:14.000000Z</div><div>      handler_name    : ?Apple Video Media Handler</div><div>      encoder         : H.264</div><div>[mp4 @ 0x2413780] Could not find tag for codec pcm_mulaw in stream #1, codec not currently supported in container</div><div>Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument</div><div>Stream mapping:</div><div>  Stream #0:1 -> #0:0 (copy)</div><div>  Stream #0:0 -> #0:1 (copy)</div><div>    Last message repeated 1 times</div></div><div>----------------</div><div><br></div><div>I'm on Ubuntu 14.04 OS.</div><div><br></div><div>Is there anyway I can get this functionality to work with mp42 compatible files? any help is much appreciated,</div><div><br></div><div>Thanks,</div></div>