Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (54)

  • 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 (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (5854)

  • ffprobe : prefer lowercase section names over uppercase ones

    9 octobre 2011, par Stefano Sabatini

    ffprobe : prefer lowercase section names over uppercase ones

  • ffprobe using lowercase or uppercase for format tags

    4 novembre 2020, par malat

    I am trying to understand the behavior of ffprobe with regards to using either uppercase or lowercase convention for format tags.

    


    Here are the steps to reproduce. Create an MP4, AVI and a MKV container from an existing MP4 movie :

    


    $ ffmpeg -y -i input.mp4 -c:a copy -c:v copy -metadata title="This is my title" -metadata date="1234" -metadata genre="erneg" output.mp4
$ ffmpeg -y -i input.mp4 -c:a copy -c:v copy -metadata title="This is my title" -metadata date="1234" -metadata genre="erneg" output.avi
$ ffmpeg -y -i input.mp4 -c:a copy -c:v copy -metadata title="This is my title" -metadata date="1234" -metadata genre="erneg" output.mkv


    


    Now using, either

    


    % ffprobe -v error -hide_banner -show_format -print_format json -i output.mp4


    


    or :

    


    % ffprobe -v error -hide_banner -show_format -print_format json -i output.avi


    


    I get respectively :

    


        "tags": {
        "major_brand": "isom",
        "minor_version": "512",
        "compatible_brands": "isomiso2mp41",
        "title": "This is my title",
        "date": "1234",
        "encoder": "Lavf58.20.100",
        "genre": "erneg"
    }


    


    and

    


        "tags": {
        "date": "1234",
        "genre": "erneg",
        "title": "This is my title",
        "encoder": "Lavf58.20.100"
    }


    


    but with MKV container, I get the uppercase convention (except for 'title') :

    


        "tags": {
        "title": "This is my title",
        "DATE": "1234",
        "MAJOR_BRAND": "isom",
        "MINOR_VERSION": "512",
        "COMPATIBLE_BRANDS": "isomiso2mp41",
        "GENRE": "erneg",
        "ENCODER": "Lavf58.20.100"
    }


    


    What is the difference in between the lowercase and uppercase convention for format tags in ffprobe ?

    



    


    For reference, system is Debian/buster.

    


    % ffmpeg -version 
ffmpeg version 4.1.6-1~deb10u1 Copyright (c) 2000-2020 the FFmpeg developers
built with gcc 8 (Debian 8.3.0-6)
configuration: --prefix=/usr --extra-version='1~deb10u1' --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-avresample --disable-filter=resample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librsvg --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared
libavutil      56. 22.100 / 56. 22.100
libavcodec     58. 35.100 / 58. 35.100
libavformat    58. 20.100 / 58. 20.100
libavdevice    58.  5.100 / 58.  5.100
libavfilter     7. 40.101 /  7. 40.101
libavresample   4.  0.  0 /  4.  0.  0
libswscale      5.  3.100 /  5.  3.100
libswresample   3.  3.100 /  3.  3.100
libpostproc    55.  3.100 / 55.  3.100


    


  • mpegvideo : cosmetics : Lowercase ugly uppercase MPV_ function name prefixes

    10 août 2014, par Diego Biurrun
    mpegvideo : cosmetics : Lowercase ugly uppercase MPV_ function name prefixes
    
    • [DH] libavcodec/arm/mpegvideo_arm.c
    • [DH] libavcodec/arm/mpegvideo_arm.h
    • [DH] libavcodec/arm/mpegvideo_armv5te.c
    • [DH] libavcodec/flvenc.c
    • [DH] libavcodec/h261dec.c
    • [DH] libavcodec/h261enc.c
    • [DH] libavcodec/h263dec.c
    • [DH] libavcodec/h264_slice.c
    • [DH] libavcodec/intrax8.c
    • [DH] libavcodec/mjpegenc.c
    • [DH] libavcodec/mpeg12dec.c
    • [DH] libavcodec/mpeg12enc.c
    • [DH] libavcodec/mpeg4videoenc.c
    • [DH] libavcodec/mpegvideo.c
    • [DH] libavcodec/mpegvideo.h
    • [DH] libavcodec/mpegvideo_enc.c
    • [DH] libavcodec/mpegvideo_motion.c
    • [DH] libavcodec/mpegvideo_xvmc.c
    • [DH] libavcodec/mss2.c
    • [DH] libavcodec/neon/mpegvideo.c
    • [DH] libavcodec/ppc/mpegvideo_altivec.c
    • [DH] libavcodec/rv10.c
    • [DH] libavcodec/rv10enc.c
    • [DH] libavcodec/rv20enc.c
    • [DH] libavcodec/rv34.c
    • [DH] libavcodec/svq1enc.c
    • [DH] libavcodec/vc1dec.c
    • [DH] libavcodec/wmv2enc.c
    • [DH] libavcodec/x86/mpegvideo.c
    • [DH] libavcodec/x86/mpegvideoenc.c