Recherche avancée

Médias (91)

Autres articles (41)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Ajout d’utilisateurs manuellement par un administrateur

    12 avril 2011, par

    L’administrateur d’un canal peut à tout moment ajouter un ou plusieurs autres utilisateurs depuis l’espace de configuration du site en choisissant le sous-menu "Gestion des utilisateurs".
    Sur cette page il est possible de :
    1. décider de l’inscription des utilisateurs via deux options : Accepter l’inscription de visiteurs du site public Refuser l’inscription des visiteurs
    2. d’ajouter ou modifier/supprimer un utilisateur
    Dans le second formulaire présent un administrateur peut ajouter, (...)

Sur d’autres sites (4528)

  • Have problems using FFMPEG to save RGB image sequence to .mp4

    28 septembre 2021, par Clubs

    I render some images with OpenGL and need to compose them into a video file. Each of the images is a sequence of uint8_t values representing a sRGB color component (image array looks like ...rgbrgbrgb...)

    



    I know very little about video processing and have no experience with ffmpeg libraries at all. I made a little test program using these sources as reference :

    



    https://ffmpeg.org/doxygen/trunk/encode_video_8c-example.html

    



    How to convert RGB from YUV420p for ffmpeg encoder ?

    



    The test program is supposed to make a video about growing green vertical stripe. I'm just trying to figure out how to make a video using some source of raw RGB data.

    



    Here is my code :

    



    #include <iostream>&#xA;#include <vector>&#xA;#include <algorithm>&#xA;&#xA;extern "C" {&#xA;    #include <libavcodec></libavcodec>avcodec.h>&#xA;    #include <libavutil></libavutil>opt.h>&#xA;    #include <libavutil></libavutil>imgutils.h>&#xA;    #include <libswscale></libswscale>swscale.h>&#xA;}&#xA;&#xA;static void encode( AVCodecContext* enc_ctx,&#xA;                    AVFrame* frame, AVPacket* pkt,&#xA;                    FILE* outfile                  )&#xA;{&#xA;    int ret;&#xA;    ret = avcodec_send_frame(enc_ctx, frame);&#xA;    if (ret &lt; 0) {&#xA;        std::cerr &lt;&lt; "Error sending a frame for encoding\n";&#xA;        return;&#xA;    }&#xA;    while (ret >= 0) {&#xA;        ret = avcodec_receive_packet(enc_ctx, pkt);&#xA;        if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF)&#xA;            return;&#xA;        else if (ret &lt; 0) {&#xA;            fprintf(stderr, "Error during encoding\n");&#xA;            exit(1);&#xA;        }&#xA;        fwrite(pkt->data, 1, pkt->size, outfile);&#xA;        av_packet_unref(pkt);&#xA;    }&#xA;}&#xA;&#xA;static constexpr int w = 1920, h = 1080;&#xA;static constexpr float fps = 20.f, time = 5.f;&#xA;static constexpr int nFrames = static_cast<int>(fps * time);&#xA;static std::vector imageRGB(w * h * 3, 0);&#xA;&#xA;static void UpdateImageRGB()&#xA;{&#xA;    static int d = 50;&#xA;    imageRGB.assign(w * h * 3, 0);&#xA;    for (int i = 0; i &lt; h; &#x2B;&#x2B;i)&#xA;        for ( int j = std::max(0, w / 2 - d);&#xA;              j &lt; std::min(w, w / 2 &#x2B; d);&#xA;              &#x2B;&#x2B;j                             )&#xA;        {&#xA;            imageRGB[(w * i &#x2B; j) * 3 &#x2B; 0] = 50;&#xA;            imageRGB[(w * i &#x2B; j) * 3 &#x2B; 1] = 200;&#xA;            imageRGB[(w * i &#x2B; j) * 3 &#x2B; 2] = 50;&#xA;        }&#xA;    d &#x2B;= 5;&#xA;}&#xA;&#xA;int main()&#xA;{&#xA;    int ret = 0;&#xA;    auto filename = "test.mp4";&#xA;&#xA;    auto codec = avcodec_find_encoder(AV_CODEC_ID_H264);&#xA;    if (!codec) {&#xA;        std::cerr &lt;&lt; "Codec \"x.264\" not found\n";&#xA;        return 1;&#xA;    }&#xA;    auto c = avcodec_alloc_context3(codec);&#xA;    if (!c) {&#xA;        std::cerr &lt;&lt; "Could not allocate video codec context\n";&#xA;        return 1;&#xA;    }&#xA;    auto pkt = av_packet_alloc();&#xA;    if (!pkt) return 1;&#xA;&#xA;    // 1.8 bits / (pixel * frame)&#xA;    c->bit_rate = static_cast(1.8f * w * h * fps);&#xA;    /* resolution must be a multiple of two */&#xA;    c->width = w;&#xA;    c->height = h;&#xA;    /* frames per second */&#xA;    c->time_base = AVRational{ 1, static_cast<int>(fps) };&#xA;    c->framerate = AVRational{ static_cast<int>(fps), 1 };&#xA;&#xA;    c->gop_size = 10;&#xA;    c->max_b_frames = 1;&#xA;    c->pix_fmt = AV_PIX_FMT_YUV420P;&#xA;    av_opt_set(c->priv_data, "preset", "slow", 0);&#xA;    av_opt_set(c->priv_data, "preset", "slow", 0);&#xA;&#xA;    ret = avcodec_open2(c, codec, NULL);&#xA;    if (ret &lt; 0) {&#xA;        char str[AV_ERROR_MAX_STRING_SIZE];&#xA;        std::cerr &lt;&lt; "Could not open codec: "&#xA;                  &lt;&lt; av_make_error_string(str, AV_ERROR_MAX_STRING_SIZE, ret)&#xA;                  &lt;&lt; "\n";&#xA;        return 1;&#xA;    }&#xA;&#xA;    FILE * f;&#xA;    fopen_s(&amp;f, filename, "wb");&#xA;    if (!f) {&#xA;        std::cerr &lt;&lt; "Could not open " &lt;&lt; filename &lt;&lt; &#x27;\n&#x27;;&#xA;        return 1;&#xA;    }&#xA;&#xA;    auto frame = av_frame_alloc();&#xA;    if (!frame) {&#xA;        std::cerr &lt;&lt; "Could not allocate video frame\n";&#xA;        return 1;&#xA;    }&#xA;    frame->format = c->pix_fmt;&#xA;    frame->width = c->width;&#xA;    frame->height = c->height;&#xA;    ret = av_frame_get_buffer(frame, 0);&#xA;    if (ret &lt; 0) {&#xA;        std::cerr &lt;&lt; stderr, "Could not allocate the video frame data\n";&#xA;        return 1;&#xA;    }&#xA;&#xA;    SwsContext* ctx = sws_getContext( w, h, AV_PIX_FMT_RGB24,&#xA;                                      w, h, AV_PIX_FMT_YUV420P,&#xA;                                      0, 0, 0, 0                );&#xA;&#xA;    for (int i = 0; i &lt; nFrames; i&#x2B;&#x2B;)&#xA;    {&#xA;        ret = av_frame_make_writable(frame);&#xA;        UpdateImageRGB();&#xA;        static const uint8_t* rgbData[1] = { &amp;imageRGB[0] };&#xA;        static constexpr int rgbLinesize[1] = { 3 * w };&#xA;        sws_scale( ctx, rgbData, rgbLinesize, 0, h,&#xA;                   frame->data, frame->linesize     );&#xA;        frame->pts = i;&#xA;        /* encode the image */&#xA;        encode(c, frame, pkt, f);&#xA;    }&#xA;    encode(c, NULL, pkt, f);&#xA;&#xA;    fclose(f);&#xA;    avcodec_free_context(&amp;c);&#xA;    av_frame_free(&amp;frame);&#xA;    av_packet_free(&amp;pkt);&#xA;    return 0;&#xA;}&#xA;</int></int></int></algorithm></vector></iostream>

    &#xA;&#xA;

    The program generates 33.9k video file with further console output :

    &#xA;&#xA;

    [libx264 @ 0000020c18681800] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2&#xA;[libx264 @ 0000020c18681800] profile High, level 5.0, 4:2:0, 8-bit&#xA;[libx264 @ 0000020c18681800] frame I:11    Avg QP: 0.00  size:   639&#xA;[libx264 @ 0000020c18681800] frame P:74    Avg QP: 0.32  size:   174&#xA;[libx264 @ 0000020c18681800] frame B:15    Avg QP: 2.26  size:   990&#xA;[libx264 @ 0000020c18681800] consecutive B-frames: 70.0% 30.0%&#xA;[libx264 @ 0000020c18681800] mb I  I16..4: 100.0%  0.0%  0.0%&#xA;[libx264 @ 0000020c18681800] mb P  I16..4:  0.6%  0.0%  0.0%  P16..4:  2.1%  0.0%  0.0%  0.0%  0.0%    skip:97.3%&#xA;[libx264 @ 0000020c18681800] mb B  I16..4:  0.1%  0.0%  0.0%  B16..8:  0.6%  0.0%  0.0%  direct: 0.6%  skip:98.7%  L0:39.8% L1:60.2% BI: 0.0%&#xA;[libx264 @ 0000020c18681800] final ratefactor: -46.47&#xA;[libx264 @ 0000020c18681800] 8x8 transform intra:0.0%&#xA;[libx264 @ 0000020c18681800] direct mvs  spatial:0.0% temporal:100.0%&#xA;[libx264 @ 0000020c18681800] coded y,uvDC,uvAC intra: 0.0% 0.1% 0.1% inter: 0.0% 0.1% 0.1%&#xA;[libx264 @ 0000020c18681800] i16 v,h,dc,p: 99%  0%  1%  0%&#xA;[libx264 @ 0000020c18681800] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu:  0%  0% 100%  0%  0%  0%  0%  0%  0%&#xA;[libx264 @ 0000020c18681800] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 46%  0% 54%  0%  0%  0%  0%  0%  0%&#xA;[libx264 @ 0000020c18681800] i8c dc,h,v,p: 96%  1%  3%  0%&#xA;[libx264 @ 0000020c18681800] Weighted P-Frames: Y:0.0% UV:0.0%&#xA;[libx264 @ 0000020c18681800] ref P L0: 70.2%  0.0% 29.8%  0.0%  0.0%&#xA;[libx264 @ 0000020c18681800] kb/s:55.61&#xA;

    &#xA;&#xA;

      &#xA;
    1. "Media Player Classic" on Windows plays this video but the time slider doesn't move, and the video cannot be fast-forwarded to some frame
    2. &#xA;

    3. VLC cannot play the video at all. It launches, shows me VLC logo, and time slider (which is unusually big) jumps from left to right, not responding to my clicks
    4. &#xA;

    5. If I set time = 0.05 to make a video of only 1 frame, I cannot play it even with "Media Player Classic". I want to make an algorithm to convert the arbitrary number of raw RGB images into the video files, even if there's only one image, and with arbitrary image size (that is, width and height may be odd).
    6. &#xA;

    7. As I said, I don't really understand what am I doing. There are low-level codec settings in lines 83-84. Are they all right ?
    8. &#xA;

    9. Do I have to manually set a bit rate (line 75) ? Shouldn't it be calculated automatically by the codec ?
    10. &#xA;

    &#xA;

  • ffmpeg merge multiple (N) mono audio channels of a MXF video to multiple (M) stereo channels of MP4 video

    14 février 2020, par Laura

    I have an MXF file with 16 audio mono streams and I need to recode it in a mp4 file with 2<=n<=16 channels merging input streams, e.g. input channels 1 and 2 on output channel 1 and 9 and 10 on output channel 2. This job will be done with ffmpeg. I read the documentation and found the amerge and amix filters that would be nice, but they output one channel only. Is there any solution for this problem ?

    Thanks,
    Laura

    Find below the output of ffprobe on mxf file :


    "streams" :[

    "index":0,
    "codec_name" :"mpeg2video",
    "codec_long_name" :"MPEG-2 video",
    "profile" :"4:2:2",
    "codec_type" :"video",
    "codec_time_base" :"1/25",
    "codec_tag_string" :"[0][0][0][0]",
    "codec_tag" :"0x0000",
    "width":1920,
    "height":1080,
    "coded_width":0,
    "coded_height":0,
    "has_b_frames":1,
    "sample_aspect_ratio" :"1:1",
    "display_aspect_ratio" :"16:9",
    "pix_fmt" :"yuv422p",
    "level":2,
    "color_range" :"tv",
    "color_space" :"bt709",
    "color_transfer" :"bt709",
    "color_primaries" :"bt709",
    "chroma_location" :"topleft",
    "field_order" :"tt",
    "refs":1,
    "r_frame_rate" :"25/1",
    "avg_frame_rate" :"25/1",
    "time_base" :"1/25",
    "start_pts":0,
    "start_time" :"0.000000",
    "duration_ts":448,
    "duration" :"17.920000",
    "bit_rate" :"50000000",
    "disposition" :
    "default":0,
    "dub":0,
    "original":0,
    "comment":0,
    "lyrics":0,
    "karaoke":0,
    "forced":0,
    "hearing_impaired":0,
    "visual_impaired":0,
    "clean_effects":0,
    "attached_pic":0,
    "timed_thumbnails":0
    ,
    "tags" :
    "file_package_umid" :"0x060A2B340101010501010D2313000000968F75C6B5B34D649967EEDD0076B989"

    ,

    "index":1,
    "codec_name" :"pcm_s24le",
    "codec_long_name" :"PCM signed 24-bit little-endian",
    "codec_type" :"audio",
    "codec_time_base" :"1/48000",
    "codec_tag_string" :"[0][0][0][0]",
    "codec_tag" :"0x0000",
    "sample_fmt" :"s32",
    "sample_rate" :"48000",
    "channels":1,
    "bits_per_sample":24,
    "r_frame_rate" :"0/0",
    "avg_frame_rate" :"0/0",
    "time_base" :"1/48000",
    "start_pts":0,
    "start_time" :"0.000000",
    "duration_ts":860160,
    "duration" :"17.920000",
    "bit_rate" :"1152000",
    "bits_per_raw_sample" :"24",
    "disposition" :
    "default":0,
    "dub":0,
    "original":0,
    "comment":0,
    "lyrics":0,
    "karaoke":0,
    "forced":0,
    "hearing_impaired":0,
    "visual_impaired":0,
    "clean_effects":0,
    "attached_pic":0,
    "timed_thumbnails":0
    ,
    "tags" :
    "file_package_umid" :"0x060A2B340101010501010D2313000000968F75C6B5B34D649967EEDD0076B989"

    ,

    "index":2,
    "codec_name" :"pcm_s24le",
    "codec_long_name" :"PCM signed 24-bit little-endian",
    "codec_type" :"audio",
    "codec_time_base" :"1/48000",
    "codec_tag_string" :"[0][0][0][0]",
    "codec_tag" :"0x0000",
    "sample_fmt" :"s32",
    "sample_rate" :"48000",
    "channels":1,
    "bits_per_sample":24,
    "r_frame_rate" :"0/0",
    "avg_frame_rate" :"0/0",
    "time_base" :"1/48000",
    "start_pts":0,
    "start_time" :"0.000000",
    "duration_ts":860160,
    "duration" :"17.920000",
    "bit_rate" :"1152000",
    "bits_per_raw_sample" :"24",
    "disposition" :
    "default":0,
    "dub":0,
    "original":0,
    "comment":0,
    "lyrics":0,
    "karaoke":0,
    "forced":0,
    "hearing_impaired":0,
    "visual_impaired":0,
    "clean_effects":0,
    "attached_pic":0,
    "timed_thumbnails":0
    ,
    "tags" :
    "file_package_umid" :"0x060A2B340101010501010D2313000000968F75C6B5B34D649967EEDD0076B989"

    ,

    "index":3,
    "codec_name" :"pcm_s24le",
    "codec_long_name" :"PCM signed 24-bit little-endian",
    "codec_type" :"audio",
    "codec_time_base" :"1/48000",
    "codec_tag_string" :"[0][0][0][0]",
    "codec_tag" :"0x0000",
    "sample_fmt" :"s32",
    "sample_rate" :"48000",
    "channels":1,
    "bits_per_sample":24,
    "r_frame_rate" :"0/0",
    "avg_frame_rate" :"0/0",
    "time_base" :"1/48000",
    "start_pts":0,
    "start_time" :"0.000000",
    "duration_ts":860160,
    "duration" :"17.920000",
    "bit_rate" :"1152000",
    "bits_per_raw_sample" :"24",
    "disposition" :
    "default":0,
    "dub":0,
    "original":0,
    "comment":0,
    "lyrics":0,
    "karaoke":0,
    "forced":0,
    "hearing_impaired":0,
    "visual_impaired":0,
    "clean_effects":0,
    "attached_pic":0,
    "timed_thumbnails":0
    ,
    "tags" :
    "file_package_umid" :"0x060A2B340101010501010D2313000000968F75C6B5B34D649967EEDD0076B989"

    ,

    "index":4,
    "codec_name" :"pcm_s24le",
    "codec_long_name" :"PCM signed 24-bit little-endian",
    "codec_type" :"audio",
    "codec_time_base" :"1/48000",
    "codec_tag_string" :"[0][0][0][0]",
    "codec_tag" :"0x0000",
    "sample_fmt" :"s32",
    "sample_rate" :"48000",
    "channels":1,
    "bits_per_sample":24,
    "r_frame_rate" :"0/0",
    "avg_frame_rate" :"0/0",
    "time_base" :"1/48000",
    "start_pts":0,
    "start_time" :"0.000000",
    "duration_ts":860160,
    "duration" :"17.920000",
    "bit_rate" :"1152000",
    "bits_per_raw_sample" :"24",
    "disposition" :
    "default":0,
    "dub":0,
    "original":0,
    "comment":0,
    "lyrics":0,
    "karaoke":0,
    "forced":0,
    "hearing_impaired":0,
    "visual_impaired":0,
    "clean_effects":0,
    "attached_pic":0,
    "timed_thumbnails":0
    ,
    "tags" :
    "file_package_umid" :"0x060A2B340101010501010D2313000000968F75C6B5B34D649967EEDD0076B989"

    ,

    "index":5,
    "codec_name" :"pcm_s24le",
    "codec_long_name" :"PCM signed 24-bit little-endian",
    "codec_type" :"audio",
    "codec_time_base" :"1/48000",
    "codec_tag_string" :"[0][0][0][0]",
    "codec_tag" :"0x0000",
    "sample_fmt" :"s32",
    "sample_rate" :"48000",
    "channels":1,
    "bits_per_sample":24,
    "r_frame_rate" :"0/0",
    "avg_frame_rate" :"0/0",
    "time_base" :"1/48000",
    "start_pts":0,
    "start_time" :"0.000000",
    "duration_ts":860160,
    "duration" :"17.920000",
    "bit_rate" :"1152000",
    "bits_per_raw_sample" :"24",
    "disposition" :
    "default":0,
    "dub":0,
    "original":0,
    "comment":0,
    "lyrics":0,
    "karaoke":0,
    "forced":0,
    "hearing_impaired":0,
    "visual_impaired":0,
    "clean_effects":0,
    "attached_pic":0,
    "timed_thumbnails":0
    ,
    "tags" :
    "file_package_umid" :"0x060A2B340101010501010D2313000000968F75C6B5B34D649967EEDD0076B989"

    ,

    "index":6,
    "codec_name" :"pcm_s24le",
    "codec_long_name" :"PCM signed 24-bit little-endian",
    "codec_type" :"audio",
    "codec_time_base" :"1/48000",
    "codec_tag_string" :"[0][0][0][0]",
    "codec_tag" :"0x0000",
    "sample_fmt" :"s32",
    "sample_rate" :"48000",
    "channels":1,
    "bits_per_sample":24,
    "r_frame_rate" :"0/0",
    "avg_frame_rate" :"0/0",
    "time_base" :"1/48000",
    "start_pts":0,
    "start_time" :"0.000000",
    "duration_ts":860160,
    "duration" :"17.920000",
    "bit_rate" :"1152000",
    "bits_per_raw_sample" :"24",
    "disposition" :
    "default":0,
    "dub":0,
    "original":0,
    "comment":0,
    "lyrics":0,
    "karaoke":0,
    "forced":0,
    "hearing_impaired":0,
    "visual_impaired":0,
    "clean_effects":0,
    "attached_pic":0,
    "timed_thumbnails":0
    ,
    "tags" :
    "file_package_umid" :"0x060A2B340101010501010D2313000000968F75C6B5B34D649967EEDD0076B989"

    ,

    "index":7,
    "codec_name" :"pcm_s24le",
    "codec_long_name" :"PCM signed 24-bit little-endian",
    "codec_type" :"audio",
    "codec_time_base" :"1/48000",
    "codec_tag_string" :"[0][0][0][0]",
    "codec_tag" :"0x0000",
    "sample_fmt" :"s32",
    "sample_rate" :"48000",
    "channels":1,
    "bits_per_sample":24,
    "r_frame_rate" :"0/0",
    "avg_frame_rate" :"0/0",
    "time_base" :"1/48000",
    "start_pts":0,
    "start_time" :"0.000000",
    "duration_ts":860160,
    "duration" :"17.920000",
    "bit_rate" :"1152000",
    "bits_per_raw_sample" :"24",
    "disposition" :
    "default":0,
    "dub":0,
    "original":0,
    "comment":0,
    "lyrics":0,
    "karaoke":0,
    "forced":0,
    "hearing_impaired":0,
    "visual_impaired":0,
    "clean_effects":0,
    "attached_pic":0,
    "timed_thumbnails":0
    ,
    "tags" :
    "file_package_umid" :"0x060A2B340101010501010D2313000000968F75C6B5B34D649967EEDD0076B989"

    ,

    "index":8,
    "codec_name" :"pcm_s24le",
    "codec_long_name" :"PCM signed 24-bit little-endian",
    "codec_type" :"audio",
    "codec_time_base" :"1/48000",
    "codec_tag_string" :"[0][0][0][0]",
    "codec_tag" :"0x0000",
    "sample_fmt" :"s32",
    "sample_rate" :"48000",
    "channels":1,
    "bits_per_sample":24,
    "r_frame_rate" :"0/0",
    "avg_frame_rate" :"0/0",
    "time_base" :"1/48000",
    "start_pts":0,
    "start_time" :"0.000000",
    "duration_ts":860160,
    "duration" :"17.920000",
    "bit_rate" :"1152000",
    "bits_per_raw_sample" :"24",
    "disposition" :
    "default":0,
    "dub":0,
    "original":0,
    "comment":0,
    "lyrics":0,
    "karaoke":0,
    "forced":0,
    "hearing_impaired":0,
    "visual_impaired":0,
    "clean_effects":0,
    "attached_pic":0,
    "timed_thumbnails":0
    ,
    "tags" :
    "file_package_umid" :"0x060A2B340101010501010D2313000000968F75C6B5B34D649967EEDD0076B989"


    ],
    "format" :
    "filename" :"/media-caches/video-essence/VIDEO/MXF-XDCAM_HD422@50Mbps1080i25_16Ch/941.mxf",
    "nb_streams":9,
    "nb_programs":0,
    "format_name" :"mxf",
    "format_long_name" :"MXF (Material eXchange Format)",
    "start_time" :"0.000000",
    "duration" :"17.920000",
    "size" :"135028296",
    "bit_rate" :"60280489",
    "probe_score":100,
    "tags" :
    "uid" :"0a9ef41a-36b4-4066-a8a3-b95f62299b6c",
    "generation_uid" :"e134647e-fea1-4673-91c1-afa277d13c00",
    "company_name" :"Sony",
    "product_name" :"MPC",
    "product_version" :"v1.0",
    "application_platform" :"Sony MXF Development Kit (Win32)",
    "product_uid" :"060e2b34-0401-0103-0e06-0120027f0200",
    "modification_date" :"2012-09-17T11:56:20.000000Z",
    "material_package_umid" :"0x060A2B340101010501010D231300000081C32F48A63347D4890F55D3ADC25B99",
    "timecode" :"00:35:30:08"


  • ffmep merge multiple (N) mono audio channels of a MXF video to multiple (M) stereo channels of MP4 video

    13 février 2020, par Laura

    I have an MXF file with 16 audio mono streams and I need to recode it in a mp4 file with 2<=n<=16 channels merging input streams, e.g. input channels 1 and 2 on output channel 1 and 9 and 10 on output channel 2. This job will be done with ffmpeg. I read the documentation and found the amerge and amix filters that would be nice, but they output one channel only. Is there any solution for this problem ?

    Thanks,
    Laura

    Find below the output of ffprobe on mxf file :


    "streams" :[

    "index":0,
    "codec_name" :"mpeg2video",
    "codec_long_name" :"MPEG-2 video",
    "profile" :"4:2:2",
    "codec_type" :"video",
    "codec_time_base" :"1/25",
    "codec_tag_string" :"[0][0][0][0]",
    "codec_tag" :"0x0000",
    "width":1920,
    "height":1080,
    "coded_width":0,
    "coded_height":0,
    "has_b_frames":1,
    "sample_aspect_ratio" :"1:1",
    "display_aspect_ratio" :"16:9",
    "pix_fmt" :"yuv422p",
    "level":2,
    "color_range" :"tv",
    "color_space" :"bt709",
    "color_transfer" :"bt709",
    "color_primaries" :"bt709",
    "chroma_location" :"topleft",
    "field_order" :"tt",
    "refs":1,
    "r_frame_rate" :"25/1",
    "avg_frame_rate" :"25/1",
    "time_base" :"1/25",
    "start_pts":0,
    "start_time" :"0.000000",
    "duration_ts":448,
    "duration" :"17.920000",
    "bit_rate" :"50000000",
    "disposition" :
    "default":0,
    "dub":0,
    "original":0,
    "comment":0,
    "lyrics":0,
    "karaoke":0,
    "forced":0,
    "hearing_impaired":0,
    "visual_impaired":0,
    "clean_effects":0,
    "attached_pic":0,
    "timed_thumbnails":0
    ,
    "tags" :
    "file_package_umid" :"0x060A2B340101010501010D2313000000968F75C6B5B34D649967EEDD0076B989"

    ,

    "index":1,
    "codec_name" :"pcm_s24le",
    "codec_long_name" :"PCM signed 24-bit little-endian",
    "codec_type" :"audio",
    "codec_time_base" :"1/48000",
    "codec_tag_string" :"[0][0][0][0]",
    "codec_tag" :"0x0000",
    "sample_fmt" :"s32",
    "sample_rate" :"48000",
    "channels":1,
    "bits_per_sample":24,
    "r_frame_rate" :"0/0",
    "avg_frame_rate" :"0/0",
    "time_base" :"1/48000",
    "start_pts":0,
    "start_time" :"0.000000",
    "duration_ts":860160,
    "duration" :"17.920000",
    "bit_rate" :"1152000",
    "bits_per_raw_sample" :"24",
    "disposition" :
    "default":0,
    "dub":0,
    "original":0,
    "comment":0,
    "lyrics":0,
    "karaoke":0,
    "forced":0,
    "hearing_impaired":0,
    "visual_impaired":0,
    "clean_effects":0,
    "attached_pic":0,
    "timed_thumbnails":0
    ,
    "tags" :
    "file_package_umid" :"0x060A2B340101010501010D2313000000968F75C6B5B34D649967EEDD0076B989"

    ,

    "index":2,
    "codec_name" :"pcm_s24le",
    "codec_long_name" :"PCM signed 24-bit little-endian",
    "codec_type" :"audio",
    "codec_time_base" :"1/48000",
    "codec_tag_string" :"[0][0][0][0]",
    "codec_tag" :"0x0000",
    "sample_fmt" :"s32",
    "sample_rate" :"48000",
    "channels":1,
    "bits_per_sample":24,
    "r_frame_rate" :"0/0",
    "avg_frame_rate" :"0/0",
    "time_base" :"1/48000",
    "start_pts":0,
    "start_time" :"0.000000",
    "duration_ts":860160,
    "duration" :"17.920000",
    "bit_rate" :"1152000",
    "bits_per_raw_sample" :"24",
    "disposition" :
    "default":0,
    "dub":0,
    "original":0,
    "comment":0,
    "lyrics":0,
    "karaoke":0,
    "forced":0,
    "hearing_impaired":0,
    "visual_impaired":0,
    "clean_effects":0,
    "attached_pic":0,
    "timed_thumbnails":0
    ,
    "tags" :
    "file_package_umid" :"0x060A2B340101010501010D2313000000968F75C6B5B34D649967EEDD0076B989"

    ,

    "index":3,
    "codec_name" :"pcm_s24le",
    "codec_long_name" :"PCM signed 24-bit little-endian",
    "codec_type" :"audio",
    "codec_time_base" :"1/48000",
    "codec_tag_string" :"[0][0][0][0]",
    "codec_tag" :"0x0000",
    "sample_fmt" :"s32",
    "sample_rate" :"48000",
    "channels":1,
    "bits_per_sample":24,
    "r_frame_rate" :"0/0",
    "avg_frame_rate" :"0/0",
    "time_base" :"1/48000",
    "start_pts":0,
    "start_time" :"0.000000",
    "duration_ts":860160,
    "duration" :"17.920000",
    "bit_rate" :"1152000",
    "bits_per_raw_sample" :"24",
    "disposition" :
    "default":0,
    "dub":0,
    "original":0,
    "comment":0,
    "lyrics":0,
    "karaoke":0,
    "forced":0,
    "hearing_impaired":0,
    "visual_impaired":0,
    "clean_effects":0,
    "attached_pic":0,
    "timed_thumbnails":0
    ,
    "tags" :
    "file_package_umid" :"0x060A2B340101010501010D2313000000968F75C6B5B34D649967EEDD0076B989"

    ,

    "index":4,
    "codec_name" :"pcm_s24le",
    "codec_long_name" :"PCM signed 24-bit little-endian",
    "codec_type" :"audio",
    "codec_time_base" :"1/48000",
    "codec_tag_string" :"[0][0][0][0]",
    "codec_tag" :"0x0000",
    "sample_fmt" :"s32",
    "sample_rate" :"48000",
    "channels":1,
    "bits_per_sample":24,
    "r_frame_rate" :"0/0",
    "avg_frame_rate" :"0/0",
    "time_base" :"1/48000",
    "start_pts":0,
    "start_time" :"0.000000",
    "duration_ts":860160,
    "duration" :"17.920000",
    "bit_rate" :"1152000",
    "bits_per_raw_sample" :"24",
    "disposition" :
    "default":0,
    "dub":0,
    "original":0,
    "comment":0,
    "lyrics":0,
    "karaoke":0,
    "forced":0,
    "hearing_impaired":0,
    "visual_impaired":0,
    "clean_effects":0,
    "attached_pic":0,
    "timed_thumbnails":0
    ,
    "tags" :
    "file_package_umid" :"0x060A2B340101010501010D2313000000968F75C6B5B34D649967EEDD0076B989"

    ,

    "index":5,
    "codec_name" :"pcm_s24le",
    "codec_long_name" :"PCM signed 24-bit little-endian",
    "codec_type" :"audio",
    "codec_time_base" :"1/48000",
    "codec_tag_string" :"[0][0][0][0]",
    "codec_tag" :"0x0000",
    "sample_fmt" :"s32",
    "sample_rate" :"48000",
    "channels":1,
    "bits_per_sample":24,
    "r_frame_rate" :"0/0",
    "avg_frame_rate" :"0/0",
    "time_base" :"1/48000",
    "start_pts":0,
    "start_time" :"0.000000",
    "duration_ts":860160,
    "duration" :"17.920000",
    "bit_rate" :"1152000",
    "bits_per_raw_sample" :"24",
    "disposition" :
    "default":0,
    "dub":0,
    "original":0,
    "comment":0,
    "lyrics":0,
    "karaoke":0,
    "forced":0,
    "hearing_impaired":0,
    "visual_impaired":0,
    "clean_effects":0,
    "attached_pic":0,
    "timed_thumbnails":0
    ,
    "tags" :
    "file_package_umid" :"0x060A2B340101010501010D2313000000968F75C6B5B34D649967EEDD0076B989"

    ,

    "index":6,
    "codec_name" :"pcm_s24le",
    "codec_long_name" :"PCM signed 24-bit little-endian",
    "codec_type" :"audio",
    "codec_time_base" :"1/48000",
    "codec_tag_string" :"[0][0][0][0]",
    "codec_tag" :"0x0000",
    "sample_fmt" :"s32",
    "sample_rate" :"48000",
    "channels":1,
    "bits_per_sample":24,
    "r_frame_rate" :"0/0",
    "avg_frame_rate" :"0/0",
    "time_base" :"1/48000",
    "start_pts":0,
    "start_time" :"0.000000",
    "duration_ts":860160,
    "duration" :"17.920000",
    "bit_rate" :"1152000",
    "bits_per_raw_sample" :"24",
    "disposition" :
    "default":0,
    "dub":0,
    "original":0,
    "comment":0,
    "lyrics":0,
    "karaoke":0,
    "forced":0,
    "hearing_impaired":0,
    "visual_impaired":0,
    "clean_effects":0,
    "attached_pic":0,
    "timed_thumbnails":0
    ,
    "tags" :
    "file_package_umid" :"0x060A2B340101010501010D2313000000968F75C6B5B34D649967EEDD0076B989"

    ,

    "index":7,
    "codec_name" :"pcm_s24le",
    "codec_long_name" :"PCM signed 24-bit little-endian",
    "codec_type" :"audio",
    "codec_time_base" :"1/48000",
    "codec_tag_string" :"[0][0][0][0]",
    "codec_tag" :"0x0000",
    "sample_fmt" :"s32",
    "sample_rate" :"48000",
    "channels":1,
    "bits_per_sample":24,
    "r_frame_rate" :"0/0",
    "avg_frame_rate" :"0/0",
    "time_base" :"1/48000",
    "start_pts":0,
    "start_time" :"0.000000",
    "duration_ts":860160,
    "duration" :"17.920000",
    "bit_rate" :"1152000",
    "bits_per_raw_sample" :"24",
    "disposition" :
    "default":0,
    "dub":0,
    "original":0,
    "comment":0,
    "lyrics":0,
    "karaoke":0,
    "forced":0,
    "hearing_impaired":0,
    "visual_impaired":0,
    "clean_effects":0,
    "attached_pic":0,
    "timed_thumbnails":0
    ,
    "tags" :
    "file_package_umid" :"0x060A2B340101010501010D2313000000968F75C6B5B34D649967EEDD0076B989"

    ,

    "index":8,
    "codec_name" :"pcm_s24le",
    "codec_long_name" :"PCM signed 24-bit little-endian",
    "codec_type" :"audio",
    "codec_time_base" :"1/48000",
    "codec_tag_string" :"[0][0][0][0]",
    "codec_tag" :"0x0000",
    "sample_fmt" :"s32",
    "sample_rate" :"48000",
    "channels":1,
    "bits_per_sample":24,
    "r_frame_rate" :"0/0",
    "avg_frame_rate" :"0/0",
    "time_base" :"1/48000",
    "start_pts":0,
    "start_time" :"0.000000",
    "duration_ts":860160,
    "duration" :"17.920000",
    "bit_rate" :"1152000",
    "bits_per_raw_sample" :"24",
    "disposition" :
    "default":0,
    "dub":0,
    "original":0,
    "comment":0,
    "lyrics":0,
    "karaoke":0,
    "forced":0,
    "hearing_impaired":0,
    "visual_impaired":0,
    "clean_effects":0,
    "attached_pic":0,
    "timed_thumbnails":0
    ,
    "tags" :
    "file_package_umid" :"0x060A2B340101010501010D2313000000968F75C6B5B34D649967EEDD0076B989"


    ],
    "format" :
    "filename" :"/media-caches/video-essence/VIDEO/MXF-XDCAM_HD422@50Mbps1080i25_16Ch/941.mxf",
    "nb_streams":9,
    "nb_programs":0,
    "format_name" :"mxf",
    "format_long_name" :"MXF (Material eXchange Format)",
    "start_time" :"0.000000",
    "duration" :"17.920000",
    "size" :"135028296",
    "bit_rate" :"60280489",
    "probe_score":100,
    "tags" :
    "uid" :"0a9ef41a-36b4-4066-a8a3-b95f62299b6c",
    "generation_uid" :"e134647e-fea1-4673-91c1-afa277d13c00",
    "company_name" :"Sony",
    "product_name" :"MPC",
    "product_version" :"v1.0",
    "application_platform" :"Sony MXF Development Kit (Win32)",
    "product_uid" :"060e2b34-0401-0103-0e06-0120027f0200",
    "modification_date" :"2012-09-17T11:56:20.000000Z",
    "material_package_umid" :"0x060A2B340101010501010D231300000081C32F48A63347D4890F55D3ADC25B99",
    "timecode" :"00:35:30:08"