Recherche avancée

Médias (91)

Autres articles (112)

  • 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 ;

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (11325)

  • lavu/tx : rotate 3 & 15-point exptabs

    10 septembre 2022, par Lynne
    lavu/tx : rotate 3 & 15-point exptabs
    

    This just inverts their signs. Simplifies SIMD.

    • [DH] libavutil/tx_template.c
  • How can I loop one frame with ffmpeg ? All the other frames should point to the first with no changes, maybe like a recusion

    15 avril 2022, par zodrob

    I want to make a long video from a single image in ffmpeg.

    



    I need it to be fastly encodeable and at the end the video should have a small file size.

    



    Is it possible to fill the video with frames that point to the preivous(or the first) frame with no changes ?

    



    I tried with this code, but it was slow and made a big file :

    



    ffmpeg -loop 1 -i image.jpg -c:v libx264 -tune stillimage -shortest -preset ultrafast -t 3600 output.mp4


    


  • Finding start point in audio file with ffmpeg

    4 juillet 2019, par jovadeza

    I’m trying to determine the starting and end point in an audio file with ffmpeg. My definition for start and end point is when the song reaches -27dB. I have tried multiple ffmpeg audio filters, but without the desired result.

    The closest I got was when using the following command :
    ffmpeg -i song.mp3 -af silencedetect=n=-27dB:d=0.2 -f null -

    However, this returns multiple values, since the song can get silent in the middle of the song as well.

    So, I only want to get the first time the song reaches -27dB and the last time the song reaches -27dB.


    See image with example markers, created manually in Adobe Audition. Marker 1 : song reaches -27dB for the first time, marker 2 : song reaches -27dB for the last time. This are the positions in the song I am trying to find, trough ffmpeg

    enter image description here

    Thanks !