Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (51)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (6345)

  • Error setting option pix_fmt to value -1

    8 juillet 2018, par Java Android

    I am using below command to convert video to gif-

    String complexCommand = new String[]{"-ss", "" + startMs / 1000, "-t", "" + (endMs - startMs) / 1000, "-y", "-i", inputFileAbsolutePath, "-vf", "scale=500:-1", "-r", "10", outputFileAbsolutePath};

    The command seems to work fine in my device but I got below error from one of user’s device-

    "ffmpeg version n3.0.1 Copyright (c) 2000-2016 the FFmpeg developers\n
    built with gcc 4.8 (GCC)\n configuration : —target-os=linux
    —cross-prefix=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi-
    —arch=arm —cpu=cortex-a8 —enable-runtime-cpudetect —sysroot=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/sysroot
    —enable-pic —enable-libx264 —enable-libass —enable-libfreetype —enable-libfribidi —enable-libmp3lame —enable-fontconfig —enable-pthreads —disable-debug —disable-ffserver —enable-version3 —enable-hardcoded-tables —disable-ffplay —disable-ffprobe —enable-gpl —enable-yasm —disable-doc —disable-shared —enable-static —pkg-config=/home/vagrant/SourceCode/ffmpeg-android/ffmpeg-pkg-config —prefix=/home/vagrant/SourceCode/ffmpeg-android/build/armeabi-v7a —extra-cflags=’-I/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/include
    -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all’ —extra-ldflags=’-L/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/lib
    -Wl,-z,relro -Wl,-z,now -pie’ —extra-libs=’-lpng -lexpat -lm’ —extra-cxxflags=\n libavutil 55. 17.103 / 55. 17.103\n libavcodec 57. 24.102 / 57. 24.102\n libavformat 57. 25.100 /
    57. 25.100\n libavdevice 57. 0.101 / 57. 0.101\n libavfilter 6. 31.100 / 6. 31.100\n libswscale 4. 0.100 / 4. 0.100\n libswresample 2. 0.101 / 2. 0.101\n libpostproc 54. 0.100 /
    54. 0.100\n[mov,mp4,m4a,3gp,3g2,mj2 @ 0xac53b200] Could not find codec parameters for stream 0 (Video : h264 (avc1 / 0x31637661), none,
    640x480, 473 kb/s) : unspecified pixel format\nConsider increasing the
    value for the ’analyzeduration’ and ’probesize’ options\nInput #0,
    mov,mp4,m4a,3gp,3g2,mj2, from
    ’/storage/emulated/0/Movies/cut_video.mp4’ :\n Metadata :\n
    major_brand : isom\n minor_version : 512\n
    compatible_brands : isomiso2avc1mp41\n encoder :
    Lavf57.25.100\n Duration : 00:00:15.02, start : 0.000000, bitrate : 652
    kb/s\n Stream #0:0(und) : Video : h264 (avc1 / 0x31637661), none,
    640x480, 473 kb/s, 25 fps, 25 tbr, 12800 tbn, 25600 tbc (default)\n
    Metadata :\n handler_name : VideoHandler\n Stream #0:1(und) :
    Audio : aac (LC) (mp4a / 0x6134706D), 48000 Hz, 5.1, fltp, 384 kb/s
    (default)\n Metadata :\n handler_name :
    SoundHandler\n[buffer @ 0xac540bb0] Unable to parse option value
    \"-1\" as pixel format\n Last message repeated 1 times\n[buffer @
    0xac540bb0] Error setting option pix_fmt to value -1.\n[graph 0 input
    from stream 0:0 @ 0xac540b20] Error applying options to the
    filter.\nError opening filters !\n"

    Why am i getting this error and how can i resolve it ?

  • merge video of images(without audio) to another video(with audio) through ffmpeg in android

    28 février 2018, par Raghav Sharma

    I am using the below qwery for creating video from image

    String imageToVideo[]={"-loop","1","-i",picturePath,"-pix_fmt","yuv420p","-t","6",VideoSavePath};

    successfully created video and then i merge created video to another video but getting issue

    below is the command for merging two videos

    VideoSavePath — created video from image

    secondVideoPath — path of some random video

    String VidCommand[]={"-y","-i",VideoSavePath ,"-i", secondVideoPath, "-filter_complex","[0:0][1:0]concat=n=2:v=1:a=0", bothMerge}

    But now i am stuck with this error :

    Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:57.829 9364-9364/com.demovideomerge D/MainActivity : progress : libavutil 55. 17.103 / 55. 17.103
    02-27 21:14:57.830 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:57.830 9364-9364/com.demovideomerge D/MainActivity : progress : libavcodec 57. 24.102 / 57. 24.102
    02-27 21:14:57.831 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:57.831 9364-9364/com.demovideomerge D/MainActivity : progress : libavformat 57. 25.100 / 57. 25.100
    02-27 21:14:57.831 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:57.832 9364-9364/com.demovideomerge D/MainActivity : progress : libavdevice 57. 0.101 / 57. 0.101
    02-27 21:14:57.833 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:57.833 9364-9364/com.demovideomerge D/MainActivity : progress : libavfilter 6. 31.100 / 6. 31.100
    02-27 21:14:57.833 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:57.834 9364-9364/com.demovideomerge D/MainActivity : progress : libswscale 4. 0.100 / 4. 0.100
    02-27 21:14:57.834 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:57.834 9364-9364/com.demovideomerge D/MainActivity : progress : libswresample 2. 0.101 / 2. 0.101
    02-27 21:14:57.835 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:57.835 9364-9364/com.demovideomerge D/MainActivity : progress : libpostproc 54. 0.100 / 54. 0.100
    02-27 21:14:57.857 9364-9389/com.demovideomerge V/RenderScript : Application requested CPU execution
    02-27 21:14:57.900 9364-9389/com.demovideomerge V/RenderScript : 0xb772e190 Launching thread(s), CPUs 4
    02-27 21:14:57.945 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:57.947 9364-9364/com.demovideomerge D/MainActivity : progress : Input #0, mov,mp4,m4a,3gp,3g2,mj2, from ’/storage/emulated/0/Movies/Merge_Video5.mp4’ :
    02-27 21:14:57.948 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:57.948 9364-9364/com.demovideomerge D/MainActivity : progress : Metadata :
    02-27 21:14:57.948 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:57.951 9364-9364/com.demovideomerge D/MainActivity : progress : major_brand : isom
    02-27 21:14:57.951 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:57.954 9364-9364/com.demovideomerge D/MainActivity : progress : minor_version : 512
    02-27 21:14:57.954 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:57.956 9364-9364/com.demovideomerge D/MainActivity : progress : compatible_brands : isomiso2avc1mp41
    02-27 21:14:57.956 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:57.957 9364-9364/com.demovideomerge D/MainActivity : progress : encoder : Lavf57.25.100
    02-27 21:14:57.957 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:57.959 9364-9364/com.demovideomerge D/MainActivity : progress : Duration : 00:00:06.00, start : 0.000000, bitrate : 80 kb/s
    02-27 21:14:57.959 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:57.961 9364-9364/com.demovideomerge D/MainActivity : progress : Stream #0:0(und) : Video : h264 (High) (avc1 / 0x31637661), yuv420p, 540x960, 76 kb/s, 25 fps, 25 tbr, 12800 tbn, 50 tbc (default)
    02-27 21:14:57.961 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:57.961 9364-9364/com.demovideomerge D/MainActivity : progress : Metadata :
    02-27 21:14:57.961 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:57.962 9364-9364/com.demovideomerge D/MainActivity : progress : handler_name : VideoHandler
    02-27 21:14:58.318 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.321 9364-9364/com.demovideomerge D/MainActivity : progress : Input #1, mov,mp4,m4a,3gp,3g2,mj2, from ’/storage/emulated/0/DCIM/Camera/VID_20180209_200422444.mp4’ :
    02-27 21:14:58.322 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.323 9364-9364/com.demovideomerge D/MainActivity : progress : Metadata :
    02-27 21:14:58.323 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.324 9364-9364/com.demovideomerge D/MainActivity : progress : major_brand : mp42
    02-27 21:14:58.324 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.325 9364-9364/com.demovideomerge D/MainActivity : progress : minor_version : 0
    02-27 21:14:58.326 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.327 9364-9364/com.demovideomerge D/MainActivity : progress : compatible_brands : isommp42
    02-27 21:14:58.327 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.329 9364-9364/com.demovideomerge D/MainActivity : progress : creation_time : 2018-02-09 14:34:30
    02-27 21:14:58.331 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.333 9364-9364/com.demovideomerge D/MainActivity : progress : Duration : 00:00:05.59, start : 0.000000, bitrate : 8748 kb/s
    02-27 21:14:58.334 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.338 9364-9364/com.demovideomerge D/MainActivity : progress : Stream #1:0(eng) : Video : h264 (Constrained Baseline) (avc1 / 0x31637661), yuv420p, 864x480, 8283 kb/s, SAR 1:1 DAR 9:5, 29.13 fps, 29.92 tbr, 90k tbn, 180k tbc (default)
    02-27 21:14:58.339 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.340 9364-9364/com.demovideomerge D/MainActivity : progress : Metadata :
    02-27 21:14:58.340 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.341 9364-9364/com.demovideomerge D/MainActivity : progress : rotate : 90
    02-27 21:14:58.341 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.342 9364-9364/com.demovideomerge D/MainActivity : progress : creation_time : 2018-02-09 14:34:30
    02-27 21:14:58.343 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.344 9364-9364/com.demovideomerge D/MainActivity : progress : handler_name : VideoHandle
    02-27 21:14:58.345 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.346 9364-9364/com.demovideomerge D/MainActivity : progress : encoder : MOTO
    02-27 21:14:58.346 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.348 9364-9364/com.demovideomerge D/MainActivity : progress : Side data :
    02-27 21:14:58.348 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.350 9364-9364/com.demovideomerge D/MainActivity : progress : displaymatrix : rotation of -90.00 degrees
    02-27 21:14:58.351 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.355 9364-9364/com.demovideomerge D/MainActivity : progress : Stream #1:1(eng) : Audio : aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 128 kb/s (default)
    02-27 21:14:58.355 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.355 9364-9364/com.demovideomerge D/MainActivity : progress : Metadata :
    02-27 21:14:58.362 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.363 9364-9364/com.demovideomerge D/MainActivity : progress : creation_time : 2018-02-09 14:34:30
    02-27 21:14:58.365 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.366 9364-9364/com.demovideomerge D/MainActivity : progress : handler_name : SoundHandle
    02-27 21:14:58.366 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.370 9364-9364/com.demovideomerge D/MainActivity : progress : [Parsed_concat_0 @ 0xb819c8b0] Input link in1:v0 parameters (size 480x864, SAR 1:1) do not match the corresponding output link in0:v0 parameters (540x960, SAR 1:1)
    02-27 21:14:58.370 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.372 9364-9364/com.demovideomerge D/MainActivity : progress : [Parsed_concat_0 @ 0xb819c8b0] Failed to configure output pad on Parsed_concat_0
    02-27 21:14:58.372 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.376 9364-9364/com.demovideomerge D/MainActivity : progress : Error configuring complex filters.
    02-27 21:14:58.376 9364-9364/com.demovideomerge D/MainActivity : Started command : ffmpeg [Ljava.lang.String ;@8061ebb
    02-27 21:14:58.377 9364-9364/com.demovideomerge D/MainActivity : progress : Invalid argument
    02-27 21:14:58.378 9364-9364/com.demovideomerge D/MainActivity : FAILED with output : ffmpeg version n3.0.1 Copyright (c) 2000-2016 the FFmpeg developers
    built with gcc 4.8 (GCC)
    configuration : —target-os=linux —cross-prefix=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi- —arch=arm —cpu=cortex-a8 —enable-runtime-cpudetect —sysroot=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/sysroot —enable-pic —enable-libx264 —enable-libass —enable-libfreetype —enable-libfribidi —enable-libmp3lame —enable-fontconfig —enable-pthreads —disable-debug —disable-ffserver —enable-version3 —enable-hardcoded-tables —disable-ffplay —disable-ffprobe —enable-gpl —enable-yasm —disable-doc —disable-shared —enable-static —pkg-config=/home/vagrant/SourceCode/ffmpeg-android/ffmpeg-pkg-config —prefix=/home/vagrant/SourceCode/ffmpeg-android/build/armeabi-v7a —extra-cflags=’-I/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/include -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all’ —extra-ldflags=’-L/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/lib -Wl,-z,relro -Wl,-z,now -pie’ —extra-libs=’-lpng -lexpat -lm’ —extra-cxxflags=
    libavutil 55. 17.103 / 55. 17.103
    libavcodec 57. 24.102 / 57. 24.102
    libavformat 57. 25.100 / 57. 25.100
    libavdevice 57. 0.101 / 57. 0.101
    libavfilter 6. 31.100 / 6. 31.100
    libswscale 4. 0.100 / 4. 0.100
    libswresample 2. 0.101 / 2. 0.101
    libpostproc 54. 0.100 / 54. 0.100
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from ’/storage/emulated/0/Movies/Merge_Video5.mp4’ :
    Metadata :
    major_brand : isom
    minor_version : 512
    compatible_brands : isomiso2avc1mp41
    encoder : Lavf57.25.100
    Duration : 00:00:06.00, start : 0.000000, bitrate : 80 kb/s
    Stream #0:0(und) : Video : h264 (High) (avc1 / 0x31637661), yuv420p, 540x960, 76 kb/s, 25 fps, 25 tbr, 12800 tbn, 50 tbc (default)
    Metadata :
    handler_name : VideoHandler
    Input #1, mov,mp4,m4a,3gp,3g2,mj2, from ’/storage/emulated/0/DCIM/Camera/VID_20180209_200422444.mp4’ :
    Metadata :
    major_brand : mp42
    minor_version : 0
    compatible_brands : isommp42
    creation_time : 2018-02-09 14:34:30
    Duration : 00:00:05.59, start : 0.000000, bitrate : 8748 kb/s
    Stream #1:0(eng) : Video : h264 (Constrained Baseline) (avc1 / 0x31637661), yuv420p, 864x480, 8283 kb/s, SAR 1:1 DAR 9:5, 29.13 fps, 29.92 tbr, 90k tbn, 180k tbc (default)
    Metadata :
    rotate : 90
    creation_time : 2018-02-09 14:34:30
    handler_name : VideoHandle
    encoder : MOTO
    Side data :
    displaymatrix : rotation of -90.00 degrees
    Stream #1:1(eng) : Audio : aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 128 kb/s (default)
    Metadata :
    creation_time : 2018-02-09 14:34:30
    handler_name : SoundHandle
    [Parsed_concat_0 @ 0xb819c8b0] Input link in1:v0 parameters (size 480x864, SAR 1:1) do not match the corresponding output link in0:v0 parameters (540x960, SAR 1:1)
    [Parsed_concat_0 @ 0xb819c8b0] Failed to configure output pad on Parsed_concat_0
    Error configuring complex filters.
    Invalid argument
    02-27 21:14:58.378 9364-9364/com.demovideomerge D/MainActivity : Finished command : ffmpeg [Ljava.lang.String ;@8061ebb

    Any help would be appreciated. I am badly stuck in this. Thanks in Advance.

  • ffmpeg concat and preserve metadata streams

    16 décembre 2024, par Andrew

    I'm trying to concat multiple files that are the result of a GoPro Hero6 splitting movies to avoid the FAT 4GB limit. ffmpeg works great for this purpose but I need the telemetry data that is encoded in the metadata streams, and ffmpeg by default doesn't seem to preserve this. Using the ffprobe command you can see that the source videos have :

    



    Stream #0:3(eng): Data: none (gpmd / 0x646D7067), 36 kb/s (default)
Metadata:
  creation_time   : 2018-07-15T16:16:26.000000Z
  handler_name    : GoPro MET


    



    I know from research that this is the stream I need (although I'd like to be able to copy all streams). However when using ffmpeg -f concat the output is :

    



    [concat @ 0x7febb9800000] Could not find codec parameters for stream 2 (Unknown: none): unknown codec
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[concat @ 0x7febb9800000] Could not find codec parameters for stream 3 (Unknown: none): unknown codec
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[concat @ 0x7febb9800000] Could not find codec parameters for stream 4 (Unknown: none): unknown codec
Consider increasing the value for the 'analyzeduration' and 'probesize' options
Input #0, concat, from 'tmp.txt':
  Duration: N/A, start: 0.000000, bitrate: 66194 kb/s
    Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuvj420p(pc, bt709), 2704x1520 [SAR 1:1 DAR 169:95], 66005 kb/s, 59.94 fps, 59.94 tbr, 60k tbn, 119.88 tbc
    Metadata:
      creation_time   : 2018-07-15T16:08:22.000000Z
      handler_name    : GoPro AVC
      encoder         : GoPro AVC encoder
      timecode        : 16:23:48:21
    Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 189 kb/s
    Metadata:
      creation_time   : 2018-07-15T16:08:22.000000Z
      handler_name    : GoPro AAC
      timecode        : 16:23:48:21
    Stream #0:2: Unknown: none
    Stream #0:3: Unknown: none
    Stream #0:4: Unknown: none
Output #0, mp4, to 'GH0089.MP4':
  Metadata:
    encoder         : Lavf58.12.100
    Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuvj420p(pc, bt709), 2704x1520 [SAR 1:1 DAR 169:95], q=2-31, 66005 kb/s, 0.02 fps, 59.94 tbr, 60k tbn, 60k tbc
    Metadata:
      creation_time   : 2018-07-15T16:08:22.000000Z
      handler_name    : GoPro AVC
      encoder         : GoPro AVC encoder
      timecode        : 16:23:48:21
    Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 189 kb/s
    Metadata:
      creation_time   : 2018-07-15T16:08:22.000000Z
      handler_name    : GoPro AAC
      timecode        : 16:23:48:21
Stream mapping:
  Stream #0:0 -> #0:0 (copy)
  Stream #0:1 -> #0:1 (copy)
Press [q] to stop, [?] for help


    



    The warnings Could not find codec parameters are especially interesting and Stream mapping shows that only the video and audio streams are mapped. I've played around with map_metadata to no avail. I may not have the format right but it seems more likely that the issue is related to the warning as the codecs are not recognized and I would expect all streams to be mapped by default.

    



    I would expect or hope for an answer that ignore the warnings and map the unrecognized streams without attempting to understand them.

    



    Any help is appreciated.