Recherche avancée

Médias (0)

Mot : - Tags -/page unique

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (81)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (4532)

  • avcodec/arm64 : fix inverted register order in transpose_4x4H

    18 décembre 2015, par Janne Grunau
    avcodec/arm64 : fix inverted register order in transpose_4x4H
    

    Fix related register order issue in ff_h264_idct_add_neon.

    Found-by : zjh8890 <243186085@qq.com>

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/aarch64/h264idct_neon.S
    • [DH] libavcodec/aarch64/neon.S
  • Making a movie out of pictures in correct order

    6 novembre 2022, par astrogab

    Short version

    &#xA;

    How can one combine files img1000.png, img5000.png, img10000.png, img11000.png in the right order into a movie ?

    &#xA;

    Longer version

    &#xA;

    I am using ffmpeg to make a movie out of snapshots of a simulation. There should be for instance 5 images per second. The names are :

    &#xA;

    image0200.png&#xA;image0300.png&#xA;image0400.png&#xA;image0500.png&#xA;image1000.png&#xA;image1500.png&#xA;image2000.png&#xA;...&#xA;image8500.png&#xA;image9000.png&#xA;image9500.png&#xA;image10000.png&#xA;image15000.png&#xA;

    &#xA;

    i.e., they are sequential but there are irregular gaps in the numbers. The numbers are formatted according to &#x27;%04d&#x27; but go above 9999. I have tried

    &#xA;

    ffmpeg -y -loglevel debug -nostats \&#xA;-r:v 5 -thread_queue_size 1024 -f image2 \&#xA;-pattern_type glob -i "*[0-9][0-9][0-9][0-9].png" \&#xA;-r:v 30 -preset veryslow -pix_fmt yuv420p -crf 28 \&#xA;-an  AMDG.mp4&#xA;

    &#xA;

    and many, many other variations but either only two frames end up being visible in the movie (even though the images are found when using -debug) or only the files up to image9500.png are used (and glob does not seem to allow [0-9]{4,} as for regex), or, with

    &#xA;

        ffmpeg -y -loglevel debug -nostats \&#xA;    -r:v 5 \&#xA;    -thread_queue_size 1024 -f image2 -pattern_type glob \&#xA;       -i "image[0-9][0-9][0-9][0-9].png" \&#xA;    -r:v 5 \&#xA;    -thread_queue_size 1024 -f image2 -pattern_type glob \&#xA;       -i "image[1-9][0-9][0-9][0-9][0-9].png" \&#xA;    -r:v 30 -preset veryslow -pix_fmt yuv420p -crf 28 \&#xA;    -map 0 -map 1 \&#xA;    -an  AMDG.mp4&#xA;

    &#xA;

    there are apparently two streams in the output movie and only one of them is being played. (I realised in the process -map 0 -map 1 was needed in order for both input streams to be used.)

    &#xA;

    In one of the variations of options I found (now I have lost what it was exactly !) all images were included but the order was not the desired one : image1000.png was shown before image10000.png. Apparently a newer version of ffmpeg (I have ffmpeg version 3.4.8-0ubuntu0.2) has the ability to sort like sort -V, so that image10000 come after image1000, but reinstalling ffmpeg is in general not a practical option. Also renaming the files is not practical and creating e.g. soft links with sequential names in the format '%05d' starting at 0 and in steps of 1 (so that -i &#x27;%05d&#x27; could be used) is of course not elegant.

    &#xA;

    With the -concat filter as in https://unix.stackexchange.com/questions/77016/ffmpeg-pattern-type-glob-not-loading-files-in-correct-order, i.e.,

    &#xA;

      ffmpeg -y -loglevel debug -nostats -r:v 5 \&#xA;    -thread_queue_size 1024 -f image2 -f concat \&#xA;    -safe 0 -i &lt;(find . -maxdepth 1 -regex &#x27;image*.png&#x27; \&#xA;       -exec echo "file $(pwd)/"{} \; | sort -V) \&#xA;    -r:v 30 -codec:v libx264 -preset veryslow -pix_fmt yuv420p -crf 28 \&#xA;    -an \&#xA;    AMDG.mp4&#xA;

    &#xA;

    the processing took a long time and made the whole system sluggish, while producing a movie of 60 kB showing only two different images.

    &#xA;

    I have the impression that there are several issues at once... Thanks if you can help !

    &#xA;

  • h264 : Fix direct temporal mvs for bottom-field-first poc order

    18 juillet 2014, par Ronald S. Bultje
    h264 : Fix direct temporal mvs for bottom-field-first poc order
    

    Such files can be created using the —bff x264 option.

    Sample-Id : h264_direct_temporal_mvs_bff.mkv
    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>
    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DH] libavcodec/h264_direct.c