Recherche avancée

Médias (91)

Autres articles (27)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (5924)

  • avcodec/cri : Stop the bitreader at the end of uncompressed input

    1er février 2021, par Michael Niedermayer
    avcodec/cri : Stop the bitreader at the end of uncompressed input
    

    Fixes : Timeout
    Fixes : 29983/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CRI_fuzzer-6420415838814208
    Fixes : 30595/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CRI_fuzzer-6559089360502784

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/cri.c
  • mjpegdec : stop setting the QP table

    26 janvier 2021, par Anton Khirnov
    mjpegdec : stop setting the QP table
    

    MJPEG does not have a single quantiser scale, so this does not fit into
    the intended API use.

    This removes the last use of the long-deprecated QP table API.

    • [DH] libavcodec/mjpegdec.c
    • [DH] tests/ref/fate/exif-image-embedded
    • [DH] tests/ref/fate/exif-image-jpg
  • ffmpeg : How to keep audio synced when doing many (100) cuts with filter select='between(t,start,stop)+between...'

    4 février 2021, par Louis

    I am cutting out silent parts of a 45 minute video (a lecture).&#xA;To do this, I use a filter to select, say one hundred, non-silent parts (I already know their start and end times).

    &#xA;

    ffmpeg -i in.mp4&#xA;-vf "select=&#x27;between(t,start_1,stop_1)&#x2B;...&#x2B;between(t,start_100,stop_100)&#x27;, setpts=N/FRAME_RATE/TB"&#xA;-af "aselect=&#x27;between(t,start_1,stop_1)&#x2B;...&#x2B;between(t,start_100,stop_100)&#x27;, asetpts=N/SR/TB"&#xA;-c:a aac -c:v libx264 out.mp4&#xA;

    &#xA;

    It works, but at the end of the video the images are delayed relative to the audio.&#xA;After reading this answer I also added

    &#xA;

    -shortest -avoid_negative_ts make_zero -fflags &#x2B;genpts&#xA;

    &#xA;

    at the end of the command. It didn't help.

    &#xA;

    As audio and video are concatenated independently I'm not surprised that tiny time errors due to finite frame rate add up.

    &#xA;

    Is there a solution that doesn't involve saving every non-silent part as a file ?

    &#xA;