Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (32)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

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

  • libavcodec : Set hidden visibility on global symbols accessed from AArch64 assembly

    11 juillet 2022, par Martin Storsjö
    libavcodec : Set hidden visibility on global symbols accessed from AArch64 assembly
    

    The AArch64 assembly accesses those symbols directly, without
    indirection via e.g. the GOT on ELF. In order for this not to
    require text relocations, those symbols need to be resolved fully
    at link time, i.e. those symbols can't be interposable.

    Normally, so far, this is achieved when linking shared libraries
    in two ways ; we have a version script (libavcodec/libavcodec.v) which
    marks all symbols that don't start with av* as local. Additionally,
    we try to add -Wl,-Bsymbolic to the linker options if supported,
    making sure that such symbol references are resolved fully at link
    time, instead of making them interposable.

    When the libavcodec static library is linked into another shared
    library, there's no guarantee that it uses similar options (even though
    that would be favourable), which would end up requiring text relocations
    in the AArch64 assembly.

    Explicitly mark the symbols that are accessed from AArch64 assembly
    as hidden, so that they are resolved fully at link time even without
    the version script and -Wl,-Bsymbolic.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavcodec/aacsbrdata.h
    • [DH] libavcodec/fft.h
    • [DH] libavcodec/vp9dsp.h
    • [DH] libavutil/attributes_internal.h
  • Anomalie #3769 : form_hidden insère un hidden en trop

    16 avril 2016, par jluc -

    Exemple de situation où ça pose problème :

    Sur une page article, un formulaire de recherche multi critères utilise form_hidden et renvoie vers #URL_PAGEarticles (au pluriel). Cette page est polyvalente et la boucle d’affichage principal a tous les critères possibles, dont id_article ?.

    Vu que form_hidden récupère l’id_article de la page article courante, la page résultat reçoit l’id_article en critère... ce qui restreint drastiquement les résultats présentés !

  • ffmpeg output 0 second with wrong coordinates and hidden text

    18 juillet 2023, par Abdullah Mohamed

    I'm trying to add some Text and Images to the video

    &#xA;

    Code

    &#xA;

    -i &#x27;input.MOV&#x27; -i &#x27;image.jpg&#x27;         -filter_complex "[0]crop=1181.25:2100.0:1089.375:0.0[v];&#xA;          color=black[c];&#xA;          [v]colorchannelmixer=0.39:0.769:0.189:0:0:0.349:0.686:0.168:0:0:0.272:0.534:0.131:0:0:0:0:0[v];&#xA;          [c][v]scale2ref[t][v];&#xA;          [t]setsar=1,&#xA;          colorkey=black,&#xA;          split=2[t1][t2];&#xA;                  [t1]drawtext=&#xA;          text=Abdullah Muhammad T1&#xA;          :fontsize=40.0&#xA;          :box=1&#xA;          :boxborderw=20.0&#xA;          :boxcolor=#2196f3&#xA;          :fontcolor=#f44336,&#xA;          rotate=10.0*PI/180:&#xA;  &#xA;          c=black@0[rotate];&#xA;      [v][rotate]overlay=x=400.0:y=300.0:shortest=1[v],&#xA;          &#xA;          &#xA;                  [t2]drawtext=&#xA;          text=Abdullah Muhammad T2&#xA;          :fontsize=40.0&#xA;          :box=1&#xA;          :boxborderw=20.0&#xA;          :boxcolor=#ffeb3b&#xA;          :fontcolor=#000000,&#xA;          rotate=10.0*PI/180:&#xA;  &#xA;          c=black@0[rotate];&#xA;      [v][rotate]overlay=x=0.0:y=0.0:shortest=1[v],&#xA;          &#xA;          &#xA;                  [1:v]scale=w=360.0:h=360.0,&#xA;          rotate=-90.0*PI/180:&#xA;  ow=rotw(iw-50):oh=roth(ih-50):&#xA;          c=black@0[rotate];&#xA;      [v][rotate]overlay=x=0.0:y=0.0:shortest=1[v],&#xA;          &#xA;          &#xA;                  [1:v]scale=w=360.0:h=360.0,&#xA;          rotate=30.0*PI/180:&#xA;  ow=rotw(iw-50):oh=roth(ih-50):&#xA;          c=black@0[rotate];&#xA;      [v][rotate]overlay=x=200.0:y=600.0:shortest=1&#xA;          &#xA;          &#xA;          " -c:a copy -preset ultrafast -y &#x27;output.mp4&#x27;&#xA;

    &#xA;

    My Issues

    &#xA;

      &#xA;
    1. First image should be at 0,0 coordinates but it's not.
    2. &#xA;

    3. There should be 2 Texts but 1 of them is hidden and the other is not fully shown.
    4. &#xA;

    5. the video is 13 seconds and the output is only 0 second.
    6. &#xA;

    &#xA;

    Expected

    &#xA;

    &#xA;

    Texts should be shown and images should be in the right position and video output should be 13 seconds.

    &#xA;

    &#xA;

    Actual&#xA;enter image description here

    &#xA;

    Another issue

    &#xA;

    &#xA;

    If I trimmed the video the output will still be the same duration

    &#xA;

    &#xA;

    -i &#x27;input_video.MOV&#x27; -ss 0:00:00.000000 -t 0:00:16.216000 -i &#x27;input_image.jpg&#x27;         -filter_complex "[0]crop=1181.25:2100.0:1089.375:0.0[v];&#xA;          color=black[c];&#xA;          [v]colorchannelmixer=0.39:0.769:0.189:0:0:0.349:0.686:0.168:0:0:0.272:0.534:0.131:0:0:0:0:0[v];&#xA;          [c][v]scale2ref[t][v];&#xA;          [t]setsar=1,&#xA;          colorkey=black,&#xA;          split=2[t1][t2];&#xA;                  [t1]drawtext=&#xA;          text=Abdullah Muhammad T1&#xA;          :fontsize=40.0&#xA;          :box=1&#xA;          :boxborderw=20.0&#xA;          :boxcolor=#2196f3&#xA;          :fontcolor=#f44336,&#xA;          rotate=10.0*PI/180:&#xA;  &#xA;          c=black@0[rotate];&#xA;      [v][rotate]overlay=x=400.0:y=300.0:shortest=1[v],&#xA;          &#xA;          &#xA;                  [t2]drawtext=&#xA;          text=Abdullah Muhammad T2&#xA;          :fontsize=40.0&#xA;          :box=1&#xA;          :boxborderw=20.0&#xA;          :boxcolor=#ffeb3b&#xA;          :fontcolor=#000000,&#xA;          rotate=10.0*PI/180:&#xA;  &#xA;          c=black@0[rotate];&#xA;      [v][rotate]overlay=x=0.0:y=0.0:shortest=1[v],&#xA;          &#xA;          &#xA;                  [1:v]scale=w=360.0:h=360.0,&#xA;          rotate=-90.0*PI/180:&#xA;  ow=rotw(iw-50):oh=roth(ih-50):&#xA;          c=black@0[rotate];&#xA;      [v][rotate]overlay=x=0.0:y=0.0:shortest=1[v],&#xA;          &#xA;          &#xA;                  [1:v]scale=w=360.0:h=360.0,&#xA;          rotate=30.0*PI/180:&#xA;  ow=rotw(iw-50):oh=roth(ih-50):&#xA;          c=black@0[rotate];&#xA;      [v][rotate]overlay=x=200.0:y=600.0:shortest=1&#xA;          &#xA;          &#xA;          " -c:a copy -preset ultrafast -y &#x27;output.mp4&#x27;&#xA;

    &#xA;